@nomercyicons/react
Version:
35 lines • 1.49 kB
JavaScript
import * as React from "react";
function ChromeColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
fill: "#EA4335",
d: "M5.795 8.361C16.952-4.624 37.64-2.06 45.373 13.107c-5.444.002-13.969-.001-18.586 0-3.349.001-5.51-.075-7.852 1.158-2.753 1.449-4.83 4.135-5.555 7.29L5.795 8.36z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#4285F4",
d: "M16.015 24c0 4.4 3.579 7.98 7.977 7.98s7.976-3.58 7.976-7.98c0-4.401-3.578-7.982-7.976-7.982s-7.977 3.58-7.977 7.981z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#34A853",
d: "M27.088 34.446c-4.477 1.33-9.717-.145-12.587-5.1A7917.733 7917.733 0 013.892 10.898C-5.322 25.02 2.62 44.264 19.346 47.55l7.742-13.103z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FBBC05",
d: "M31.401 16.018c3.73 3.468 4.542 9.084 2.016 13.439-1.903 3.28-7.977 13.531-10.92 18.495C39.73 49.015 52.294 32.124 46.62 16.018H31.4z"
})));
}
const ForwardRef = React.forwardRef(ChromeColorIcon);
export default ForwardRef;