Interface ComboBoxComponentProps

interface ComboBoxComponentProps {
    placeholder?: string;
    className?: string;
    onChange: FnOnValueChangeType;
    required?: boolean;
    disabled?: boolean;
    role?: string;
    "aria-expanded"?: boolean;
}

Properties

placeholder?: string
className?: string
required?: boolean
disabled?: boolean
role?: string
"aria-expanded"?: boolean