npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angular-tabler-icons

v3.1.0

Published

Tabler Icons components library for your Angular applications

Downloads

15,197

Readme

angular-tabler-icons

tabler-icons-version license downloads

Description

This package allows you to use the Tabler Icons in your angular applications. Tabler Icons is a set of free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px stroke.

Inspired by angular-feather, thank you to the author.

Usage

1. Install the package

npm install angular-tabler-icons
# or
yarn add angular-tabler-icons

2. Generate a module to host the icons you'll import

ng generate module icons

3. Import assets

You need to import:

  • TablerIconsModule, as it contains the <i-tabler> component
  • The icons that you need

We put this in IconsModule for modularity. See example below:

file: icon.module.ts

import { NgModule } from '@angular/core';

import { TablerIconsModule } from 'angular-tabler-icons';
import { IconCamera, IconHeart, IconBrandGithub } from 'angular-tabler-icons/icons';

// Select some icons (use an object, not an array)
const icons = {
  IconCamera,
  IconHeart,
  IconBrandGithub
};

@NgModule({
  imports: [
    TablerIconsModule.pick(icons)
  ],
  exports: [
    TablerIconsModule
  ]
})
export class IconsModule { }

// NOTES:
// 1. We add TablerIconsModule to the 'exports', since the <i-tabler> component will be used in templates of parent module
// 2. Don't forget to pick some icons using TablerIconsModule.pick({ ... })

4. Import IconsModule

If you are using NgModules, import it this way:

import { NgModule } from "@angular/core";
import { MyComponent } from './my/my.component';
import { IconsModule } from "./icons.module";

@NgModule({
  declarations: [MyComponent],
  imports: [
    IconsModule, // <--- Here
  ],
})
export class MyModule {}

If you are using Standalone Components, import it this way:

import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
import { IconsModule } from './icons.module';

@Component({
  selector: 'app-my',
  standalone: true,
  imports: [CommonModule, RouterOutlet, IconsModule], // <--- Here
  templateUrl: './my.component.html',
  styleUrls: ['./my.component.scss']
})
export class MyComponent {}

5. Use it in template

After importing the IconsModule in your feature or shared module, use the icons as follows:

<i-tabler name="camera"></i-tabler>
<i-tabler name="heart" style="color: red;"></i-tabler>
<i-tabler name="heart-filled" style="color: red;"></i-tabler>
<i-tabler name="brand-github" class="someclass"></i-tabler>

Available icons

List of available icons: https://tabler.io/icons

This version includes Tabler Icons v3.1.0, see changelog to know which icons are available.

Styling icons

Each icon can be styled separately with CSS:

<i-tabler name="camera" class="big fill-red stroke-blue thin"></i-tabler>
.big {
  height: 50px;
  width: 50px;
}

.fill-red {
  fill: red;
}

.stroke-blue {
  color: blue;
}

.thin {
  stroke-width: 1px;
}

Options

Some options are available to configure the module:

import { environment } from '../environments/environment';
import { TablerIconsModule } from 'angular-tabler-icons';
import * as TablerIcons from 'angular-tabler-icons/icons';

@NgModule({
  imports: [
    TablerIconsModule.pick(TablerIcons, {

      // Ignore warnings, such as "Tabler Icon not found", for example:
      //   ignoreWarnings: environment.production,
      ignoreWarnings: true,

    })
  ],
  exports: [
    TablerIconsModule
  ]
})
export class IconsModule { }

Pick all icons

You can import all icons at once by doing the following. However, keep in mind that by doing this, all icons will end up in your application bundle. While this may not be much of an issue for prototyping, it is not recommended for any application that you plan to release.

import { TablerIconsModule } from 'angular-tabler-icons';
import * as TablerIcons from 'angular-tabler-icons/icons';

@NgModule({
  imports: [
    TablerIconsModule.pick(TablerIcons)
  ],
  exports: [
    TablerIconsModule
  ]
})
export class IconsModule { }

Angular version compatibility

| Angular | angular-tabler-icons | |---------|----------------------| | 17 | 2.40.1+ | | 16 | 2.21.1+ | | 15 | 1.117.1+ | | 14 | 1.72.1+ | | 13 | 1.53.1+ | | 12 | 1.41.3+ | | 11 | 1.41.0+ |

Contributing

Feel free to report issues or to contibute to this project!
Here are few tips to start:

$ yarn lib:generate  # generate components from Tabler Icons
$ yarn lib:build  # build angular library

How to rebuild for newer tabler icons version

  1. Run GitHub actions workflow Automatic PR on Tabler Icons Release, with new Tabler Icons version (e.g. 2.40.0). This workflow will create automatically a new Pull Request.
  2. Approve and Merge the generated Pull Request.
  3. Create a release/tag with the new Tabler Icons version.

Package is automatically rebuilt and published, with the GitHub actions workflow Build and Publish package.