2020-06-21 13:02:23 +02:00
|
|
|
import styled from 'styled-components/native';
|
2021-02-11 23:43:21 +01:00
|
|
|
import Text from './Text';
|
2020-06-21 13:02:23 +02:00
|
|
|
|
2021-02-11 23:43:21 +01:00
|
|
|
export const Header = styled(Text)`
|
2020-06-21 13:02:23 +02:00
|
|
|
margin: 24px 0 12px 0;
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
font-weight: bold;
|
2020-08-28 14:17:54 +02:00
|
|
|
`;
|
|
|
|
|
|
2021-02-11 23:43:21 +01:00
|
|
|
export const SubHeader = styled(Text)`
|
2020-08-28 14:17:54 +02:00
|
|
|
font-size: 24px;
|
|
|
|
|
margin: 12px 0;
|
2022-01-01 21:55:32 +01:00
|
|
|
font-weight: 500;
|
2020-06-21 13:02:23 +02:00
|
|
|
`;
|