mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
export interface LabelButtonProps {
|
|
id?: string;
|
|
className?: string;
|
|
|
|
label: string;
|
|
tooltip: string;
|
|
onClick: (event: MouseEvent) => void;
|
|
disables?: boolean;
|
|
}
|