"use client"; import * as React from "react"; import * as SwitchPrimitive from "@radix-ui/react-switch"; import { cn } from "@/shared/utils/utils"; function Switch({ className, thumbClassName, ...props }: React.ComponentProps & { thumbClassName?: string; }) { return ( ); } export { Switch };