import { FC } from 'react'; import styles from './typography.module.css'; type SubtitleProps = { alternative?: boolean, }; export const Subtitle: FC = ({ alternative, children }) => (
{children}
)