import * as React from 'react' import { theme } from '@latitude-data/client' type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' type Props = React.HTMLAttributes & { className?: string tag?: HeadingLevel } const CardTitle = React.forwardRef( ({ className, tag, ...props }, ref) => { const Tag = tag || 'h3' return ( ) }, ) CardTitle.displayName = 'CardTitle' export default CardTitle