Package: @hexos/react-ui

Props for the Textarea component.

Extends standard HTML textarea attributes with auto-resize capability and height constraints.

interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
    autoResize?: boolean;
    minHeight?: number;
    maxHeight?: number;
}
  • Extends: React.TextareaHTMLAttributes<HTMLTextAreaElement>

autoResize

boolean

minHeight

number

maxHeight

number