13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import styled from 'styled-components/native';
|
|
import Text from './Text';
|
|
|
|
export const Header = styled(Text)`
|
|
margin: 24px 0 12px 0;
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
`;
|
|
|
|
export const SubHeader = styled(Text)`
|
|
font-size: 24px;
|
|
margin: 12px 0;
|
|
`; |