import { ReactNode } from 'react'; import { clsx } from 'clsx/lite'; export default function Switcher({ children, type = 'regular', }: { children: ReactNode type?: 'regular' | 'borderless' }) { return (
{children}
); };