18 lines
273 B
TypeScript
18 lines
273 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const Alpha = styled.h2`
|
|
font-size: 1.75rem;
|
|
line-height: 1;
|
|
`;
|
|
|
|
const Beta = styled.h3`
|
|
font-size: 1.25rem;
|
|
line-height: 1.65;
|
|
`;
|
|
|
|
const Small = styled.p`
|
|
font-size: 0.875rem;
|
|
`;
|
|
|
|
export { Alpha, Beta, Small };
|