<ToolBar />

ui/toolbar.svelte

"Way more than putting tools in a bar: having them in a toolbar!"
Q. Jones, 450

Component ToolBar examples :
Using slots
component ToolBar demo using slots
item 1 item 2 item 3 item 4
vertical false
item 1 item 2 item 3 item 4
vertical true
vertical boolean
color string
closeOnValidate boolean
code
      <ToolBar>
        <span>item 1</span>
        <span>item 2</span>
        <divider />
        <span>item 3</span>
        <span>item 4</span>
      </ToolBar>
Api preview :
__propDef: {
    props: {
        class?: string | undefined;
        element?: HTMLDivElement | null | undefined;
        style?: string | null | undefined;
        color?: string | undefined;
        vertical?: boolean | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
        separator: {};
    };
};