@hydroperx/metrodesign
    Preparing search index...

    Function ComboBox

    • Represents an user input that opens a dropdown for selecting one of multiple options.

      Parameters

      • params: {
            big?: boolean;
            change?: (value: string) => void;
            children?: ReactNode;
            className?: string;
            default?: string;
            disabled?: boolean;
            id?: string;
            medium?: boolean;
            ref?: Ref<HTMLButtonElement>;
            style?: CSSProperties;
        }
        • Optionalbig?: boolean

          Whether the input button is light big.

        • Optionalchange?: (value: string) => void

          Event triggered on value change.

        • Optionalchildren?: ReactNode
        • OptionalclassName?: string
        • Optionaldefault?: string

          Default internal value matching one of the Options inside.

        • Optionaldisabled?: boolean

          Whether the input is disabled.

        • Optionalid?: string
        • Optionalmedium?: boolean

          Whether the input button is light medium.

        • Optionalref?: Ref<HTMLButtonElement>
        • Optionalstyle?: CSSProperties

      Returns ReactNode