/* eslint-disable */ import React from 'react'; import { getIconColor } from './helper'; const DEFAULT_STYLE = { display: 'block', }; const IconBiyan = ({ size, color, style: _style, ...rest }) => { const style = _style ? { ...DEFAULT_STYLE, ..._style } : DEFAULT_STYLE; return ( ); }; IconBiyan.defaultProps = { size: 18, }; export default IconBiyan;