/* eslint-disable */ import React from 'react'; import { Svg, Path } from 'react-native-svg'; import { getIconColor } from './helper'; let IconShouhouzhongxin = ({ size, color, ...rest }) => { return ( ); }; IconShouhouzhongxin.defaultProps = { size: 18, }; IconShouhouzhongxin = React.memo ? React.memo(IconShouhouzhongxin) : IconShouhouzhongxin; export default IconShouhouzhongxin;