summaryrefslogtreecommitdiff
path: root/ui/lib/components/Toggle.svelte
blob: 7e71b5a3ce1367d2332546bfff549c43544fa232 (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
  let { text, name, onclick = async () => {} } = $props();
</script>

<label>
  <div class="toggle">
    <input type="checkbox" name={name} onclick={onclick}/>
    <span class="slider"></span>
  </div>
  { text }
</label>