@britannica/ui
Version:
Consumer style system
9 lines (8 loc) • 314 B
TypeScript
import type { FC, LegacyRef, TextareaHTMLAttributes } from 'react';
export interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
innerRef?: LegacyRef<HTMLTextAreaElement>;
isInvalid?: boolean;
rows?: number;
}
declare const Textarea: FC<TextareaProps>;
export default Textarea;