@nomercyicons/react
Version:
30 lines • 1.12 kB
JavaScript
import * as React from "react";
function WindPowerSharpIcon({
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 3h6v2H4zM1 7h5v2H1zM3 19h5v2H3zM15.32 12.09l5.42-9.04L17.32 1 12 5.97v4.74a2.485 2.485 0 013.32 1.38zM10.5 13c0-.82.4-1.54 1.01-2H1v4l7 2 3.44-2.06A2.48 2.48 0 0110.5 13zM20.17 23L23 20.17l-3.54-6.36-3.98-1c0 .06.02.12.02.19a2.5 2.5 0 01-2.5 2.5c-.36 0-.69-.08-1-.21V21c-1.1 0-2 .9-2 2h6c0-1.1-.9-2-2-2v-4.17L20.17 23z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 13,
cy: 13,
r: 1.5
}));
}
const ForwardRef = React.forwardRef(WindPowerSharpIcon);
export default ForwardRef;