@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 515 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" viewBox="0 0 24 24" {...props}>
<Path d="M12 11h8.533c.044.385.067.78.067 1.184 0 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-6H12v-2Z" />
</Svg>
);
export default SvgGoogleLine;