mirror of
https://github.com/ankitects/anki.git
synced 2025-11-08 13:47:13 -05: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;
|
|
}
|