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