mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-29 18:48:32 +08:00
12 lines
229 B
Vue
12 lines
229 B
Vue
import warning from '../_util/warning';
|
|
import { withInstall } from '../_util/type';
|
|
|
|
const Icon = () => {
|
|
warning(false, 'Icon', 'Empty Icon');
|
|
return null;
|
|
};
|
|
|
|
Icon.displayName = 'AIcon';
|
|
|
|
export default withInstall(Icon);
|