@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
28 lines • 1.49 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Google(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M21.463 10.392h-.757v-.04h-8.47v3.766h5.32a5.648 5.648 0 0 1-5.32 3.764c-3.12 0-5.648-2.527-5.648-5.647s2.528-5.647 5.647-5.647c1.44 0 2.75.543 3.747 1.43l2.661-2.661a9.367 9.367 0 0 0-6.408-2.533c-5.198 0-9.412 4.213-9.412 9.411s4.214 9.412 9.412 9.412a9.411 9.411 0 0 0 9.412-9.412 9.389 9.389 0 0 0-.184-1.843z",
fill: "#FFC107"
}), React.createElement("path", {
d: "M3.908 7.855l3.094 2.268a5.644 5.644 0 0 1 5.233-3.535c1.44 0 2.75.543 3.747 1.43l2.661-2.661a9.367 9.367 0 0 0-6.408-2.533 9.406 9.406 0 0 0-8.327 5.03z",
fill: "#FF3D00"
}), React.createElement("path", {
d: "M12.235 21.647c2.43 0 4.64-.93 6.311-2.443l-2.914-2.465a5.61 5.61 0 0 1-3.397 1.143 5.643 5.643 0 0 1-5.309-3.739l-3.07 2.364c1.558 3.048 4.721 5.14 8.38 5.14z",
fill: "#4CAF50"
}), React.createElement("path", {
d: "M21.463 10.392h-.757v-.04h-8.47v3.766h5.32a5.672 5.672 0 0 1-1.926 2.621h.002l2.914 2.465c-.206.186 3.101-2.263 3.101-6.969a9.389 9.389 0 0 0-.184-1.843z",
fill: "#1976D2"
}));
}