aboutsummaryrefslogblamecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Typography.tsx
blob: 3ce18df3b7df477a57c331ef536e0e451698db47 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                       
import styled from 'styled-components';

const Alpha = styled.h2`
    font-size: 1.75rem;
    line-height: 1;
`;

const Beta = styled.h3`
    font-size: 1.25rem;
    line-height: 1.65;
`;

const Small = styled.p`
    font-size: 0.875rem;
`;

export { Alpha, Beta, Small };