/* eslint-disable */ import { SVGAttributes, FunctionComponent } from 'react'; export { default as IconSwitch } from './IconSwitch'; export { default as IconShuaxin } from './IconShuaxin'; export { default as IconProxy } from './IconProxy'; export { default as IconClose } from './IconClose'; export { default as IconAddCircle } from './IconAddCircle'; export { default as IconAdjustment } from './IconAdjustment'; export { default as IconApp } from './IconApp'; export { default as IconArrowDown } from './IconArrowDown'; export { default as IconArrowDownCircle } from './IconArrowDownCircle'; export { default as IconArrowLeft } from './IconArrowLeft'; export { default as IconArrowLeftCircle } from './IconArrowLeftCircle'; export { default as IconArrowRight } from './IconArrowRight'; interface Props extends Omit, 'color'> { name: 'switch' | 'shuaxin' | 'proxy' | 'close' | 'add-circle' | 'adjustment' | 'app' | 'arrow-down' | 'arrow-down-circle' | 'arrow-left' | 'arrow-left-circle' | 'arrow-right'; size?: number; color?: string | string[]; } declare const IconFont: FunctionComponent; export default IconFont;