@nomercyicons/react
Version:
29 lines • 992 B
JavaScript
const React = require("react");
function TornadoTwoToneIcon({
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("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.1 13h5.8l1.74-3H7.36zM12 18.01L13.74 15h-3.48zM4.47 5l1.74 3h11.58l1.74-3z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M1 3l11 19L23 3H1zm11 15.01L10.26 15h3.48L12 18.01zM14.9 13H9.1l-1.74-3h9.27l-1.73 3zM6.21 8L4.47 5h15.06l-1.74 3H6.21z"
}));
}
const ForwardRef = React.forwardRef(TornadoTwoToneIcon);
module.exports = ForwardRef;