Optional properties for Button property item
export interface IButtonPropertyItemOptions extends IPropertyItemOptionsBase { hiddenLabel?: boolean; icon?: string; shrinkToIcon?: boolean; title?: LocalizedString; tooltip?: BasicTooltipContent; variant?: ButtonVariant;} Copy
export interface IButtonPropertyItemOptions extends IPropertyItemOptionsBase { hiddenLabel?: boolean; icon?: string; shrinkToIcon?: boolean; title?: LocalizedString; tooltip?: BasicTooltipContent; variant?: ButtonVariant;}
Optional
Initial enabled state of property item. If undefined, it will default to true.
If true label text will be hidden. It will be visible by default.
Icon image of the property item.
Shrinks button to icon size if button has an icon.
Optional styling overrides for the item.
Localized title of the property item.
Tooltip description of the property item.
The variant for the button. By default it is Primary.
Initial visibility state of property item. If undefined, it will default to true.
Optional properties for Button property item
Source