nes-ui-react
Version:
A design system that paints the web in 8 bits.
10 lines (9 loc) • 368 B
TypeScript
import { InputProps } from "./interface/InputProps";
export interface TextAreaDerivedProps extends InputProps {
color?: 'none' | 'success' | 'warning' | 'error';
cols?: number;
rows?: number;
}
export interface TextAreaProps extends TextAreaDerivedProps {
}
export declare const TextArea: (props: TextAreaProps) => import("react/jsx-runtime").JSX.Element;