@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.13 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var CloudUpload = intrinsicComponent(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 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "CloudUpload",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M32.0783 31.0195L26.219 22.2304C25.6754 21.415 24.3249 21.415 23.7814 22.2304L17.922 31.0195C17.6229 31.4687 17.5944 32.0466 17.849 32.523C18.1036 32.9994 18.6 33.2969 19.1407 33.2969H20.6056V43.5509C20.6056 44.3605 21.2607 45.0157 22.0704 45.0157H27.9298C28.7395 45.0157 29.3947 44.3605 29.3947 43.5509V33.2969H30.8595C31.4002 33.2969 31.8966 32.9994 32.1513 32.523C32.406 32.0466 32.3773 31.4687 32.0783 31.0195Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M42.5251 16.6405C42.3962 14.8899 41.6856 13.2568 40.4339 12.0051C38.541 10.1121 35.6912 9.54601 33.188 10.2448C30.781 6.37432 26.6402 4 22.0704 4C15.2011 4 9.54344 9.27999 8.95262 16.1179C3.82702 17.4125 6.10352e-05 22.0802 6.10352e-05 27.4375C6.10352e-05 33.8992 5.35486 39.1563 11.8165 39.1563H17.6759V35.9763C16.6573 35.6173 15.7919 34.8891 15.2654 33.9035C14.5001 32.4744 14.5845 30.7463 15.4829 29.3959L21.3438 20.6054C22.1434 19.4052 23.5109 18.69 25.0001 18.69C26.4893 18.69 27.8569 19.4052 28.6565 20.6054L34.5159 29.3945C35.4157 30.7463 35.5 32.4744 34.7347 33.9035C34.2082 34.8891 33.3428 35.6173 32.3242 35.9763V39.1563H38.1836C44.6453 39.1563 50.0001 33.8992 50.0001 27.4375C50.0002 22.6031 46.9676 18.4097 42.5251 16.6405Z",
fill: color
}));
});
export default CloudUpload;