import { IconsProps } from '@kite_aerolab/shared/components'; import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core'; export declare class IconComponent implements IconsProps, AfterViewInit { svgContainer: ElementRef; /** * CSS del ícono */ class: string; /** * CSS del ícono */ css: IconsProps['css']; /** * Tamaño del ícono */ size: IconsProps['size']; /** * Nombre del ícono */ name: IconsProps['name']; /** * Optional click handler */ onClick: EventEmitter; /** * Aria Label */ ariaLabel: string; get icon(): string[]; appendSVG(svg?: string): void; ngAfterViewInit(): void; } //# sourceMappingURL=icon.component.d.ts.map