@nomercyicons/react
Version:
32 lines • 1.31 kB
JavaScript
const React = require("react");
function SolarPowerTwoToneIcon({
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: "M4.44 20H11v-2H4.84zM18.36 14H13v2h5.76zM13 18v2h6.56l-.4-2zM5.24 16H11v-2H5.64z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M20 12H4L2 22h20l-2-10zm-7 2h5.36l.4 2H13v-2zm-2 6H4.44l.4-2H11v2zm0-4H5.24l.4-2H11v2zm2 4v-2h6.16l.4 2H13zM11 8h2v3h-2zM15.764 7.205l1.415-1.414L19.3 7.912l-1.414 1.414zM4.705 7.913L6.826 5.79 8.24 7.206 6.12 9.327zM3 2h3v2H3zM18 2h3v2h-3zM12 7c2.76 0 5-2.24 5-5h-2c0 1.65-1.35 3-3 3S9 3.65 9 2H7c0 2.76 2.24 5 5 5z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15 2c0 1.66-1.34 3-3 3S9 3.66 9 2h6z",
opacity: 0.3
}));
}
const ForwardRef = React.forwardRef(SolarPowerTwoToneIcon);
module.exports = ForwardRef;