import { forwardRef } from "react"; import type { SwitchViewProps } from "./Switch.types"; export const SwitchView = forwardRef( ( { switchId, propSwitch, text, switchClasses, trackClasses, thumbClasses, labelClasses, switchAriaLabel, onClick, onKeyDown, onFocus, onBlur, ...rest }, ref, ) => { return (
{text && {text}}
); }, ); SwitchView.displayName = "SwitchView";