@wordpress/block-editor
Version:
50 lines (46 loc) • 1.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.spaceBetween = exports.alignTop = exports.alignStretch = exports.alignCenter = exports.alignBottom = void 0;
var _element = require("@wordpress/element");
var _components = require("@wordpress/components");
/**
* WordPress dependencies
*/
const alignBottom = (0, _element.createElement)(_components.SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, (0, _element.createElement)(_components.Path, {
d: "M15 4H9v11h6V4zM4 18.5V20h16v-1.5H4z"
}));
exports.alignBottom = alignBottom;
const alignCenter = (0, _element.createElement)(_components.SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, (0, _element.createElement)(_components.Path, {
d: "M20 11h-5V4H9v7H4v1.5h5V20h6v-7.5h5z"
}));
exports.alignCenter = alignCenter;
const alignTop = (0, _element.createElement)(_components.SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, (0, _element.createElement)(_components.Path, {
d: "M9 20h6V9H9v11zM4 4v1.5h16V4H4z"
}));
exports.alignTop = alignTop;
const alignStretch = (0, _element.createElement)(_components.SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, (0, _element.createElement)(_components.Path, {
d: "M4 4L20 4L20 5.5L4 5.5L4 4ZM10 7L14 7L14 17L10 17L10 7ZM20 18.5L4 18.5L4 20L20 20L20 18.5Z"
}));
exports.alignStretch = alignStretch;
const spaceBetween = (0, _element.createElement)(_components.SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, (0, _element.createElement)(_components.Path, {
d: "M7 4H17V8L7 8V4ZM7 16L17 16V20L7 20V16ZM20 11.25H4V12.75H20V11.25Z"
}));
exports.spaceBetween = spaceBetween;
//# sourceMappingURL=icons.js.map