mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-09 15:44:55 -04:00
16 lines
340 B
TypeScript
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>
|
|
)
|
|
}
|