Note that Koobiq Icons is an optional package and must be installed manually.

We are excited to introduce the updated icon package! We want to keep the package name @koobiq/icons and allow a smooth migration (using both packages in a project simultaneously).

The new version of icons is available on GitHub as @koobiq/icons@9.0.0.

The old icon set will now be called @koobiq/icons-lts.

npm install @koobiq/icons --save

Then import the styles:

@use '@koobiq/icons/fonts/kbq-icons.css';

And import KbqIconModule into your module:

import { KbqIconModule } from '@koobiq/components';

If *.css is not used in your project, you can also use one of these alternatives:

  • kbq-icons.less;
  • kbq-icons.scss;
  • kbq-icons-embed.css (includes embedded fonts)

There are two ways to use icons:

  1. Add the [color] attribute using one of the following values: theme, contrast, contrast-fade, error, warning, success.
<i kbq-icon="kbq-gear_16" [color]="'contrast'"></i>
  1. The simpler way:
<i class="kbq kbq-gear_16"></i>
Docs Feedback
If you have any questions or would like to contribute to writing the documentation, please create an issue in our GitHub repository.