Textarea
type Textarea = { allowAutofillExtensions?: boolean; autoFocus?: boolean; autoResize?: boolean; autoSelect?: boolean; defaultValue?: string; disabled?: boolean; gutterSize?: '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; id?: string; key?: string; maxRows?: number; name: string; pattern?: string; placeholder?: string; required?: boolean; rows?: number; size?: ControlSize; type: 'Textarea'; variant?: 'soft' | 'outline';};Properties
Section titled “Properties”allowAutofillExtensions?
Section titled “allowAutofillExtensions?”optional allowAutofillExtensions: boolean;autoFocus?
Section titled “autoFocus?”optional autoFocus: boolean;autoResize?
Section titled “autoResize?”optional autoResize: boolean;autoSelect?
Section titled “autoSelect?”optional autoSelect: boolean;defaultValue?
Section titled “defaultValue?”optional defaultValue: string;disabled?
Section titled “disabled?”optional disabled: boolean;gutterSize?
Section titled “gutterSize?”optional gutterSize: "2xs" | "xs" | "sm" | "md" | "lg" | "xl";optional id: string;optional key: string;maxRows?
Section titled “maxRows?”optional maxRows: number;name: string;pattern?
Section titled “pattern?”optional pattern: string;placeholder?
Section titled “placeholder?”optional placeholder: string;required?
Section titled “required?”optional required: boolean;optional rows: number;optional size: ControlSize;type: 'Textarea';variant?
Section titled “variant?”optional variant: "soft" | "outline";