@wordpress/icons
Version:
WordPress Icons package, based on dashicon.
13 lines • 440 B
JavaScript
import { createElement } from "react";
/**
* WordPress dependencies
*/
import { Path, SVG } from '@wordpress/primitives';
const shortcode = createElement(SVG, {
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg"
}, createElement(Path, {
d: "M16 4.2v1.5h2.5v12.5H16v1.5h4V4.2h-4zM4.2 19.8h4v-1.5H5.8V5.8h2.5V4.2h-4l-.1 15.6zm5.1-3.1l1.4.6 4-10-1.4-.6-4 10z"
}));
export default shortcode;
//# sourceMappingURL=shortcode.js.map