import React from 'react'; import PropTypes from 'prop-types'; import { Checkbox } from 'plugin-api/beta/client/components/ui'; import styles from './Toggle.css'; import uuid from 'uuid/v4'; import cn from 'classnames'; class Toggle extends React.Component { id = uuid(); render() { const { checked, onChange, children, disabled } = this.props; return (