about summary refs log tree commit diff stats
path: root/src/pages/components/RowCheckbox.svelte
blob: b7ccab935f73b9fd970992451b3f19fdea6b51cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
  import Row from "./Row.svelte"
  import Checkbox from "./Checkbox.svelte"
  import Label from "./Label.svelte"

  export let label
  export let checked
  export let onChange
</script>

<Row>
  <Label>{label}</Label>
  <Checkbox bind:checked {onChange} />
</Row>