blob: e880d378a82d1ad2c4a22295c50e723c40c1575d (
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} {onclick} />
<span class="slider"></span>
</div>
{text}
</label>
|