2022-12-08 16:58:54 +08:00

26 lines
1.0 KiB
JavaScript

/* eslint-disable */
import React from 'react';
import { Svg, Path } from 'react-native-svg';
import { getIconColor } from './helper';
let IconShuru = ({ size, color, ...rest }) => {
return (
<Svg viewBox="0 0 1024 1024" width={size} height={size} {...rest}>
<Path
d="M896 864c0 17.664-14.336 32-32 32H160a32 32 0 0 1 0-64h704c17.664 0 32 14.336 32 32zM740.224 174.5408l45.2352 45.2352a64 64 0 0 1 0 90.5216L353.9456 741.8112a64 64 0 0 1-43.9296 18.7392l-79.5392 1.6128a32 32 0 0 1-32.64-31.3344v-1.3056l1.6128-79.5392a64 64 0 0 1 18.7392-43.9296L649.728 174.5408a64 64 0 0 1 90.5216 0z m-158.1056 158.0288l-318.6688 318.72-0.9216 46.1824 46.1824-0.9216L627.712 377.472l-45.6192-44.9024z m112.8448-112.7936l-67.584 67.5328 45.6192 44.9024 67.2256-67.1744-45.2608-45.2608z"
fill={getIconColor(color, 0, '#333333')}
opacity=".8"
/>
</Svg>
);
};
IconShuru.defaultProps = {
size: 18,
};
IconShuru = React.memo ? React.memo(IconShuru) : IconShuru;
export default IconShuru;