31 lines
620 B
Svelte
31 lines
620 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 Badge from "../components/Badge.svelte";
|
||
|
import { richTextOn, richTextOff } from "./icons";
|
||
|
|
||
|
export let off: boolean;
|
||
|
|
||
|
function toggle(): void {
|
||
|
off = !off;
|
||
|
}
|
||
|
|
||
|
$: icon = off ? richTextOff : richTextOn;
|
||
|
</script>
|
||
|
|
||
|
<span on:click|stopPropagation={toggle}>
|
||
|
<Badge iconSize={80}>{@html icon}</Badge>
|
||
|
</span>
|
||
|
|
||
|
<style lang="scss">
|
||
|
span {
|
||
|
opacity: 0.6;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
</style>
|