@svg-animated-icons/angular
v0.1.2
Published
Animated SVG icon Angular components.
Readme
@svg-animated-icons/angular
Animated SVG icon Angular standalone components.
Install
npm install @svg-animated-icons/angularUsage
import { Component } from "@angular/core";
import { ArrowDownIcon } from "@svg-animated-icons/angular";
@Component({
selector: "app-root",
standalone: true,
imports: [ArrowDownIcon],
template: `<ai-arrow-down />`,
})
export class AppComponent {}Each component animates on hover by default. Pass disableHover to opt out:
<ai-arrow-down [disableHover]="true" />