import type { TextareaHTMLAttributes } from 'react';
import { cn } from '../../lib/cn';
export interface TextareaProps extends TextareaHTMLAttributes {
label?: string;
hint?: string;
error?: string;
className?: string;
}
export function Textarea({
label,
hint,
error,
required,
className,
disabled,
...rest
}: TextareaProps) {
return (
);
}