28 lines
1004 B
JavaScript
28 lines
1004 B
JavaScript
/* eslint-disable */
|
|
|
|
import React from 'react';
|
|
import { getIconColor } from './helper';
|
|
|
|
const DEFAULT_STYLE = {
|
|
display: 'block',
|
|
};
|
|
|
|
const IconShanchusousuoxinxi = ({ size, color, style: _style, ...rest }) => {
|
|
const style = _style ? { ...DEFAULT_STYLE, ..._style } : DEFAULT_STYLE;
|
|
|
|
return (
|
|
<svg viewBox="0 0 1024 1024" width={size + 'rem'} height={size + 'rem'} style={style} {...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.136 257.6A32 32 0 1 0 353.6 398.88L466.752 512l-113.136 113.136a32 32 0 0 0-1.872 43.216l1.872 2.032a32 32 0 0 0 45.248 0L512 557.248l113.136 113.136a32 32 0 0 0 43.216 1.872l2.032-1.872a32 32 0 0 0 0-45.248L557.248 512l113.136-113.136a32 32 0 0 0 1.872-43.216L670.4 353.6a32 32 0 0 0-45.248 0L512 466.752z"
|
|
fill={getIconColor(color, 0, '#000000')}
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
IconShanchusousuoxinxi.defaultProps = {
|
|
size: 18,
|
|
};
|
|
|
|
export default IconShanchusousuoxinxi;
|