ngx-fizz
Version:
Rich Animated icon set for AngularIO operated by animeJS engine
22 lines (18 loc) • 456 B
text/typescript
import {
Component,
OnInit,
} from '@angular/core';
import { ChevronIcon } from '../../core';
({
selector: 'fiz-chevron-bottom',
templateUrl: './fiz-chevron-bottom.component.html',
styleUrls: ['./fiz-chevron-bottom.component.scss'],
})
export class FizChevronBottomComponent extends ChevronIcon implements OnInit {
public rotationDegree = 180;
constructor() {
super();
}
public ngOnInit() {
}
}