import { forwardRef } from 'react' import { tv } from 'tailwind-variants' const textarea = tv({ slots: { root: [ 'flex min-h-[60px] w-full rounded-md border bg-transparent px-3 py-2', 'text-sm shadow-sm placeholder:text-fg-weaker', 'disabled:cursor-not-allowed disabled:opacity-50', ], }, }) const Textarea = forwardRef>( (props, ref) => { const { root } = textarea() return