diff --git a/packages/shared/src/atoms/Headline/index.tsx b/packages/shared/src/atoms/Headline/index.tsx index 3335c118..ee82eb46 100644 --- a/packages/shared/src/atoms/Headline/index.tsx +++ b/packages/shared/src/atoms/Headline/index.tsx @@ -3,12 +3,12 @@ import { ReactNode } from 'react' type HeadlineType = 'headline1' | 'headline2' | 'headline3' -interface Porps { +interface Props { children: ReactNode type?: HeadlineType } -const Headline = ({ children, type = 'headline1' }: Porps) => { +const Headline = ({ children, type = 'headline1' }: Props) => { return {children} }