@semantic-icons/bootstrap-icons
v0.52.0
Published
Icons generated based on bootstrap-icons v1.13.1
Maintainers
Readme
@semantic-icons/bootstrap-icons
@semantic-icons/bootstrap-icons helps developers to use Bootstrap icons inside Angular projects.
Supported versions
| @semantic-icons/bootstrap-icons | Angular | Bootstrap-icons | | ------------------------------- | --------- | --------------- | | 0.x.x | >= 17.1.0 | 1.11.3 |
Usage
First, install @semantic-icons/bootstrap-icons from npm:
npm install @semantic-icons/bootstrap-iconsNow each icon can be imported individually as an Angular component:
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
import { SiBalloonIcon } from '@semantic-icons/bootstrap-icons';
@Component({
selector: 'app-home-page',
standalone: true,
imports: [SiBalloonIcon],
template: `
<svg class="text-blue-500 size-6" si-balloon-icon></svg>
`,
styles: ``,
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export default class HomePage {}The icons can be imported from @semantic-icons/bootstrap-icons.
Icons use the Angular naming convention and are always prefixed with the word si and suffixed with the word icon.
License
MIT © 2024-2025 Khalil LAGRIDA
