@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 860 B
JavaScript
const React = require("react");
function CloudMoonIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M16.5 13a5.502 5.502 0 005.337-4.164 5.5 5.5 0 01-6.673-6.672 5.502 5.502 0 00-3.548 7.867M5 7V3M3 5h4M6 22a4 4 0 01-.679-7.943 6.003 6.003 0 0110.968-.892A4.5 4.5 0 1117.5 22H6.001z"
}));
}
const ForwardRef = React.forwardRef(CloudMoonIcon);
module.exports = ForwardRef;