interface IPropertyItemOptionsButton {
    enable?: boolean;
    icon?: string;
    onChange?: OnChangeCallback<PropertyBag, string>;
    titleAltText?: string;
    titleStringId?: string;
    variant?: ButtonVariant;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

enable?: boolean

If the item is enabled in the UI.

icon?: string
onChange?: OnChangeCallback<PropertyBag, string>

Callback to execute when the value is updated.

titleAltText?: string

Fallback display text if no loc ID

titleStringId?: string

Loc ID (resolved on client)

variant?: ButtonVariant

The variant for the button. By default it is "primary"

visible?: boolean

If the item should be visible in the UI.