@scaleflex/icons
Version:
SVG icons as React components
31 lines • 1.27 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 GoogleDrive = 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": "GoogleDrive",
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: "M24.2545 17.9611L8.14951 45.8206L0 31.7172L16.1152 3.84757L24.2545 17.9611Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M49.9592 30.8696L33.6601 30.8901L17.5858 2.99994H33.9052L49.9592 30.8696Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M50 32.5751L41.8607 46.6785L9.62011 46.658L17.7696 32.5649L50 32.5751Z",
fill: color
}));
});
export default GoogleDrive;