12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
import type { ToolbarItem } from "./types";
|
|
|
|
export interface WithLabelProps {
|
|
id?: string;
|
|
className?: string;
|
|
|
|
button: ToolbarItem;
|
|
label: string;
|
|
}
|