@wordpress/block-library
Version:
Block library for the WordPress editor.
17 lines (16 loc) • 425 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { Path, SVG } from '@wordpress/components';
export const ItemSubmenuIcon = () => createElement(SVG, {
xmlns: "http://www.w3.org/2000/svg",
width: "12",
height: "12",
viewBox: "0 0 12 12",
fill: "none"
}, createElement(Path, {
d: "M1.50002 4L6.00002 8L10.5 4",
strokeWidth: "1.5"
}));
//# sourceMappingURL=icons.js.map