import clsx from 'clsx' export function Subtitle(props: {children: React.ReactNode; className?: string}) { const {children: text, className} = props return (

{text}

) }