AboutSupportDeveloper GuideVersion 18.0.9

Type alias ContactInfoButtons

ContactInfoButtons: {
    action: string;
    icon: ButtonIcon;
    tooltip: string;
    type: "button";
} | SplitButton & {
    type: "dropdown";
}

Type declaration

  • action: string

    The action to execute when the button is clicked.

  • icon: ButtonIcon

    The icon to display on the button.

  • tooltip: string

    The tooltip to display on the button.

  • type: "button"