Anki/ts/routes/image-occlusion/notes-toolbar/MoreTools.svelte
RumovZ 790c52f012
Svg icon (#3135)
* 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.
2024-04-24 02:37:31 +01:00

33 lines
846 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import Icon from "$lib/components/Icon.svelte";
import IconButton from "$lib/components/IconButton.svelte";
import { mdiCodeTags } from "$lib/components/icons";
import { changePreviewHTMLView } from "./lib";
export let iconSize;
const moreTools = [
{
name: "code",
title: "Code",
icon: mdiCodeTags,
action: changePreviewHTMLView,
},
];
</script>
{#each moreTools as tool}
<IconButton
class="note-tool-icon-button right-border-radius"
{iconSize}
on:click={() => tool.action()}
tooltip={tool.title}
>
<Icon icon={tool.icon} />
</IconButton>
{/each}