sebikostudio-icons
Version:
A collection of icon components
33 lines • 1.48 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const CloudRainIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "rain, cloud, raining, cloudy, weather, forecast",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.5 10.5L5.5 15.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 15.5L8.5 18.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M18.5 7C18.5 8.933 16.933 10.5 15 10.5H4.5C2.84315 10.5 1.5 9.15685 1.5 7.5C1.5 5.84315 2.84315 4.5 4.5 4.5C4.59924 4.5 4.65928 4.49058 4.75605 4.5C5.3738 2.75221 7.04066 1.5 8.99999 1.5C10.7668 1.5 12.3241 2.60441 13.0604 4.08613C13.6156 3.71584 14.2826 3.5 15 3.5C16.933 3.5 18.5 5.067 18.5 7Z",
stroke: "currentColor",
strokeLinejoin: "round"
})));
export default CloudRainIcon;