2021-04-15 15:59:52 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-04-09 18:59:57 +02:00
|
|
|
import type { ToolbarItem } from "./types";
|
2021-04-08 18:28:43 +02:00
|
|
|
|
|
|
|
export interface ButtonGroupProps {
|
|
|
|
id: string;
|
|
|
|
className?: string;
|
2021-04-09 18:59:57 +02:00
|
|
|
buttons: ToolbarItem[];
|
2021-04-08 18:28:43 +02:00
|
|
|
}
|