32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
/* eslint-disable */
|
|
|
|
import React from 'react';
|
|
import { getIconColor } from './helper';
|
|
|
|
const DEFAULT_STYLE = {
|
|
display: 'block',
|
|
};
|
|
|
|
const IconDaipeibu2 = ({ 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="M864 496v317.088A34.912 34.912 0 0 1 829.088 848H290.912A34.912 34.912 0 0 1 256 813.088V496h608zM256 274.912c0-19.28 15.632-34.912 34.912-34.912h538.176c19.28 0 34.912 15.632 34.912 34.912V432H256v-157.088z"
|
|
fill={getIconColor(color, 0, '#407BF4')}
|
|
/>
|
|
<path
|
|
d="M240 144a16 16 0 0 1 16 16v668.112c7.84 5.28 14.624 12.032 19.888 19.888H864a32 32 0 0 1 32 32v16a32 32 0 0 1-32 32H275.872A72 72 0 1 1 176 828.144V224L128 224a16 16 0 0 1-16-16v-48a16 16 0 0 1 16-16h112z"
|
|
fill={getIconColor(color, 1, '#8EBAFB')}
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
IconDaipeibu2.defaultProps = {
|
|
size: 18,
|
|
};
|
|
|
|
export default IconDaipeibu2;
|