@wordpress/block-library
Version:
Block library for the WordPress editor.
21 lines (20 loc) • 625 B
JavaScript
// packages/block-library/src/query-pagination/query-pagination-label-control.js
import { __ } from "@wordpress/i18n";
import { ToggleControl } from "@wordpress/components";
import { jsx } from "react/jsx-runtime";
function QueryPaginationLabelControl({ value, onChange }) {
return /* @__PURE__ */ jsx(
ToggleControl,
{
__nextHasNoMarginBottom: true,
label: __("Show label text"),
help: __('Make label text visible, e.g. "Next Page".'),
onChange,
checked: value === true
}
);
}
export {
QueryPaginationLabelControl
};
//# sourceMappingURL=query-pagination-label-control.js.map