import { Switch as SwitchPrimitive } from '@base-ui/react/switch'; import { cn } from '@evershop/evershop/lib/util/cn'; import React from 'react'; function Switch({ className, size = 'default', ...props }: SwitchPrimitive.Root.Props & { size?: 'sm' | 'default'; }) { return ( ); } export { Switch };