import React, { PureComponent } from 'react'; import { Zap } from 'react-feather'; import SwitchThemed from './SwitchThemed'; import ToggleSwitch from './ToggleSwitch'; import Input from './Input'; import Button from './Button'; import { LoadingDot } from './shared/Basic'; const noop = () => { /* empty */ }; const paneStyle = { padding: '20px 0', }; const optionsRule = [ { label: 'Global', value: 'Global', }, { label: 'Rule', value: 'Rule', }, { label: 'Direct', value: 'Direct', }, ]; const Pane = ({ children, style }) => (