@wordpress/icons
Version:
WordPress Icons package, based on dashicon.
13 lines • 377 B
JavaScript
import { createElement } from "react";
/**
* WordPress dependencies
*/
import { SVG, Path } from '@wordpress/primitives';
const justifyCenter = createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M12.5 15v5H11v-5H4V9h7V4h1.5v5h7v6h-7Z"
}));
export default justifyCenter;
//# sourceMappingURL=justify-center.js.map