0.0.3 • Published 4 years ago

ngx-file-icons v0.0.3

Weekly downloads
120
License
MIT
Repository
github
Last release
4 years ago

Ngx File Icons

An angular library to display file icons according to their extension based on file-icon-vectors.

Installation

Using npm:

$ npm install --save ngx-file-icons

Usage

  1. Add FileIconsModule to imports in AppModule:
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";

// NGX File Icons
import { FileIconsModule } from "ngx-file-icons";

// Components
import { AppComponent } from "./app.component";

@NgModule({
  imports: [BrowserModule, FileIconsModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}
  1. Add file-icon to app.component.html:
<file-icon [set]="cla" [type]="pdf" [size]="xl"></file-icon>
  1. Define attributes in app.component.ts:
import { Component } from "@angular/core";

@Component({
  selector: "app-root",
  templateUrl: "./app.component.html",
})
export class AppComponent {
  cla = "classic";
  pdf = "pdf";
  xl = "xl";
}