import { ToggleControl } from '@wordpress/components'; import { Action, Description } from '../Elements'; const ControlToggleButton = ( { id = '', label, description, value, onChange, disabled = false, } ) => ( { description } : null } disabled={ disabled } /> ); export default ControlToggleButton;