mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
28 lines
1.1 KiB
Svelte
28 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { Switch as SwitchPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = SwitchPrimitive.Props;
|
|
type $$Events = SwitchPrimitive.Events;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let checked: $$Props['checked'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<SwitchPrimitive.Root
|
|
bind:checked
|
|
class={cn(
|
|
'peer inline-flex h-[20px] w-[36px] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input',
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
on:click
|
|
on:keydown
|
|
>
|
|
<SwitchPrimitive.Thumb
|
|
class={cn(
|
|
'pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0'
|
|
)}
|
|
/>
|
|
</SwitchPrimitive.Root>
|