Files
jellyfin-audio-player/src/components/Typography.ts
2022-05-04 18:28:15 +02:00

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;
`;