import React from 'react'; import Toggle from 'react-toggle'; import classNames from 'classnames'; export default class Switch extends Toggle { render() { const { className, icons: _icons, ariaLabelledBy, ariaDescribedBy, ariaLabel, ariaDesc, ...inputProps, } = this.props; const classes = classNames('react-toggle', { 'react-toggle--checked': this.state.checked, 'react-toggle--focus': this.state.hasFocus, 'react-toggle--disabled': this.props.disabled, }, className); return (