nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
19 lines (18 loc) • 534 B
TypeScript
export interface TextareaProps {
placeholder?: string;
rows?: number;
value?: string;
onChange?: (value: string) => void;
className?: string;
disabled?: boolean;
error?: boolean;
hint?: string;
label?: string;
required?: boolean;
id?: string;
name?: string;
maxLength?: number;
"aria-label"?: string;
"aria-describedby"?: string;
}
export declare const TextArea: import('react').ForwardRefExoticComponent<TextareaProps & import('react').RefAttributes<HTMLTextAreaElement>>;