mirror of
https://github.com/ankitects/anki.git
synced 2026-01-15 14:59:00 -05:00
10 lines
513 B
TypeScript
10 lines
513 B
TypeScript
import IconButton from "./IconButton.svelte";
|
|
import bracketsIcon from "./code-brackets.svg";
|
|
import paperclipIcon from "./paperclip.svg";
|
|
import micIcon from "./mic.svg";
|
|
import threeDotsIcon from "./three-dots.svg";
|
|
|
|
export const clozeButton = { component: IconButton, icon: bracketsIcon };
|
|
export const attachmentButton = { component: IconButton, icon: paperclipIcon };
|
|
export const micButton = { component: IconButton, icon: micIcon };
|
|
export const etcButton = { component: IconButton, icon: threeDotsIcon };
|