@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 725 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...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>);
});
Icon.displayName = 'GoogleLine';
/**
* Remix Icon: Google Line
* @see {@link https://remixicon.com/icon/google-line Remix Icon Docs}
*/
export const GoogleLine = Icon;