https://github.com/avmaisak/ngx-simple-icons
Angular module for SimpleIcons.org - Over 2000 Free SVG icons for popular brands.
https://github.com/avmaisak/ngx-simple-icons
angular angular-icons brand-assets brand-colors brand-icons branding branding-assets brands company-brands design design-assets icon-pack icon-packs iconset logo logos svg svg-files svg-icons
Last synced: 5 months ago
JSON representation
Angular module for SimpleIcons.org - Over 2000 Free SVG icons for popular brands.
- Host: GitHub
- URL: https://github.com/avmaisak/ngx-simple-icons
- Owner: avmaisak
- Created: 2021-12-06T05:38:26.000Z (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2022-04-10T07:13:44.000Z (over 3 years ago)
- Last Synced: 2025-04-15T03:19:03.001Z (6 months ago)
- Topics: angular, angular-icons, brand-assets, brand-colors, brand-icons, branding, branding-assets, brands, company-brands, design, design-assets, icon-pack, icon-packs, iconset, logo, logos, svg, svg-files, svg-icons
- Language: TypeScript
- Homepage: https://simpleicons.org
- Size: 2.73 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
Angular Module for SimpleIcons
Over 2100 Free SVG icons for popular brands. See them all on one page at SimpleIcons.org. Contributions, corrections & requests can be made on GitHub.## Installation
```
npm i ngx-simple-icons --save
```## Usage
### Import module
```typescript
import { NgxSimpleIconsModule } from 'ngx-simple-icons';
```### Import needed icons
```typescript
import { activision, adobexd } from 'ngx-simple-icons';
```### Use method pick for using selected icons
```typescript
import {
NgxSimpleIconsModule,
activision,
adobexd,
} from 'ngx-simple-icons';@NgModule ({
imports: [
NgxSimpleIconsModule.pick({ activision, adobexd })
],
})
MyModule
```### Usage in component
```html
```
In component, you can use Enum or Type
```typescript
import { IconNameEnum } from 'ngx-simple-icons';public iconNames = IconNameEnum;
``````html
```