import {forwardRef} from "react"; import {LargeElement, LargeProps} from "./Large.props.ts"; import {cn} from "@eloquent/styles"; import {largeVariants} from "./variants.ts"; export const Large = forwardRef( function Large({className, as: TagName = "h2",...rest}, ref) { return ( ) } )