Socket
Book a DemoInstallSign in
Socket

@semantic-icons/bootstrap-icons

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-icons/bootstrap-icons

Icons generated based on bootstrap-icons v1.13.1

latest
Source
npmnpm
Version
0.52.0
Version published
Maintainers
1
Created
Source

@semantic-icons/bootstrap-icons

@semantic-icons/bootstrap-icons helps developers to use Bootstrap icons inside Angular projects.

Supported versions

@semantic-icons/bootstrap-iconsAngularBootstrap-icons
0.x.x>= 17.1.01.11.3

Usage

First, install @semantic-icons/bootstrap-icons from npm:

npm install @semantic-icons/bootstrap-icons

Now 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

Keywords

bootstrap-icons

FAQs

Package last updated on 21 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts