aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/text.tsx
blob: e90c1707dc2ad043ef6c9f1e8a31917c46a7b1fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { colors } from '@0xproject/react-shared';
import * as React from 'react';
import { styled } from 'ts/style/theme';

export type TextTag = 'p' | 'div' | 'span' | 'label';

export interface TextProps {
    className?: string;
    Tag?: TextTag;
    fontSize?: string;
    fontFamily?: string;
    fontColor?: string;
    lineHeight?: string;
    center?: boolean;
    fontWeight?: number;
}

const PlainText: React.StatelessComponent<TextProps> = ({ children, className, Tag }) => (
    <Tag className={className}>{children}</Tag>
);

export const Text = styled(PlainText)`
    font-family: ${props => props.fontFamily};
    font-weight: ${props => props.fontWeight};
    font-size: ${props => props.fontSize};
    ${props => (props.lineHeight ? `line-height: ${props.lineHeight}` : '')};
    ${props => (props.center ? 'text-align: center' : '')};
    color: ${props => props.fontColor};
`;

Text.defaultProps = {
    fontFamily: 'Roboto',
    fontWeight: 400,
    fontColor: colors.white,
    fontSize: '14px',
    Tag: 'div',
};

Text.displayName = 'Text';