react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 910 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgWechat2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M5.458 18.185C3.359 16.677 2 14.4 2 11.908c0-4.585 4.475-8.308 10-8.308s10 3.723 10 8.308c0 4.584-4.475 8.308-10 8.308a11.4 11.4 0 0 1-3.272-.462c-.092-.03-.216-.03-.308-.03-.185 0-.37.06-.525.153l-2.191 1.262c-.062.03-.124.061-.186.061a.34.34 0 0 1-.339-.338c0-.093.03-.154.062-.246.03-.031.308-1.047.463-1.662 0-.062.03-.154.03-.215q0-.37-.277-.554m3.21-7.673c.717 0 1.285-.569 1.285-1.286S9.385 7.94 8.668 7.94c-.718 0-1.285.568-1.285 1.286 0 .717.567 1.285 1.285 1.285m6.666 0c.718 0 1.285-.569 1.285-1.286s-.567-1.286-1.285-1.286c-.717 0-1.285.568-1.285 1.286 0 .717.568 1.285 1.285 1.285" />
</Svg>
);
export default SvgWechat2Fill;