12 lines
196 B
TypeScript
12 lines
196 B
TypeScript
import styled from "@emotion/styled";
|
|
|
|
export const Header1 = styled.h1`
|
|
margin-top: 32px;
|
|
margin-bottom: 24px;
|
|
font-size: 47px;
|
|
`;
|
|
|
|
export const Paragraph = styled.p`
|
|
font-size: 24px;
|
|
`;
|