25 lines
788 B
JavaScript

/* eslint-disable */
import React from 'react';
import { Svg, Path } from 'react-native-svg';
import { getIconColor } from './helper';
let IconGouwu = ({ size, color, ...rest }) => {
return (
<Svg viewBox="0 0 1024 1024" width={size} height={size} {...rest}>
<Path
d="M512 128a144 144 0 0 1 144 144v32h84.032a32 32 0 0 1 31.712 27.712l71.36 528A32 32 0 0 1 811.392 896H212.608a32 32 0 0 1-31.712-36.288l71.36-528A32 32 0 0 1 283.968 304h84.016L368 272a144 144 0 0 1 144-144z m0 48a96 96 0 0 0-95.936 92.4L416 272v32h192v-32a96 96 0 0 0-92.4-95.936L512 176z"
fill={getIconColor(color, 0, '#4581FF')}
/>
</Svg>
);
};
IconGouwu.defaultProps = {
size: 18,
};
IconGouwu = React.memo ? React.memo(IconGouwu) : IconGouwu;
export default IconGouwu;