@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
15 lines (14 loc) • 437 B
JavaScript
import { jsx } from "react/jsx-runtime";
//#region src/base-ui/SubmenuArrowIcon.tsx
const SubmenuArrowIcon = () => /* @__PURE__ */ jsx("svg", {
"aria-hidden": true,
fill: "currentColor",
stroke: "currentColor",
strokeLinejoin: "round",
strokeWidth: 1.5,
viewBox: "0 0 16 16",
children: /* @__PURE__ */ jsx("path", { d: "M6 5l4 3-4 3z" })
});
//#endregion
export { SubmenuArrowIcon };
//# sourceMappingURL=SubmenuArrowIcon.mjs.map