@heroui/shared-icons
Version:
Internal icons set, commonly used in the components stories
52 lines (50 loc) • 1.12 kB
JavaScript
// src/info.tsx
import { jsx, jsxs } from "react/jsx-runtime";
var InfoIcon = (props) => /* @__PURE__ */ jsxs(
"svg",
{
"aria-hidden": "true",
fill: "none",
focusable: "false",
height: "1em",
role: "presentation",
viewBox: "0 0 24 24",
width: "1em",
...props,
children: [
/* @__PURE__ */ jsx(
"path",
{
d: "M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "1.5"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M12 8V13",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "1.5"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M11.9945 16H12.0035",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "2"
}
)
]
}
);
export {
InfoIcon
};