UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

41 lines (39 loc) 2.35 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function GoogleCloudIcon({ title, titleId, size, colored, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 2385.7 1919.9", fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'), "aria-hidden": "true", width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: colored ? '#ea4335' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#ea4335') ? 'white' : 'currentColor'), d: "M1513.8 528.7h72.8L1794 321.3l10.2-88c-385.9-340.6-975-303.9-1315.6 82C393.9 422.5 325.2 550 287.8 688c23.1-9.5 48.7-11 72.8-4.4l414.7-68.4s21.1-34.9 32-32.7c184.5-202.6 495-226.2 708-53.8h-1.5z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#4285f4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#4285f4') ? 'white' : 'currentColor'), d: "M2089.4 688c-47.7-175.5-145.5-333.3-281.6-454l-291 291c122.9 100.4 192.9 251.7 189.9 410.4v51.7c143.1 0 259 116 259 259 0 143.1-116 259-259 259h-518.1l-51.7 52.4v310.7l51.7 51.7h518.1c297 2.3 560.5-190.2 648.7-473.8 88-283.7-20-591.7-266-758.1z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#34a853' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#34a853') ? 'white' : 'currentColor'), d: "M669.8 1917h518.1v-414.7H669.8c-36.9 0-73.4-7.9-107-23.3l-72.8 22.5-208.8 207.4-18.2 72.8c117.1 88.4 260 135.9 406.8 135.3z" }), /*#__PURE__*/React.createElement("path", { fill: colored ? '#fbbc05' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#fbbc05') ? 'white' : 'currentColor'), d: "M669.8 571.6c-287.8 1.7-542.7 186-634.5 458.7-91.8 272.7-.3 573.7 227.8 749.1l300.5-300.5c-130.4-58.9-188.3-212.3-129.4-342.7 58.9-130.4 212.3-188.3 342.7-129.4 57.4 26 103.4 72 129.4 129.4l300.5-300.5c-127.9-167.1-326.6-264.8-537-264.1z" })); } const ForwardRef = React.forwardRef(GoogleCloudIcon); export default ForwardRef;