2020-09-18 04:15:01 +00:00
|
|
|
import warning from '../_util/warning';
|
2020-11-01 07:03:33 +00:00
|
|
|
import { withInstall } from '../_util/type';
|
2020-09-18 04:15:01 +00:00
|
|
|
|
|
|
|
const Icon = () => {
|
|
|
|
warning(false, 'Icon', 'Empty Icon');
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
Icon.displayName = 'AIcon';
|
|
|
|
|
2020-11-01 07:03:33 +00:00
|
|
|
export default withInstall(Icon);
|