UNPKG

@wordpress/block-library

Version:
17 lines (15 loc) 390 B
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; import { ToggleControl } from '@wordpress/components'; export function QueryPaginationLabelControl( { value, onChange } ) { return ( <ToggleControl label={ __( 'Show label text' ) } help={ __( 'Make label text visible, e.g. "Next Page".' ) } onChange={ onChange } checked={ value === true } /> ); }