import * as React from 'react'; /** * Props para o componente Textarea. * * @interface TextareaProps */ export interface TextareaProps extends React.ComponentProps<'textarea'> { /** * Size variant — matches the Input component sizing scale. * Controls padding and font size (height is determined by `rows` prop or content). * - `sm`: px-2 py-1, text-sm * - `md`: px-3 py-2, text-base — **default**, aligned with Input default * - `lg`: px-4 py-3, text-base */ size?: 'sm' | 'md' | 'lg'; } /** * Multi-line text input for extended content. * * @description * Styled replacement for the native HTML `