@rcsb/rcsb-saguaro-app
    Preparing search index...
    interface SelectButtonInterface {
        addTitle: boolean;
        defaultValue?: null | string;
        dropdownTitle?: string;
        elementId: string;
        isAdditionalButton?: boolean;
        optionProps?: (props: SelectOptionProps) => ReactNode;
        options?: SelectOptionInterface[] | GroupedOptionsInterface[];
        renderTitle: (title: string) => void;
        width?: number;
    }
    Index

    Properties

    addTitle: boolean
    defaultValue?: null | string
    dropdownTitle?: string
    elementId: string
    isAdditionalButton?: boolean
    optionProps?: (props: SelectOptionProps) => ReactNode
    renderTitle: (title: string) => void
    width?: number