Skip to content

Commit

Permalink
table checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Kworz committed Mar 19, 2024
1 parent 7c93173 commit 5e5132b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/lib/components/generics/table/TableCellCheckbox.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script lang="ts">
import TableCell from "./TableCell.svelte";
export let group: Array<string>;
export let value: string;
</script>

<TableCell class="items-center"><input type="checkbox" bind:group {value} /></TableCell>

0 comments on commit 5e5132b

Please sign in to comment.