UNPKG

@britannica/ui

Version:
9 lines (8 loc) 314 B
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;