mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-08-07 05:34:31 -04:00
Pull up features from manifold.love
This commit is contained in:
1 parent
078893f7d1
commit
53432520cd
582 files changed
+64062
-9624
No files matched your search
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in new issue
Block a user