react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 575 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgGoogleLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 11h8.533q.066.578.067 1.184c0 2.734-.98 5.036-2.678 6.6-1.485 1.371-3.518 2.175-5.942 2.175A8.976 8.976 0 0 1 3 11.98 8.976 8.976 0 0 1 11.98 3c2.42 0 4.453.89 6.008 2.339L16.526 6.8C15.368 5.681 13.803 5 12 5a7 7 0 0 0 0 14c3.527 0 6.144-2.608 6.577-6H12z" />
</Svg>
);
export default SvgGoogleLine;