/* tslint:disable */ /* eslint-disable */ import React, { CSSProperties, SVGAttributes, FunctionComponent } from 'react'; import { getIconColor } from './helper'; interface Props extends Omit, 'color'> { size?: number; color?: string | string[]; } const DEFAULT_STYLE: CSSProperties = { display: 'block', }; const IconXinzeng: FunctionComponent = ({ size, color, style: _style, ...rest }) => { const style = _style ? { ...DEFAULT_STYLE, ..._style } : DEFAULT_STYLE; return ( ); }; IconXinzeng.defaultProps = { size: 18, }; export default IconXinzeng;