26 lines
985 B
JavaScript
26 lines
985 B
JavaScript
/* eslint-disable */
|
|
|
|
import React from 'react';
|
|
import { Svg, Path } from 'react-native-svg';
|
|
import { getIconColor } from './helper';
|
|
|
|
let IconQingchuxinxi = ({ size, color, ...rest }) => {
|
|
return (
|
|
<Svg viewBox="0 0 1024 1024" width={size} height={size} {...rest}>
|
|
<Path
|
|
d="M512 96c229.76 0 416 186.24 416 416S741.76 928 512 928 96 741.76 96 512 282.24 96 512 96z m-113.152 257.6128a32 32 0 1 0-45.2352 45.2608L466.7392 512l-113.152 113.152a32 32 0 0 0-2.304 42.6496l2.304 2.5856a32 32 0 0 0 45.2864 0L512 557.2608l113.152 113.152a32 32 0 0 0 42.6496 2.304l2.5856-2.304a32 32 0 0 0 0-45.2864L557.2608 512l113.152-113.152a32 32 0 0 0 2.304-42.6496l-2.304-2.5856a32 32 0 0 0-45.2864 0L512 466.7392z"
|
|
fill={getIconColor(color, 0, '#000000')}
|
|
opacity=".3"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
|
|
IconQingchuxinxi.defaultProps = {
|
|
size: 18,
|
|
};
|
|
|
|
IconQingchuxinxi = React.memo ? React.memo(IconQingchuxinxi) : IconQingchuxinxi;
|
|
|
|
export default IconQingchuxinxi;
|