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