@wordpress/block-library
Version:
Block library for the WordPress editor.
16 lines (15 loc) • 560 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { G, Path, SVG } from '@wordpress/components';
export default createElement(SVG, {
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg"
}, createElement(Path, {
fill: "none",
d: "M0 0h24v24H0V0z"
}), createElement(G, null, createElement(Path, {
d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"
})));
//# sourceMappingURL=icon.js.map