mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-20 07:44:01 -05:00
19 lines
349 B
TypeScript
19 lines
349 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-primary-700 mb-2 mt-6 inline-block text-lg sm:mb-2 sm:mt-6 sm:text-xl',
|
|
className
|
|
)}
|
|
>
|
|
{text}
|
|
</h2>
|
|
)
|
|
}
|