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