angular-feather
Version:
Feather Icons components library for your Angular Applications
11 lines (10 loc) • 408 B
TypeScript
import { ElementRef, ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
import { Icons } from './icons.provider';
export declare class FeatherComponent implements OnChanges {
private elem;
private changeDetector;
private icons;
name: string;
constructor(elem: ElementRef, changeDetector: ChangeDetectorRef, icons: Icons);
ngOnChanges(changes: SimpleChanges): void;
}