UNPKG

@wordpress/block-library

Version:
19 lines (18 loc) 498 B
// packages/block-library/src/terms-query/edit/inspector-controls/nested-terms-control.js import { ToggleControl } from "@wordpress/components"; import { jsx } from "react/jsx-runtime"; function NestedTermsControl({ value, onChange, ...props }) { return /* @__PURE__ */ jsx( ToggleControl, { __nextHasNoMarginBottom: true, checked: value, onChange, ...props } ); } export { NestedTermsControl as default }; //# sourceMappingURL=nested-terms-control.js.map