File size: 389 Bytes
ff9325e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts">
  import type { FieldProps } from '$lib/types';
  export let value = false;
  export let params: FieldProps;
</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>