interface TextareaProps extends React.TextareaHTMLAttributes { // You can add custom props here if needed } export function Textarea({ className, ...props }: TextareaProps) { return ( ); }