30 lines
739 B
Svelte
30 lines
739 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 IconButton from "../../components/IconButton.svelte";
|
||
|
import { mdiCodeTags } from "../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"
|
||
|
{iconSize}
|
||
|
on:click={() => tool.action()}
|
||
|
tooltip={tool.title}>{@html tool.icon}</IconButton
|
||
|
>
|
||
|
{/each}
|