forked from ourworld_web/www_engage_os
10 lines
333 B
TypeScript
10 lines
333 B
TypeScript
import { cn } from '@/lib/utils'
|
|
import React from 'react'
|
|
|
|
const h1 = React.forwardRef<HTMLHeadingElement, React.HTMLAttributes<HTMLHeadingElement>>(({ className, ...props }, ref) => (
|
|
<h1 ref={ref} className={cn('text-4xl font-medium tracking-tight lg:text-5xl', className)} {...props} />
|
|
))
|
|
h1.displayName = 'H1'
|
|
|
|
export { h1 }
|