34 lines
704 B
Svelte
34 lines
704 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 class:highlighted={off} on:click|stopPropagation={toggle}>
|
|
<Badge iconSize={80}>{@html icon}</Badge>
|
|
</span>
|
|
|
|
<style lang="scss">
|
|
span {
|
|
opacity: 0.4;
|
|
|
|
&.highlighted {
|
|
opacity: 1;
|
|
}
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
</style>
|