Anki/ts/editor-toolbar/CommandIconButton.d.ts
2021-04-15 13:09:50 +02:00

8 lines
170 B
TypeScript

export interface CommandIconButtonProps {
id?: string;
className?: string;
title: string;
icon: string;
command: string;
activatable?: boolean;
}