@wordpress/block-library
Version:
Block library for the WordPress editor.
16 lines (15 loc) • 600 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { SVG, Path } from '@wordpress/components';
export default createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24"
}, createElement(Path, {
d: "M15.1 15.8H20v-1.5h-4.9v1.5zm-4-8.6v1.5H20V7.2h-8.9zM6 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm5-3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z",
fill: "#1e1e1e"
}));
//# sourceMappingURL=icon.js.map