UNPKG

@wordpress/block-library

Version:
12 lines (10 loc) 267 B
import { ToggleControl } from '@wordpress/components'; export default function EmptyTermsControl( { value, onChange, ...props } ) { return ( <ToggleControl checked={ ! value } onChange={ ( showEmpty ) => onChange( ! showEmpty ) } { ...props } /> ); }