A button in the picker.

interface Button {
    active: boolean;
    icon?: string;
    id: number;
    label: string;
    value: unknown;
}

Properties

active: boolean

Whether the button is active.

icon?: string

The icon of the button. Using Bootstrap icons package.

id: number

The id of the button.

label: string

The label of the button.

value: unknown

The value of the button.