13 lines
334 B
TypeScript
13 lines
334 B
TypeScript
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
import { Icon } from '../index';
|
|
|
|
declare class AngleDoubleDownIcon extends Icon {}
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
|
|
}
|
|
}
|
|
|
|
export default AngleDoubleDownIcon;
|