import classNames from 'classnames/bind' import Text from './text' const cx = classNames.bind(_s) export default class Switch extends PureComponent { static propTypes = { id: PropTypes.string.isRequired, description: PropTypes.string, label: PropTypes.string, checked: PropTypes.bool, onChange: PropTypes.func, onKeyDown: PropTypes.func, disabled: PropTypes.bool, labelProps: PropTypes.object, } render() { const { id, description, label, checked, onChange, onKeyDown, disabled, labelProps } = this.props const checkboxContainerClasses = cx({ cursorPointer: 1, default: 1, height24PX: 1, width50PX: 1, circle: 1, border1PX: 1, mlAuto: 1, borderColorSecondary: 1, bgBrand: checked, }) const checkboxLabelClasses = cx({ default: 1, m1PX: 1, height20PX: 1, width20PX: 1, circle: 1, posAbs: 1, bgSecondary: !checked, bgPrimary: checked, left0: !checked, right0: checked, }) return (
{label}
) } }