UNPKG

1.02 kBJavaScriptView Raw
1const React = require("react");
2
3function FireIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M15.362 5.214A8.252 8.252 0 0112 21 8.25 8.25 0 016.038 7.048 8.287 8.287 0 009 9.6a8.983 8.983 0 013.361-6.867 8.21 8.21 0 003 2.48z"
23 }), /*#__PURE__*/React.createElement("path", {
24 strokeLinecap: "round",
25 strokeLinejoin: "round",
26 d: "M12 18a3.75 3.75 0 00.495-7.467 5.99 5.99 0 00-1.925 3.546 5.974 5.974 0 01-2.133-1A3.75 3.75 0 0012 18z"
27 }));
28}
29
30const ForwardRef = React.forwardRef(FireIcon);
31module.exports = ForwardRef;
\No newline at end of file