Files
Compass/web/components/widgets/profile-subtitle.tsx
2026-02-24 23:25:04 +01:00

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>
}