UNPKG

@wordpress/block-library

Version:
16 lines (14 loc) 328 B
/** * WordPress dependencies */ import { ToggleControl } from '@wordpress/components'; export default function EmptyTermsControl( { value, onChange, ...props } ) { return ( <ToggleControl __nextHasNoMarginBottom checked={ ! value } onChange={ ( showEmpty ) => onChange( ! showEmpty ) } { ...props } /> ); }