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