mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
import type { Buttons } from "./types";
|
|
|
|
export interface ButtonGroupProps {
|
|
id: string;
|
|
className?: string;
|
|
buttons: Buttons;
|
|
}
|