8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import type { ToolbarItem } from "./types";
|
|
|
|
export interface ButtonGroupProps {
|
|
id: string;
|
|
className?: string;
|
|
buttons: ToolbarItem[];
|
|
}
|