@wordpress/block-library
Version:
Block library for the WordPress editor.
19 lines (18 loc) • 496 B
JavaScript
// packages/block-library/src/navigation-link/icons.js
import { Path, SVG } from "@wordpress/components";
import { jsx } from "react/jsx-runtime";
var ItemSubmenuIcon = () => /* @__PURE__ */ jsx(
SVG,
{
xmlns: "http://www.w3.org/2000/svg",
width: "12",
height: "12",
viewBox: "0 0 12 12",
fill: "none",
children: /* @__PURE__ */ jsx(Path, { d: "M1.50002 4L6.00002 8L10.5 4", strokeWidth: "1.5" })
}
);
export {
ItemSubmenuIcon
};
//# sourceMappingURL=icons.js.map