import React from "react"; import BaseControl, { ControlProps } from "./BaseControl"; import { StyledSwitch } from "./StyledControls"; class SwitchControl extends BaseControl { render() { return ( ); } onToggle = () => { this.updateProperty(this.props.propertyName, !this.props.propertyValue); }; static getControlType() { return "SWITCH"; } } export type SwitchControlProps = ControlProps; export default SwitchControl;