Properties of a ButtonGroup component displayed by the toolbar.

interface ButtonGroupProps {
    ariaLabel?: string;
    buttons: ButtonProps[];
    orientation?: "horizontal" | "vertical";
    size?: "small" | "medium" | "large";
}

Properties

ariaLabel?: string

Aria label.

buttons: ButtonProps[]

The buttons in this group.

orientation?: "horizontal" | "vertical"

Orientation of this group.

size?: "small" | "medium" | "large"

Size of the buttons in this group.