angular-tabler-icons

Tabler Icons components library for your Angular applications

Usage no npm install needed!

<script type="module">
  import angularTablerIcons from 'https://cdn.skypack.dev/angular-tabler-icons';
</script>

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 over 1500 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. 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="brand-github" class="someclass"></i-tabler>

Available icons

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

This version includes Tabler Icons v1.54.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;
}

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 { }

Contributing

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

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

How to rebuild for newer tabler icons version

  1. Run GitHub action workflow Automatic PR on Tabler Icons Release, with new Tabler Icons version (e.g. 1.44.0). This workflow will create automatically a new Pull Request.
  2. Approve and Merge the generated Pull Request. Library is automatically rebuilt and package published, with the GItHub action workflow Build and Publish package.
  3. Create a release with the new Tabler Icons version.