@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.
34 lines • 1.48 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Google(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("g", {
fill: "none"
}, React.createElement("path", {
fill: "#FFC107",
d: "M21.464 10.392h-.758v-.039h-8.47v3.765h5.32a5.648 5.648 0 0 1-5.32 3.765 5.646 5.646 0 0 1-5.647-5.647 5.646 5.646 0 0 1 5.647-5.647c1.44 0 2.75.542 3.746 1.43l2.662-2.662a9.367 9.367 0 0 0-6.408-2.533 9.411 9.411 0 0 0-9.412 9.412 9.411 9.411 0 0 0 9.412 9.412 9.411 9.411 0 0 0 9.228-11.256z"
}), React.createElement("path", {
fill: "#FF3D00",
d: "M3.909 7.855l3.093 2.269a5.643 5.643 0 0 1 5.234-3.535c1.44 0 2.75.542 3.746 1.43l2.662-2.662a9.367 9.367 0 0 0-6.408-2.533 9.406 9.406 0 0 0-8.327 5.031z"
}), React.createElement("path", {
fill: "#4CAF50",
d: "M12.236 21.648c2.43 0 4.64-.93 6.31-2.443l-2.913-2.466a5.609 5.609 0 0 1-3.397 1.144 5.643 5.643 0 0 1-5.31-3.74l-3.069 2.365c1.557 3.048 4.72 5.14 8.379 5.14z"
}), React.createElement("path", {
fill: "#1976D2",
d: "M21.464 10.392h-.758v-.039h-8.47v3.765h5.32a5.672 5.672 0 0 1-1.925 2.621h.002l2.913 2.466c-.205.185 3.102-2.263 3.102-6.97 0-.63-.065-1.246-.184-1.843z"
})));
}