mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 10:02:27 -04:00
7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
import clsx from 'clsx'
|
|
|
|
export function Subtitle(props: {children: string; className?: string}) {
|
|
const {children: text, className} = props
|
|
return <h2 className={clsx('text-ink-600 inline-block font-semibold', className)}>{text}</h2>
|
|
}
|