Anki/ts/editor/editor-toolbar/UnderlineButton.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

29 lines
818 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 * as tr from "@generated/ftl";
import Icon from "$lib/components/Icon.svelte";
import { underlineIcon } from "$lib/components/icons";
import type { MatchType } from "$lib/domlib/surround";
import TextAttributeButton from "./TextAttributeButton.svelte";
function matcher(element: HTMLElement | SVGElement, match: MatchType): void {
if (element.tagName === "U") {
return match.remove();
}
}
</script>
<TextAttributeButton
tagName="u"
{matcher}
key="underline"
tooltip={tr.editingUnderlineText()}
keyCombination="Control+U"
>
<Icon icon={underlineIcon} />
</TextAttributeButton>