2019-01-12 03:33:27 +00:00
|
|
|
import warning from '../_util/warning';
|
2018-11-17 07:57:38 +00:00
|
|
|
|
|
|
|
const Icon = {
|
|
|
|
name: 'AIcon',
|
2020-03-23 10:42:39 +00:00
|
|
|
render() {
|
|
|
|
warning(false, 'Icon', 'Empty Icon');
|
|
|
|
return null;
|
2018-11-17 07:57:38 +00:00
|
|
|
},
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-11-17 07:57:38 +00:00
|
|
|
|
2018-09-19 05:21:57 +00:00
|
|
|
/* istanbul ignore next */
|
2020-06-22 14:50:10 +00:00
|
|
|
Icon.install = function(app) {
|
|
|
|
app.component(Icon.name, Icon);
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-09-19 05:21:57 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
export default Icon;
|