@wordpress/block-editor
Version:
32 lines (29 loc) • 908 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.JustifyToolbar = exports.JustifyContentControl = void 0;
var _ui = _interopRequireDefault(require("./ui"));
var _jsxRuntime = require("react/jsx-runtime");
/**
* Internal dependencies
*/
const JustifyContentControl = props => {
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ui.default, {
...props,
isToolbar: false
});
};
exports.JustifyContentControl = JustifyContentControl;
const JustifyToolbar = props => {
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ui.default, {
...props,
isToolbar: true
});
};
/**
* @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/block-editor/src/components/justify-content-control/README.md
*/
exports.JustifyToolbar = JustifyToolbar;
//# sourceMappingURL=index.js.map