13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
|
import { Icon } from '../../icons/index';
|
||
|
import { GlobalComponentConstructor } from '../../ts-helpers';
|
||
|
|
||
|
declare class PlusIcon extends Icon {}
|
||
|
|
||
|
declare module '@vue/runtime-core' {
|
||
|
interface GlobalComponents {
|
||
|
PlusIcon: GlobalComponentConstructor<PlusIcon>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PlusIcon;
|