import React, { forwardRef } from 'react'; export interface SwitchProps extends Omit< React.InputHTMLAttributes, 'type' > { label?: React.ReactNode; labelClassName?: string; } export const Switch = forwardRef( ({ label, labelClassName = '', className = '', id, ...rest }, ref) => { const classes = ['switch', labelClassName].filter(Boolean).join(' '); return ( ); } ); Switch.displayName = 'Switch';