@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 846 B
JavaScript
import * as React from "react";
function CloudSun02Icon({
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: "M10.5 1.5v1.6M3.6 10H2m3.451-5.049L4.32 3.82m11.23 1.131L16.68 3.82M19 10h-1.6M6.5 10A4 4 0 0114 8.062M6 22a4 4 0 111.324-7.775 5.002 5.002 0 019.352 0A4 4 0 1118 22H6z"
}));
}
const ForwardRef = React.forwardRef(CloudSun02Icon);
export default ForwardRef;