@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
22 lines (19 loc) • 486 B
JavaScript
'use client';
import { jsx, jsxs } from "react/jsx-runtime";
//#region src/Tooltip/ArrowIcon.tsx
const TooltipArrowIcon = /* @__PURE__ */ jsxs("svg", {
"aria-hidden": "true",
height: "6",
viewBox: "0 0 12 6",
width: "12",
children: [/* @__PURE__ */ jsx("path", {
d: "M0 6L6 0L12 6Z",
"data-role": "fill"
}), /* @__PURE__ */ jsx("path", {
d: "M0 6L6 0L12 6",
"data-role": "stroke"
})]
});
//#endregion
export { TooltipArrowIcon };
//# sourceMappingURL=ArrowIcon.mjs.map