A simple switch component in React
yarn add happy-react-switch
# or
npm i happy-react-switch
Remember to include
happy-react-switch/style.css
. Otherwise you'll have to include your own styles.Switch.propTypes = {
active: PropTypes.bool.isRequired,
className: PropTypes.string,
enabled: PropTypes.bool,
onClick: PropTypes.func.isRequired,
small: PropTypes.bool,
};