import PropTypes from "prop-types"; import "./Switch.css"; /** * Primary UI component for user interaction */ export const Switch = ({ isOn, handleToggle }) => { return ( <> ); }; Switch.propTypes = { /** * Switch's current value */ isOn: PropTypes.bool, /** * Function to execute on change */ handleToggle: PropTypes.func, }; Switch.defaultProps = { isOn: false, };