ERP-node/frontend/components/ui/switch.tsx

34 lines
1.2 KiB
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
"use client";
import * as React from "react";
import * as SwitchPrimitive from "@radix-ui/react-switch";
import { cn } from "@/lib/utils";
function Switch({ className, ...props }: React.ComponentProps<typeof SwitchPrimitive.Root>) {
return (
<SwitchPrimitive.Root
data-slot="switch"
className={cn(
"peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border border-transparent shadow-sm transition-all outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",
"data-[state=checked]:bg-green-500 data-[state=unchecked]:bg-gray-300",
"hover:data-[state=checked]:bg-green-600 hover:data-[state=unchecked]:bg-gray-400",
2025-08-21 09:41:46 +09:00
"focus-visible:border-ring focus-visible:ring-ring/50",
className,
)}
{...props}
>
<SwitchPrimitive.Thumb
data-slot="switch-thumb"
className={cn(
"pointer-events-none block h-4 w-4 rounded-full ring-0 transition-transform",
"bg-white shadow-sm",
"data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0.5",
)}
/>
</SwitchPrimitive.Root>
);
}
export { Switch };