UNPKG

@kushki/suka-react-system-icons

Version:
50 lines (46 loc) 3.12 kB
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; var CloudRain = forwardRef(function (_ref, ref) { var _ref$color = _ref.color, color = _ref$color === void 0 ? 'currentColor' : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]); return /*#__PURE__*/React.createElement("svg", _extends({ ref: ref, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24", fill: "none", stroke: color, strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }, rest), /*#__PURE__*/React.createElement("g", { clipPath: "url(#clip0)" }, /*#__PURE__*/React.createElement("path", { d: "M16 13V21" }), /*#__PURE__*/React.createElement("path", { d: "M8 13V21" }), /*#__PURE__*/React.createElement("path", { d: "M12 15V23" }), /*#__PURE__*/React.createElement("path", { d: "M20 16.58C21.0513 16.1196 21.9121 15.3115 22.4381 14.2915C22.9641 13.2715 23.1232 12.1016 22.8886 10.9782C22.6541 9.85475 22.0402 8.8462 21.1501 8.12182C20.2599 7.39745 19.1477 7.00134 18 6.99999H16.74C16.4231 5.77251 15.8189 4.63794 14.9773 3.68979C14.1358 2.74164 13.081 2.00706 11.8998 1.54661C10.7186 1.08615 9.44494 0.913005 8.18372 1.04143C6.92249 1.16986 5.70984 1.59618 4.64573 2.28527C3.58161 2.97436 2.6965 3.90647 2.06334 5.00478C1.43018 6.1031 1.06711 7.33616 1.00404 8.60234C0.940984 9.86852 1.17974 11.1316 1.70064 12.2873C2.22153 13.4431 3.00965 14.4586 4.00003 15.25" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clippath", { id: "clip0" }, /*#__PURE__*/React.createElement("rect", { width: "24", height: "24", fill: "white" })))); }); CloudRain.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; CloudRain.displayName = 'CloudRain'; export default CloudRain;