@gechiui/block-editor
Version:
18 lines (17 loc) • 485 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement } from "@gechiui/element";
/**
* Internal dependencies
*/
import JustifyContentUI from './ui';
export function JustifyContentControl(props) {
return createElement(JustifyContentUI, _extends({}, props, {
isToolbar: false
}));
}
export function JustifyToolbar(props) {
return createElement(JustifyContentUI, _extends({}, props, {
isToolbar: true
}));
}
//# sourceMappingURL=index.js.map