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