import React from 'react'; import styles from './styles.less'; import config from './config'; const CustomIcon = props =>{ const {isChecked,type}=props; const iconObj=config[type]; return( iconObj?icon:null ) }; export default CustomIcon