import * as RadixSwitch from "@radix-ui/react-switch" import clsx from "clsx" import React from "react" /** * A controlled switch component atom. */ const Switch = React.forwardRef( (props, ref) => { return ( ) } ) Switch.displayName = "Switch" export default Switch