import type { MattrixwvSwitchProps } from "$/types/InputTypes"; import clsx from "clsx"; import { forwardRef } from "react"; import MattrixwvSwitch from "./MattrixwvSwitch"; const InfoSwitch = forwardRef(({ className, knobClassName, disabled, ...props }, ref ) => { return ( ); }); InfoSwitch.displayName = "InfoSwitch"; export default InfoSwitch;