/* tslint:disable */ /* eslint-disable */ import React, { FunctionComponent } from 'react'; import { ViewProps } from 'react-native'; import { GProps } from 'react-native-svg'; import IconYoufang from './IconYoufang'; import IconXiala from './IconXiala'; import IconShang from './IconShang'; import IconMinus from './IconMinus'; import IconLajitong from './IconLajitong'; import IconJia from './IconJia'; import IconBianji from './IconBianji'; import IconXuanze from './IconXuanze'; import IconXuanze1 from './IconXuanze1'; import IconJiahao from './IconJiahao'; import IconShanchuanniu from './IconShanchuanniu'; import IconShanchu from './IconShanchu'; import IconSousuo from './IconSousuo'; import IconGouwuchekong from './IconGouwuchekong'; import IconGouwucheman from './IconGouwucheman'; import IconGengduo2 from './IconGengduo2'; import IconLoudou from './IconLoudou'; import IconTreeLine from './IconTreeLine'; import IconTreeFill from './IconTreeFill'; import IconGengduo from './IconGengduo'; import IconIconXialaxuanze from './IconIconXialaxuanze'; import IconShangla1 from './IconShangla1'; import IconXuexihuodong from './IconXuexihuodong'; import IconGongzuotai from './IconGongzuotai'; import IconArea from './IconArea'; import IconShouye from './IconShouye'; import IconSolidPerson from './IconSolidPerson'; import IconKaishi from './IconKaishi'; import IconLocation from './IconLocation'; import IconJieshu from './IconJieshu'; import IconYuandian from './IconYuandian'; import IconIconfontLeft from './IconIconfontLeft'; export type IconNames = 'youfang' | 'xiala' | 'shang' | 'minus' | 'lajitong' | 'jia' | 'bianji' | 'xuanze' | 'xuanze1' | 'jiahao' | 'shanchuanniu' | 'shanchu' | 'sousuo' | 'gouwuchekong' | 'gouwucheman' | 'gengduo-2' | 'loudou' | 'tree_line' | 'tree_fill' | 'gengduo-' | 'icon_xialaxuanze' | 'shangla1' | 'xuexihuodong-' | 'gongzuotai' | 'area' | 'shouye' | 'solid-person' | 'kaishi' | 'location' | 'jieshu' | 'yuandian' | 'iconfont-left'; interface Props extends GProps, ViewProps { name: IconNames; size?: number; color?: string | string[]; } let IconFont: FunctionComponent = ({ name, ...rest }) => { switch (name) { case 'youfang': return ; case 'xiala': return ; case 'shang': return ; case 'minus': return ; case 'lajitong': return ; case 'jia': return ; case 'bianji': return ; case 'xuanze': return ; case 'xuanze1': return ; case 'jiahao': return ; case 'shanchuanniu': return ; case 'shanchu': return ; case 'sousuo': return ; case 'gouwuchekong': return ; case 'gouwucheman': return ; case 'gengduo-2': return ; case 'loudou': return ; case 'tree_line': return ; case 'tree_fill': return ; case 'gengduo-': return ; case 'icon_xialaxuanze': return ; case 'shangla1': return ; case 'xuexihuodong-': return ; case 'gongzuotai': return ; case 'area': return ; case 'shouye': return ; case 'solid-person': return ; case 'kaishi': return ; case 'location': return ; case 'jieshu': return ; case 'yuandian': return ; case 'iconfont-left': return ; } return null; }; IconFont = React.memo ? React.memo(IconFont) : IconFont; export default IconFont;