@nature-ui/icons
Version:
A base React component for icons
25 lines (23 loc) • 716 B
JavaScript
// src/InfoOutline.tsx
import { createIcon } from "@nature-ui/icon";
import { jsx, jsxs } from "react/jsx-runtime";
var InfoOutlineIcon = createIcon({
displayName: "InfoOutlineIcon",
path: /* @__PURE__ */ jsxs(
"g",
{
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "square",
strokeWidth: "2",
children: [
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", fill: "none", r: "11", stroke: "currentColor" }),
/* @__PURE__ */ jsx("line", { fill: "none", x1: "11.959", x2: "11.959", y1: "11", y2: "17" }),
/* @__PURE__ */ jsx("circle", { cx: "11.959", cy: "7", r: "1", stroke: "none" })
]
}
)
});
export {
InfoOutlineIcon
};