@wordpress/block-editor
Version:
15 lines (14 loc) • 479 B
JavaScript
// packages/block-editor/src/components/justify-content-control/index.js
import JustifyContentUI from "./ui";
import { jsx } from "react/jsx-runtime";
var JustifyContentControl = (props) => {
return /* @__PURE__ */ jsx(JustifyContentUI, { ...props, isToolbar: false });
};
var JustifyToolbar = (props) => {
return /* @__PURE__ */ jsx(JustifyContentUI, { ...props, isToolbar: true });
};
export {
JustifyContentControl,
JustifyToolbar
};
//# sourceMappingURL=index.js.map