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