UNPKG

rharuow-ds

Version:

Modern React Design System with 8 components: Button, Input (with password support), Textarea, Select, AsyncSelect, MultiSelect, MultiAsyncSelect, and RadioGroup. Full React Hook Form integration, Tailwind CSS styling, and CSS Variables for theme customiz

14 lines (13 loc) 511 B
import * as React from "react"; export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> { } export interface TextareaCustomProps { name: string; label?: string; Icon?: React.ElementType; iconClassName?: string; containerClassName?: string; iconAction?: React.MouseEventHandler<HTMLDivElement>; } declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & TextareaCustomProps & React.RefAttributes<HTMLTextAreaElement>>; export { Textarea };