2023-09-08 23:30:32 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { Switch as SwitchPrimitive } from "bits-ui";
|
2024-06-08 22:09:21 +00:00
|
|
|
import { cn } from "$lib/utils.js";
|
2023-09-08 23:30:32 +00:00
|
|
|
|
|
|
|
|
type $$Props = SwitchPrimitive.Props;
|
2024-06-08 22:09:21 +00:00
|
|
|
type $$Events = SwitchPrimitive.Events;
|
2023-09-08 23:30:32 +00:00
|
|
|
|
|
|
|
|
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-[24px] w-[44px] shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent 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}
|
2024-06-08 22:09:21 +00:00
|
|
|
on:click
|
|
|
|
|
on:keydown
|
2023-09-08 23:30:32 +00:00
|
|
|
>
|
|
|
|
|
<SwitchPrimitive.Thumb
|
|
|
|
|
class={cn(
|
|
|
|
|
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0"
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</SwitchPrimitive.Root>
|