@nomercyicons/react
Version:
29 lines • 1.27 kB
JavaScript
const React = require("react");
function VolcanoRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M16.49 8h-4.14c-.82 0-1.55.5-1.86 1.26L9 13H7.3c-.79 0-1.51.47-1.83 1.19l-2.22 5C2.66 20.51 3.63 22 5.08 22h14.27c1.33 0 2.29-1.27 1.92-2.55l-2.86-10A1.992 1.992 0 0016.49 8zM14 1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zM19.66 3.34a.996.996 0 00-1.41 0l-1.41 1.41a.996.996 0 101.41 1.41l1.41-1.41a.996.996 0 000-1.41zM11.17 4.76L9.76 3.34a.996.996 0 10-1.41 1.41l1.41 1.41c.39.39 1.02.39 1.41 0a.984.984 0 000-1.4z"
}));
}
const ForwardRef = React.forwardRef(VolcanoRoundedIcon);
module.exports = ForwardRef;