index.js 233 B

12345678
  1. import warning from '../_util/warning';
  2. import { withInstall } from '../_util/type';
  3. var Icon = function Icon() {
  4. warning(false, 'Icon', 'Empty Icon');
  5. return null;
  6. };
  7. Icon.displayName = 'AIcon';
  8. export default withInstall(Icon);