'use client'; import type * as React from 'react'; import * as SwitchPrimitive from '@radix-ui/react-switch'; import { cn } from '@gib/ui'; function Switch({ className, ...props }: React.ComponentProps) { return ( ); } export { Switch };