/* eslint-disable @typescript-eslint/no-unused-expressions */ import React from 'react'; export interface SwitchProp { label?: string; checked?: boolean; toggleSwitch?: (value: boolean) => void; disabled?: boolean; } export const Switch: React.FC = (props) => { const { label, checked, disabled, toggleSwitch } = props; return ( ); }; Switch.defaultProps = { label: '', }; export default Switch;