UNPKG

838 BJavaScriptView Raw
1const React = require("react");
2function InformationCircleIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 fill: "none",
10 viewBox: "0 0 24 24",
11 strokeWidth: 1.5,
12 stroke: "currentColor",
13 "aria-hidden": "true",
14 ref: svgRef,
15 "aria-labelledby": titleId
16 }, props), title ? /*#__PURE__*/React.createElement("title", {
17 id: titleId
18 }, title) : null, /*#__PURE__*/React.createElement("path", {
19 strokeLinecap: "round",
20 strokeLinejoin: "round",
21 d: "M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"
22 }));
23}
24const ForwardRef = React.forwardRef(InformationCircleIcon);
25module.exports = ForwardRef;
\No newline at end of file