mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
export interface CommandIconButtonProps {
|
|
id?: string;
|
|
className?: string;
|
|
title: string;
|
|
icon: string;
|
|
command: string;
|
|
activatable?: boolean;
|
|
}
|