grommet
Version:
focus on the essential experience
18 lines (14 loc) • 415 B
TypeScript
import * as React from "react";
export interface TextAreaProps {
id?: string;
fill?: boolean;
focusIndicator?: boolean;
name?: string;
onChange?: ((...args: any[]) => any);
placeholder?: string;
plain?: boolean;
value?: string;
resize?: "vertical" | "horizontal" | boolean;
}
declare const TextArea: React.ComponentClass<TextAreaProps & JSX.IntrinsicElements['textarea']>;
export { TextArea };