Circle V2 API Docs
    Preparing search index...

    Type Alias AutosizeTextareaProps

    AutosizeTextareaProps: Omit<
        TextareaProps,
        "rows"
        | "resize"
        | "minHeight"
        | "maxHeight"
        | "overflowY",
    > & { maxHeightPx: number; minHeightPx?: number }

    Type Declaration

    • maxHeightPx: number

      Ceiling height in pixels; the textarea scrolls internally once content exceeds this.

    • OptionalminHeightPx?: number

      Optional floor height in pixels. Defaults to 0 (no floor beyond the browser default).