UNPKG

angular-icon-morphing

Version:

Angular library to animate icons with smooth morphing animation

17 lines (16 loc) 537 B
import { AfterContentInit, ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core'; export declare class IconComponent implements OnInit, AfterContentInit, OnChanges { constructor(); startIcon: ElementRef; endIcon: ElementRef; iconContainer: ElementRef; active: boolean; easing: string; duration: number; svgMorpheus: any; containerId: string; ngOnInit(): void; ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): void; doTransition(): void; }