@gechiui/block-editor
Version:
25 lines (24 loc) • 709 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* GeChiUI dependencies
*/
import { Path, SVG } from '@gechiui/components';
export const alignBottom = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M15 4H9v11h6V4zM4 18.5V20h16v-1.5H4z"
}));
export const alignCenter = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M20 11h-5V4H9v7H4v1.5h5V20h6v-7.5h5z"
}));
export const alignTop = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M9 20h6V9H9v11zM4 4v1.5h16V4H4z"
}));
//# sourceMappingURL=icons.js.map