mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
import type { ToolbarItem } from "./types";
|
|
|
|
export interface ButtonGroupProps {
|
|
id: string;
|
|
className?: string;
|
|
buttons: ToolbarItem[];
|
|
}
|