@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.21 kB
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="m19.146 8.993-9.799 5.608-.07.045a.65.65 0 0 1-.3.07.66.66 0 0 1-.58-.345l-.046-.092-1.831-3.95c-.023-.046-.023-.092-.023-.138 0-.184.139-.321.324-.321q.105 0 .209.069l2.155 1.515c.162.092.347.161.556.161a.9.9 0 0 0 .348-.069l8.274-3.649C16.935 6.273 14.635 5.2 12.001 5.2c-4.421 0-7.9 3.022-7.9 6.6 0 1.365.5 2.673 1.431 3.78q.073.088.215.236a4 4 0 0 1 1.1 3.102l-.024.297.715-.436a4 4 0 0 1 2.706-.536q.317.05.52.076.61.081 1.237.081c4.42 0 7.9-3.022 7.9-6.6 0-.996-.27-1.95-.755-2.807M6.193 21.943a1 1 0 0 1-1.527-.932l.189-2.259a2 2 0 0 0-.55-1.551 7 7 0 0 1-.303-.333C2.806 15.447 2.1 13.695 2.1 11.8c0-4.75 4.432-8.6 9.9-8.6 5.467 0 9.9 3.85 9.9 8.6s-4.433 8.6-9.9 8.6q-.765-.001-1.5-.098-.229-.03-.568-.084a2 2 0 0 0-1.353.268z"/>
</Svg>);
});
Icon.displayName = 'WechatPayLine';
/**
* Remix Icon: Wechat Pay Line
* @see {@link https://remixicon.com/icon/wechat-pay-line Remix Icon Docs}
*/
export const WechatPayLine = Icon;