15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
import styled from 'styled-components/native';
|
|
import Text from './Text';
|
|
|
|
export const Header = styled(Text)`
|
|
margin: 0 0 6px 0;
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
`;
|
|
|
|
export const SubHeader = styled(Text)`
|
|
font-size: 14px;
|
|
margin: 0 0 6px 0;
|
|
font-weight: 400;
|
|
opacity: 0.5;
|
|
`; |