H5 heading component.
<H5>This is an h5 heading</H5>
Here's the <H5 />
component in action.
import { forwardRef, type HTMLAttributes } from 'react'import { cn } from '#app/utils/tailwind-merge.ts'
/** * A h5 component. */const H5 = forwardRef<HTMLHeadingElement, HTMLAttributes<HTMLHeadingElement>>(({ className, ...props }, ref) => <h5 ref={ref} className={cn('h5', className)} {...props} />)H5.displayName = 'H5'
export { H5 }
.h5 { @apply text-muted-900 text-fluid-lg max-w-prose font-sans font-bold;}