type SubtitleProps = { children: any; className?: string; }; export const Subtitle: React.FunctionComponent = (props) => (

{props.children}

);