@nomercyicons/react
Version:
24 lines • 965 B
JavaScript
import * as React from "react";
function GoogleIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 49",
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("path", {
fill: "#0B0B0A",
fillRule: "evenodd",
d: "M24.337 19.649v9.702s9.35-.012 13.158-.012c-2.062 6.29-5.267 9.715-13.158 9.715-7.984 0-14.217-6.516-14.217-14.554S16.353 9.946 24.337 9.946c4.222 0 6.949 1.493 9.45 3.575 2.001-2.015 1.834-2.302 6.928-7.144C36.39 2.415 30.645 0 24.337 0 10.897 0 0 10.969 0 24.5 0 38.03 10.896 49 24.337 49c20.091 0 25.002-17.61 23.374-29.351H24.337z"
}));
}
const ForwardRef = React.forwardRef(GoogleIcon);
export default ForwardRef;