import PropTypes from 'prop-types'; import React from 'react'; import ImmutablePropTypes from 'react-immutable-proptypes'; import styled from 'react-emotion'; import { Toggle, ToggleBackground, colors } from 'netlify-cms-ui-default'; const BooleanBackground = styled(ToggleBackground)` background-color: ${props => (props.isActive ? colors.active : colors.textFieldBorder)}; `; export default class BooleanControl extends React.Component { render() { const { value, forID, onChange, classNameWrapper, setActiveStyle, setInactiveStyle, } = this.props; return (