32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
/* eslint-disable */
|
|
|
|
import React from 'react';
|
|
import { getIconColor } from './helper';
|
|
|
|
const DEFAULT_STYLE = {
|
|
display: 'block',
|
|
};
|
|
|
|
const IconJizhumima = ({ 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="M36.571429 36.571429m146.285714 0l658.285714 0q146.285714 0 146.285714 146.285714l0 658.285714q0 146.285714-146.285714 146.285714l-658.285714 0q-146.285714 0-146.285714-146.285714l0-658.285714q0-146.285714 146.285714-146.285714Z"
|
|
fill={getIconColor(color, 0, '#337FFF')}
|
|
/>
|
|
<path
|
|
d="M722.358857 262.144a54.857143 54.857143 0 0 1 93.988572 56.32l-2.706286 4.534857-292.571429 438.857143a54.857143 54.857143 0 0 1-80.457143 11.995429l-3.986285-3.657143-219.428572-219.428572a54.857143 54.857143 0 0 1 73.435429-81.334857l4.169143 3.766857 172.068571 172.105143 255.488-383.158857z"
|
|
fill={getIconColor(color, 1, '#FFFFFF')}
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
IconJizhumima.defaultProps = {
|
|
size: 18,
|
|
};
|
|
|
|
export default IconJizhumima;
|