aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/text.tsx
blob: 624ab760db4c5a67ff76aaa1049145ef3327ecf1 (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
import * as React from 'react';
import styled from 'styled-components';

import { colors } from 'ts/style/colors';

export interface Props {
    size?: string;
}

const StyledHeading = styled.h1`
    color: ${colors.white};
    font-size: 80px;
    line-height: 1em;
`;

const StyledIntro = styled.p`
    color: ${colors.white};
    opacity: 0.75;
    font-size: 22px;
    line-height: 1.823529412em;
`;

export const Heading: React.StatelessComponent<Props> = ({ children }) => (
    <StyledHeading>{children}</StyledHeading>
);

export const Intro: React.StatelessComponent<Props> = ({ children }) => (
    <StyledIntro>{children}</StyledIntro>
);