react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 576 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgGoogleLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<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 013 11.98 8.976 8.976 0 0111.98 3c2.42 0 4.453.89 6.008 2.339L16.526 6.8C15.368 5.681 13.803 5 12 5a7 7 0 100 14c3.526 0 6.144-2.608 6.577-6H12v-2z" />
</Svg>
);
}
export default SvgGoogleLine;