import {forwardRef} from "react"; import {SmallElement, SmallProps} from "./Small.props.ts"; import {cn} from "@eloquent/styles"; import {smallVariants} from "./variants.ts"; export const Small = forwardRef( function Small({className,size="default",...rest}, ref) { return (
) } )