import React from 'react' import * as SwitchPrimitive from '@radix-ui/react-switch' const Switch = React.forwardRef< React.ElementRef, React.ComponentProps >((props, forwardedRef) => { const { className, ...itemProps } = props return ( e.preventDefault()} /> ) }) const SwitchThumb = React.forwardRef< React.ElementRef, React.ComponentProps >((props, forwardedRef) => { const { className, ...itemProps } = props return ( ) }) export { Switch, SwitchThumb }