2023-03-31 21:45:03 +00:00
|
|
|
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
|
|
import { Icon } from '../index';
|
|
|
|
|
|
|
|
declare class AngleDoubleDownIcon extends Icon {}
|
|
|
|
|
2024-03-14 22:58:11 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2023-03-31 21:45:03 +00:00
|
|
|
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AngleDoubleDownIcon;
|