File size: 494 Bytes
ff9325e
 
0b5ceff
ff9325e
 
0b5ceff
 
 
ff9325e
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script lang="ts">
  import type { FieldProps } from '$lib/types';
  import { onMount } from 'svelte';
  export let value = false;
  export let params: FieldProps;
  onMount(() => {
    value = Boolean(params?.default) ?? 8.0;
  });
</script>

<div class="grid max-w-md grid-cols-4 items-center justify-items-start gap-3">
  <label class="text-sm font-medium" for={params.id}>{params?.title}</label>
  <input bind:checked={value} type="checkbox" id={params.id} class="cursor-pointer" />
</div>