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