Interface UncontrolledSingleSelectProps

interface UncontrolledSingleSelectProps {
    autoComplete?: string;
    autoFocus?: boolean;
    children?: ReactNode;
    defaultValue?: string;
    disabled?: boolean;
    multiple?: false;
    name?: string;
    required?: boolean;
    size?: "medium" | "small" | "large";
}

Hierarchy (View Summary)

Properties

autoComplete?: string
autoFocus?: boolean
children?: ReactNode
defaultValue?: string
disabled?: boolean
multiple?: false
name?: string
required?: boolean
size?: "medium" | "small" | "large"