mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Add sveltekit-svg plugin to fix svg icon styling Closes #3127. * Unify svg icon usage Moves all icons into ts/lib/components/icons.ts and uses a single component to render them both with eslint and svelte-kit. * Fix spinning revert icon not being centered * Use svg earth icon for global label * Add tooltip to global label icon * Remove eslint-plugin-simple-import-sort Imports are already sorted by dprint with conflicting rules.
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import * as tr from "@generated/ftl";
|
|
|
|
import {
|
|
mdiCursorDefaultOutline,
|
|
mdiEllipseOutline,
|
|
mdiRectangleOutline,
|
|
mdiTextBox,
|
|
mdiVectorPolygonVariant,
|
|
} from "$lib/components/icons";
|
|
|
|
import {
|
|
cursorKeyCombination,
|
|
ellipseKeyCombination,
|
|
polygonKeyCombination,
|
|
rectangleKeyCombination,
|
|
textKeyCombination,
|
|
} from "./shortcuts";
|
|
|
|
export const tools = [
|
|
{
|
|
id: "cursor",
|
|
icon: mdiCursorDefaultOutline,
|
|
tooltip: tr.editingImageOcclusionSelectTool,
|
|
shortcut: cursorKeyCombination,
|
|
},
|
|
{
|
|
id: "draw-rectangle",
|
|
icon: mdiRectangleOutline,
|
|
tooltip: tr.editingImageOcclusionRectangleTool,
|
|
shortcut: rectangleKeyCombination,
|
|
},
|
|
{
|
|
id: "draw-ellipse",
|
|
icon: mdiEllipseOutline,
|
|
tooltip: tr.editingImageOcclusionEllipseTool,
|
|
shortcut: ellipseKeyCombination,
|
|
},
|
|
{
|
|
id: "draw-polygon",
|
|
icon: mdiVectorPolygonVariant,
|
|
tooltip: tr.editingImageOcclusionPolygonTool,
|
|
shortcut: polygonKeyCombination,
|
|
},
|
|
{
|
|
id: "draw-text",
|
|
icon: mdiTextBox,
|
|
tooltip: tr.editingImageOcclusionTextTool,
|
|
shortcut: textKeyCombination,
|
|
},
|
|
];
|