Spaces:
Running
Running
| <script lang="ts"> | |
| import { Checkbox as CheckboxPrimitive } from "bits-ui"; | |
| import { cn, type WithoutChildrenOrChild } from "$lib/utils.js"; | |
| import CheckIcon from '@lucide/svelte/icons/check'; | |
| import MinusIcon from '@lucide/svelte/icons/minus'; | |
| let { | |
| ref = $bindable(null), | |
| checked = $bindable(false), | |
| indeterminate = $bindable(false), | |
| class: className, | |
| ...restProps | |
| } | |
| </script> | |
| <CheckboxPrimitive.Root | |
| bind:ref | |
| data-slot="checkbox" | |
| class={cn( | |
| "bg-input/90 data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary data-checked:border-primary aria-invalid:aria-checked:border-primary aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 focus-visible:border-ring focus-visible:ring-ring/30 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 flex size-4 items-center justify-center rounded-[5px] border border-transparent transition-shadow group-has-disabled/field:opacity-50 focus-visible:ring-3 aria-invalid:ring-3 peer relative shrink-0 outline-none after:absolute after:-inset-x-3 after:-inset-y-2 disabled:cursor-not-allowed disabled:opacity-50", | |
| className | |
| )} | |
| bind:checked | |
| bind:indeterminate | |
| {...restProps} | |
| > | |
| {#snippet children({ checked, indeterminate })} | |
| <div | |
| data-slot="checkbox-indicator" | |
| class="[&>svg]:size-3.5 grid place-content-center text-current transition-none" | |
| > | |
| {#if checked} | |
| <CheckIcon /> | |
| {:else if indeterminate} | |
| <MinusIcon /> | |
| {/if} | |
| </div> | |
| {/snippet} | |
| </CheckboxPrimitive.Root> | |