feature: add text component

This commit is contained in:
George Lima 2018-12-10 14:06:44 -03:00
parent 1e0e5da711
commit 8645aad62a
1 changed files with 37 additions and 0 deletions

37
app/components/text.js Normal file
View File

@ -0,0 +1,37 @@
// @flow
import React from 'react';
import styled from 'styled-components';
import theme from '../theme';
const Text = styled.p`
font-family: ${props => props.theme.fontFamily};
font-size: ${props => props.size};
color: ${props => props.color || props.theme.colors.text};
margin: 0;
padding: 0;
font-weight: ${props => (props.isBold ? 'bold' : '400')};
`;
type Props = {
value: string,
isBold?: boolean,
color?: string,
className?: string,
size?: string,
};
export const TextComponent = ({
value, isBold, color, className, size,
}: Props) => (
<Text className={className} isBold={isBold} color={color} size={size}>
{value}
</Text>
);
TextComponent.defaultProps = {
className: '',
isBold: false,
color: theme.colors.text,
size: '1em',
};