import * as React from 'react'; /** * Textarea component props */ export type TextareaProps = React.TextareaHTMLAttributes; /** * Textarea component - Multi-line text input field * * A flexible textarea component with consistent styling using semantic tokens. * Supports all native HTML textarea attributes including rows, cols, placeholder, etc. * Automatically handles resize behavior. * * @example Basic usage * ```tsx *