Files
Compass/web/components/widgets/subtitle.tsx
2026-05-08 13:55:50 +02:00

16 lines
340 B
TypeScript

import clsx from 'clsx'
export function Subtitle(props: {children: React.ReactNode; className?: string}) {
const {children: text, className} = props
return (
<h2
className={clsx(
'text-ink-700 mb-2 mt-6 inline-block text-lg sm:mb-2 sm:mt-6 sm:text-2xl',
className,
)}
>
{text}
</h2>
)
}