BtnSwitch.jsx 432B

1234567891011121314151617
  1. import React from 'react'
  2. require('./BtnSwitch.styl')
  3. export const BtnSwitch = props =>
  4. <div className='btnswitch'>
  5. <label className='switch nomarginlabel'>
  6. <input type='checkbox' checked={props.checked} onChange={props.onChange} />
  7. <span className='slider round' />
  8. </label>
  9. <div className='btnswitch__text'>
  10. { props.checked ? 'active' : 'inactive' }
  11. </div>
  12. </div>
  13. export default BtnSwitch