rharuow-ds
Version:
Modern React Design System with 20 components and auto color system. Define only 2 colors (primary/secondary) and get automatic variations (hover, light, dark) with proper text contrast (WCAG AA). Includes: Table, Card, Button, Chip, Pagination, Input, Te
14 lines (13 loc) • 511 B
TypeScript
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 };