30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
/* eslint-disable */
|
|
|
|
import React from 'react';
|
|
import { Svg, Path } from 'react-native-svg';
|
|
import { getIconColor } from './helper';
|
|
|
|
let IconShouhouzhongxin = ({ size, color, ...rest }) => {
|
|
return (
|
|
<Svg viewBox="0 0 1024 1024" width={size} height={size} {...rest}>
|
|
<Path
|
|
d="M848 384a32 32 0 0 1 32 32v448a32 32 0 0 1-32 32H176a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h672z m-376.448 112H384l11.264 13.312 68.608 132.608h-71.168l-6.656 48.64h77.312l-13.312 95.232h77.824l13.312-95.232h77.824l6.656-48.64h-71.168L670.72 496h-83.504l-71.12 98.816L471.552 496z"
|
|
fill={getIconColor(color, 0, '#4581FF')}
|
|
/>
|
|
<Path
|
|
d="M335.536 148.56a32 32 0 0 1 35.12 53.44l-2.192 1.44L307.488 240H832a32 32 0 0 1 31.92 29.6L864 272a32 32 0 0 1-29.6 31.92L832 304H192c-31.616 0-43.68-40.576-18.528-58.112l2.064-1.328 160-96z"
|
|
fill={getIconColor(color, 1, '#4581FF')}
|
|
opacity=".4"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
|
|
IconShouhouzhongxin.defaultProps = {
|
|
size: 18,
|
|
};
|
|
|
|
IconShouhouzhongxin = React.memo ? React.memo(IconShouhouzhongxin) : IconShouhouzhongxin;
|
|
|
|
export default IconShouhouzhongxin;
|