grommet
Version:
focus on the essential experience
19 lines (15 loc) • 474 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;
size?: "small" | "medium" | "large" | "xlarge" | string;
}
declare const TextArea: React.ComponentClass<TextAreaProps & JSX.IntrinsicElements['textarea']>;
export { TextArea };