mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-27 17:56:36 +00:00
36 lines
1.2 KiB
Svelte
36 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { Checkbox as CheckboxPrimitive } from 'bits-ui';
|
|
import Check from 'lucide-svelte/icons/check';
|
|
import Minus from 'lucide-svelte/icons/minus';
|
|
import { cn } from '$lib/utils/style.js';
|
|
|
|
type $$Props = CheckboxPrimitive.Props;
|
|
type $$Events = CheckboxPrimitive.Events;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let checked: $$Props['checked'] = false;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CheckboxPrimitive.Root
|
|
class={cn(
|
|
'peer border-primary ring-offset-background focus-visible:ring-ring data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground box-content h-4 w-4 shrink-0 rounded-sm border focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 data-[disabled=true]:cursor-not-allowed data-[disabled=true]:opacity-50',
|
|
className
|
|
)}
|
|
bind:checked
|
|
{...$$restProps}
|
|
on:click
|
|
>
|
|
<CheckboxPrimitive.Indicator
|
|
class={cn('flex h-4 w-4 items-center justify-center text-current')}
|
|
let:isChecked
|
|
let:isIndeterminate
|
|
>
|
|
{#if isChecked}
|
|
<Check class="h-3.5 w-3.5" />
|
|
{:else if isIndeterminate}
|
|
<Minus class="h-3.5 w-3.5" />
|
|
{/if}
|
|
</CheckboxPrimitive.Indicator>
|
|
</CheckboxPrimitive.Root>
|