react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 851 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgWechatPayFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M9.27 14.669a.662.662 0 01-.88-.269l-.043-.095-1.818-3.998a.473.473 0 010-.145.327.327 0 01.335-.328.305.305 0 01.196.066l2.18 1.527a.989.989 0 00.546.167.894.894 0 00.342-.066l10.047-4.5a10.73 10.73 0 00-8.171-3.526C6.478 3.502 2 7.232 2 11.87a7.83 7.83 0 003.46 6.296.662.662 0 01.24.727l-.45 1.701a.945.945 0 00-.051.24.327.327 0 00.334.334.414.414 0 00.19-.058l2.18-1.265c.16-.098.343-.151.531-.152.099 0 .197.014.29.043 1.063.3 2.161.452 3.265.45 5.525 0 10.01-3.729 10.01-8.33a7.226 7.226 0 00-1.097-3.883L9.35 14.625l-.08.044z" />
</Svg>
);
}
export default SvgWechatPayFill;