import { FC, PropsWithChildren } from 'react' import cx from 'classnames' import typography from '../../../styles/typography.module.css' import styles from './Paragraph.module.css' interface Props { size: 'large' | 'medium' | 'small' | 'subtitle' } export const Paragraph: FC> = ({ size, children }) => { return (

{children}

) }