@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 806 B
JavaScript
import * as React from "react";
function InfoIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m.917-5.497-.376-4.505a.543.543 0 0 0-1.082 0l-.376 4.506a.92.92 0 1 0 1.834 0M12 9.5a1 1 0 1 0 0-2h-.009a1 1 0 1 0 0 2z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(InfoIcon);
export default ForwardRef;