mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
export interface IconButtonProps {
|
|
id?: string;
|
|
className?: string;
|
|
tooltip: string;
|
|
icon: string;
|
|
onClick: (event: MouseEvent) => void;
|
|
}
|