@cavell/kit API
    Preparing search index...

    Interface SelectProps

    interface SelectProps {
        ariaLabel?: string;
        disabled?: boolean;
        onChange: (value: string) => void;
        options: SelectOption[];
        placeholder?: string;
        value: string;
    }
    Index
    ariaLabel?: string

    ARIA label when no visible

    disabled?: boolean
    onChange: (value: string) => void
    options: SelectOption[]
    placeholder?: string
    value: string