An open API service indexing awesome lists of open source software.

https://github.com/michaelbazos/angular-feather

A-la-carte integration of Feather Icons in Angular applications
https://github.com/michaelbazos/angular-feather

angular angular2 feather icon-set icon-system icons library

Last synced: 7 months ago
JSON representation

A-la-carte integration of Feather Icons in Angular applications

Awesome Lists containing this project

README

          

## angular-feather




### Description

This package allows you to use the [Feather Icons](https://github.com/colebemis/feather) in your angular applications. The icons are designed by Cole Bemis.
Import only the icons that you need.

### Demo



>> See live demo <<
(right-click, open in new tab)

### Usage

_1. Install the package_

```sh
npm install angular-feather
```

_2. Generate a module to host the icons you'll import_

```sh
ng generate module icons
```

_3. Import assets_

You need to import:
- FeatherModule, as it contains the `` component
- The SVGs that you need

We put this in IconsModule for modularity. See example below:

*file: icon.module.ts*
```ts
import { NgModule } from '@angular/core';

import { FeatherModule } from 'angular-feather';
import { Camera, Heart, Github } from 'angular-feather/icons';

// Select some icons (use an object, not an array)
const icons = {
Camera,
Heart,
Github
};

@NgModule({
imports: [
FeatherModule.pick(icons)
],
exports: [
FeatherModule
]
})
export class IconsModule { }

// NOTES:
// 1. We add FeatherModule to the 'exports', since the component will be used in templates of parent module
// 2. Don't forget to pick some icons using FeatherModule.pick({ ... })
```

_3. Use it in template_

After importing the _IconsModule_ in your feature or shared module, use the icons as follows:

```html

```

### Styling icons

```html

```

```css
.big {
height: 50px;
width: 50px;
}

.fill-red {
fill: red;
}
```

### Available icons

Refer to the table below for the list of all available icons.

| | Symbol to import | HTML template |
| --- | ---------------- | ------------------ |
| ![activity](https://unpkg.com/feather-icons@4.29.0/dist/icons/activity.svg) | `Activity` | `` |
| ![airplay](https://unpkg.com/feather-icons@4.29.0/dist/icons/airplay.svg) | `Airplay` | `` |
| ![alert-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-circle.svg) | `AlertCircle` | `` |
| ![alert-octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-octagon.svg) | `AlertOctagon` | `` |
| ![alert-triangle](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-triangle.svg) | `AlertTriangle` | `` |
| ![align-center](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-center.svg) | `AlignCenter` | `` |
| ![align-justify](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-justify.svg) | `AlignJustify` | `` |
| ![align-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-left.svg) | `AlignLeft` | `` |
| ![align-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-right.svg) | `AlignRight` | `` |
| ![anchor](https://unpkg.com/feather-icons@4.29.0/dist/icons/anchor.svg) | `Anchor` | `` |
| ![aperture](https://unpkg.com/feather-icons@4.29.0/dist/icons/aperture.svg) | `Aperture` | `` |
| ![archive](https://unpkg.com/feather-icons@4.29.0/dist/icons/archive.svg) | `Archive` | `` |
| ![arrow-down-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-circle.svg) | `ArrowDownCircle` | `` |
| ![arrow-down-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-left.svg) | `ArrowDownLeft` | `` |
| ![arrow-down-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-right.svg) | `ArrowDownRight` | `` |
| ![arrow-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down.svg) | `ArrowDown` | `` |
| ![arrow-left-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-left-circle.svg) | `ArrowLeftCircle` | `` |
| ![arrow-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-left.svg) | `ArrowLeft` | `` |
| ![arrow-right-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-right-circle.svg) | `ArrowRightCircle` | `` |
| ![arrow-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-right.svg) | `ArrowRight` | `` |
| ![arrow-up-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-circle.svg) | `ArrowUpCircle` | `` |
| ![arrow-up-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-left.svg) | `ArrowUpLeft` | `` |
| ![arrow-up-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-right.svg) | `ArrowUpRight` | `` |
| ![arrow-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up.svg) | `ArrowUp` | `` |
| ![at-sign](https://unpkg.com/feather-icons@4.29.0/dist/icons/at-sign.svg) | `AtSign` | `` |
| ![award](https://unpkg.com/feather-icons@4.29.0/dist/icons/award.svg) | `Award` | `` |
| ![bar-chart-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/bar-chart-2.svg) | `BarChart2` | `` |
| ![bar-chart](https://unpkg.com/feather-icons@4.29.0/dist/icons/bar-chart.svg) | `BarChart` | `` |
| ![battery-charging](https://unpkg.com/feather-icons@4.29.0/dist/icons/battery-charging.svg) | `BatteryCharging` | `` |
| ![battery](https://unpkg.com/feather-icons@4.29.0/dist/icons/battery.svg) | `Battery` | `` |
| ![bell-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/bell-off.svg) | `BellOff` | `` |
| ![bell](https://unpkg.com/feather-icons@4.29.0/dist/icons/bell.svg) | `Bell` | `` |
| ![bluetooth](https://unpkg.com/feather-icons@4.29.0/dist/icons/bluetooth.svg) | `Bluetooth` | `` |
| ![bold](https://unpkg.com/feather-icons@4.29.0/dist/icons/bold.svg) | `Bold` | `` |
| ![book-open](https://unpkg.com/feather-icons@4.29.0/dist/icons/book-open.svg) | `BookOpen` | `` |
| ![book](https://unpkg.com/feather-icons@4.29.0/dist/icons/book.svg) | `Book` | `` |
| ![bookmark](https://unpkg.com/feather-icons@4.29.0/dist/icons/bookmark.svg) | `Bookmark` | `` |
| ![box](https://unpkg.com/feather-icons@4.29.0/dist/icons/box.svg) | `Box` | `` |
| ![briefcase](https://unpkg.com/feather-icons@4.29.0/dist/icons/briefcase.svg) | `Briefcase` | `` |
| ![calendar](https://unpkg.com/feather-icons@4.29.0/dist/icons/calendar.svg) | `Calendar` | `` |
| ![camera-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/camera-off.svg) | `CameraOff` | `` |
| ![camera](https://unpkg.com/feather-icons@4.29.0/dist/icons/camera.svg) | `Camera` | `` |
| ![cast](https://unpkg.com/feather-icons@4.29.0/dist/icons/cast.svg) | `Cast` | `` |
| ![check-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/check-circle.svg) | `CheckCircle` | `` |
| ![check-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/check-square.svg) | `CheckSquare` | `` |
| ![check](https://unpkg.com/feather-icons@4.29.0/dist/icons/check.svg) | `Check` | `` |
| ![chevron-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-down.svg) | `ChevronDown` | `` |
| ![chevron-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-left.svg) | `ChevronLeft` | `` |
| ![chevron-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-right.svg) | `ChevronRight` | `` |
| ![chevron-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-up.svg) | `ChevronUp` | `` |
| ![chevrons-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-down.svg) | `ChevronsDown` | `` |
| ![chevrons-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-left.svg) | `ChevronsLeft` | `` |
| ![chevrons-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-right.svg) | `ChevronsRight` | `` |
| ![chevrons-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-up.svg) | `ChevronsUp` | `` |
| ![chrome](https://unpkg.com/feather-icons@4.29.0/dist/icons/chrome.svg) | `Chrome` | `` |
| ![circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/circle.svg) | `Circle` | `` |
| ![clipboard](https://unpkg.com/feather-icons@4.29.0/dist/icons/clipboard.svg) | `Clipboard` | `` |
| ![clock](https://unpkg.com/feather-icons@4.29.0/dist/icons/clock.svg) | `Clock` | `` |
| ![cloud-drizzle](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-drizzle.svg) | `CloudDrizzle` | `` |
| ![cloud-lightning](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-lightning.svg) | `CloudLightning` | `` |
| ![cloud-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-off.svg) | `CloudOff` | `` |
| ![cloud-rain](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-rain.svg) | `CloudRain` | `` |
| ![cloud-snow](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-snow.svg) | `CloudSnow` | `` |
| ![cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud.svg) | `Cloud` | `` |
| ![code](https://unpkg.com/feather-icons@4.29.0/dist/icons/code.svg) | `Code` | `` |
| ![codepen](https://unpkg.com/feather-icons@4.29.0/dist/icons/codepen.svg) | `Codepen` | `` |
| ![codesandbox](https://unpkg.com/feather-icons@4.29.0/dist/icons/codesandbox.svg) | `Codesandbox` | `` |
| ![coffee](https://unpkg.com/feather-icons@4.29.0/dist/icons/coffee.svg) | `Coffee` | `` |
| ![columns](https://unpkg.com/feather-icons@4.29.0/dist/icons/columns.svg) | `Columns` | `` |
| ![command](https://unpkg.com/feather-icons@4.29.0/dist/icons/command.svg) | `Command` | `` |
| ![compass](https://unpkg.com/feather-icons@4.29.0/dist/icons/compass.svg) | `Compass` | `` |
| ![copy](https://unpkg.com/feather-icons@4.29.0/dist/icons/copy.svg) | `Copy` | `` |
| ![corner-down-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-down-left.svg) | `CornerDownLeft` | `` |
| ![corner-down-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-down-right.svg) | `CornerDownRight` | `` |
| ![corner-left-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-left-down.svg) | `CornerLeftDown` | `` |
| ![corner-left-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-left-up.svg) | `CornerLeftUp` | `` |
| ![corner-right-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-right-down.svg) | `CornerRightDown` | `` |
| ![corner-right-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-right-up.svg) | `CornerRightUp` | `` |
| ![corner-up-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-up-left.svg) | `CornerUpLeft` | `` |
| ![corner-up-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-up-right.svg) | `CornerUpRight` | `` |
| ![cpu](https://unpkg.com/feather-icons@4.29.0/dist/icons/cpu.svg) | `Cpu` | `` |
| ![credit-card](https://unpkg.com/feather-icons@4.29.0/dist/icons/credit-card.svg) | `CreditCard` | `` |
| ![crop](https://unpkg.com/feather-icons@4.29.0/dist/icons/crop.svg) | `Crop` | `` |
| ![crosshair](https://unpkg.com/feather-icons@4.29.0/dist/icons/crosshair.svg) | `Crosshair` | `` |
| ![database](https://unpkg.com/feather-icons@4.29.0/dist/icons/database.svg) | `Database` | `` |
| ![delete](https://unpkg.com/feather-icons@4.29.0/dist/icons/delete.svg) | `Delete` | `` |
| ![disc](https://unpkg.com/feather-icons@4.29.0/dist/icons/disc.svg) | `Disc` | `` |
| ![divide-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide-circle.svg) | `DivideCircle` | `` |
| ![divide-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide-square.svg) | `DivideSquare` | `` |
| ![divide](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide.svg) | `Divide` | `` |
| ![dollar-sign](https://unpkg.com/feather-icons@4.29.0/dist/icons/dollar-sign.svg) | `DollarSign` | `` |
| ![download-cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/download-cloud.svg) | `DownloadCloud` | `` |
| ![download](https://unpkg.com/feather-icons@4.29.0/dist/icons/download.svg) | `Download` | `` |
| ![dribbble](https://unpkg.com/feather-icons@4.29.0/dist/icons/dribbble.svg) | `Dribbble` | `` |
| ![droplet](https://unpkg.com/feather-icons@4.29.0/dist/icons/droplet.svg) | `Droplet` | `` |
| ![edit-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit-2.svg) | `Edit2` | `` |
| ![edit-3](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit-3.svg) | `Edit3` | `` |
| ![edit](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit.svg) | `Edit` | `` |
| ![external-link](https://unpkg.com/feather-icons@4.29.0/dist/icons/external-link.svg) | `ExternalLink` | `` |
| ![eye-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/eye-off.svg) | `EyeOff` | `` |
| ![eye](https://unpkg.com/feather-icons@4.29.0/dist/icons/eye.svg) | `Eye` | `` |
| ![facebook](https://unpkg.com/feather-icons@4.29.0/dist/icons/facebook.svg) | `Facebook` | `` |
| ![fast-forward](https://unpkg.com/feather-icons@4.29.0/dist/icons/fast-forward.svg) | `FastForward` | `` |
| ![feather](https://unpkg.com/feather-icons@4.29.0/dist/icons/feather.svg) | `Feather` | `` |
| ![figma](https://unpkg.com/feather-icons@4.29.0/dist/icons/figma.svg) | `Figma` | `` |
| ![file-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-minus.svg) | `FileMinus` | `` |
| ![file-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-plus.svg) | `FilePlus` | `` |
| ![file-text](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-text.svg) | `FileText` | `` |
| ![file](https://unpkg.com/feather-icons@4.29.0/dist/icons/file.svg) | `File` | `` |
| ![film](https://unpkg.com/feather-icons@4.29.0/dist/icons/film.svg) | `Film` | `` |
| ![filter](https://unpkg.com/feather-icons@4.29.0/dist/icons/filter.svg) | `Filter` | `` |
| ![flag](https://unpkg.com/feather-icons@4.29.0/dist/icons/flag.svg) | `Flag` | `` |
| ![folder-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder-minus.svg) | `FolderMinus` | `` |
| ![folder-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder-plus.svg) | `FolderPlus` | `` |
| ![folder](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder.svg) | `Folder` | `` |
| ![framer](https://unpkg.com/feather-icons@4.29.0/dist/icons/framer.svg) | `Framer` | `` |
| ![frown](https://unpkg.com/feather-icons@4.29.0/dist/icons/frown.svg) | `Frown` | `` |
| ![gift](https://unpkg.com/feather-icons@4.29.0/dist/icons/gift.svg) | `Gift` | `` |
| ![git-branch](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-branch.svg) | `GitBranch` | `` |
| ![git-commit](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-commit.svg) | `GitCommit` | `` |
| ![git-merge](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-merge.svg) | `GitMerge` | `` |
| ![git-pull-request](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-pull-request.svg) | `GitPullRequest` | `` |
| ![github](https://unpkg.com/feather-icons@4.29.0/dist/icons/github.svg) | `Github` | `` |
| ![gitlab](https://unpkg.com/feather-icons@4.29.0/dist/icons/gitlab.svg) | `Gitlab` | `` |
| ![globe](https://unpkg.com/feather-icons@4.29.0/dist/icons/globe.svg) | `Globe` | `` |
| ![grid](https://unpkg.com/feather-icons@4.29.0/dist/icons/grid.svg) | `Grid` | `` |
| ![hard-drive](https://unpkg.com/feather-icons@4.29.0/dist/icons/hard-drive.svg) | `HardDrive` | `` |
| ![hash](https://unpkg.com/feather-icons@4.29.0/dist/icons/hash.svg) | `Hash` | `` |
| ![headphones](https://unpkg.com/feather-icons@4.29.0/dist/icons/headphones.svg) | `Headphones` | `` |
| ![heart](https://unpkg.com/feather-icons@4.29.0/dist/icons/heart.svg) | `Heart` | `` |
| ![help-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/help-circle.svg) | `HelpCircle` | `` |
| ![hexagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/hexagon.svg) | `Hexagon` | `` |
| ![home](https://unpkg.com/feather-icons@4.29.0/dist/icons/home.svg) | `Home` | `` |
| ![image](https://unpkg.com/feather-icons@4.29.0/dist/icons/image.svg) | `Image` | `` |
| ![inbox](https://unpkg.com/feather-icons@4.29.0/dist/icons/inbox.svg) | `Inbox` | `` |
| ![info](https://unpkg.com/feather-icons@4.29.0/dist/icons/info.svg) | `Info` | `` |
| ![instagram](https://unpkg.com/feather-icons@4.29.0/dist/icons/instagram.svg) | `Instagram` | `` |
| ![italic](https://unpkg.com/feather-icons@4.29.0/dist/icons/italic.svg) | `Italic` | `` |
| ![key](https://unpkg.com/feather-icons@4.29.0/dist/icons/key.svg) | `Key` | `` |
| ![layers](https://unpkg.com/feather-icons@4.29.0/dist/icons/layers.svg) | `Layers` | `` |
| ![layout](https://unpkg.com/feather-icons@4.29.0/dist/icons/layout.svg) | `Layout` | `` |
| ![life-buoy](https://unpkg.com/feather-icons@4.29.0/dist/icons/life-buoy.svg) | `LifeBuoy` | `` |
| ![link-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/link-2.svg) | `Link2` | `` |
| ![link](https://unpkg.com/feather-icons@4.29.0/dist/icons/link.svg) | `Link` | `` |
| ![linkedin](https://unpkg.com/feather-icons@4.29.0/dist/icons/linkedin.svg) | `Linkedin` | `` |
| ![list](https://unpkg.com/feather-icons@4.29.0/dist/icons/list.svg) | `List` | `` |
| ![loader](https://unpkg.com/feather-icons@4.29.0/dist/icons/loader.svg) | `Loader` | `` |
| ![lock](https://unpkg.com/feather-icons@4.29.0/dist/icons/lock.svg) | `Lock` | `` |
| ![log-in](https://unpkg.com/feather-icons@4.29.0/dist/icons/log-in.svg) | `LogIn` | `` |
| ![log-out](https://unpkg.com/feather-icons@4.29.0/dist/icons/log-out.svg) | `LogOut` | `` |
| ![mail](https://unpkg.com/feather-icons@4.29.0/dist/icons/mail.svg) | `Mail` | `` |
| ![map-pin](https://unpkg.com/feather-icons@4.29.0/dist/icons/map-pin.svg) | `MapPin` | `` |
| ![map](https://unpkg.com/feather-icons@4.29.0/dist/icons/map.svg) | `Map` | `` |
| ![maximize-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/maximize-2.svg) | `Maximize2` | `` |
| ![maximize](https://unpkg.com/feather-icons@4.29.0/dist/icons/maximize.svg) | `Maximize` | `` |
| ![meh](https://unpkg.com/feather-icons@4.29.0/dist/icons/meh.svg) | `Meh` | `` |
| ![menu](https://unpkg.com/feather-icons@4.29.0/dist/icons/menu.svg) | `Menu` | `` |
| ![message-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/message-circle.svg) | `MessageCircle` | `` |
| ![message-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/message-square.svg) | `MessageSquare` | `` |
| ![mic-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/mic-off.svg) | `MicOff` | `` |
| ![mic](https://unpkg.com/feather-icons@4.29.0/dist/icons/mic.svg) | `Mic` | `` |
| ![minimize-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/minimize-2.svg) | `Minimize2` | `` |
| ![minimize](https://unpkg.com/feather-icons@4.29.0/dist/icons/minimize.svg) | `Minimize` | `` |
| ![minus-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus-circle.svg) | `MinusCircle` | `` |
| ![minus-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus-square.svg) | `MinusSquare` | `` |
| ![minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus.svg) | `Minus` | `` |
| ![monitor](https://unpkg.com/feather-icons@4.29.0/dist/icons/monitor.svg) | `Monitor` | `` |
| ![moon](https://unpkg.com/feather-icons@4.29.0/dist/icons/moon.svg) | `Moon` | `` |
| ![more-horizontal](https://unpkg.com/feather-icons@4.29.0/dist/icons/more-horizontal.svg) | `MoreHorizontal` | `` |
| ![more-vertical](https://unpkg.com/feather-icons@4.29.0/dist/icons/more-vertical.svg) | `MoreVertical` | `` |
| ![mouse-pointer](https://unpkg.com/feather-icons@4.29.0/dist/icons/mouse-pointer.svg) | `MousePointer` | `` |
| ![move](https://unpkg.com/feather-icons@4.29.0/dist/icons/move.svg) | `Move` | `` |
| ![music](https://unpkg.com/feather-icons@4.29.0/dist/icons/music.svg) | `Music` | `` |
| ![navigation-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/navigation-2.svg) | `Navigation2` | `` |
| ![navigation](https://unpkg.com/feather-icons@4.29.0/dist/icons/navigation.svg) | `Navigation` | `` |
| ![octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/octagon.svg) | `Octagon` | `` |
| ![package](https://unpkg.com/feather-icons@4.29.0/dist/icons/package.svg) | `Package` | `` |
| ![paperclip](https://unpkg.com/feather-icons@4.29.0/dist/icons/paperclip.svg) | `Paperclip` | `` |
| ![pause-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/pause-circle.svg) | `PauseCircle` | `` |
| ![pause](https://unpkg.com/feather-icons@4.29.0/dist/icons/pause.svg) | `Pause` | `` |
| ![pen-tool](https://unpkg.com/feather-icons@4.29.0/dist/icons/pen-tool.svg) | `PenTool` | `` |
| ![percent](https://unpkg.com/feather-icons@4.29.0/dist/icons/percent.svg) | `Percent` | `` |
| ![phone-call](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-call.svg) | `PhoneCall` | `` |
| ![phone-forwarded](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-forwarded.svg) | `PhoneForwarded` | `` |
| ![phone-incoming](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-incoming.svg) | `PhoneIncoming` | `` |
| ![phone-missed](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-missed.svg) | `PhoneMissed` | `` |
| ![phone-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-off.svg) | `PhoneOff` | `` |
| ![phone-outgoing](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-outgoing.svg) | `PhoneOutgoing` | `` |
| ![phone](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone.svg) | `Phone` | `` |
| ![pie-chart](https://unpkg.com/feather-icons@4.29.0/dist/icons/pie-chart.svg) | `PieChart` | `` |
| ![play-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/play-circle.svg) | `PlayCircle` | `` |
| ![play](https://unpkg.com/feather-icons@4.29.0/dist/icons/play.svg) | `Play` | `` |
| ![plus-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus-circle.svg) | `PlusCircle` | `` |
| ![plus-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus-square.svg) | `PlusSquare` | `` |
| ![plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus.svg) | `Plus` | `` |
| ![pocket](https://unpkg.com/feather-icons@4.29.0/dist/icons/pocket.svg) | `Pocket` | `` |
| ![power](https://unpkg.com/feather-icons@4.29.0/dist/icons/power.svg) | `Power` | `` |
| ![printer](https://unpkg.com/feather-icons@4.29.0/dist/icons/printer.svg) | `Printer` | `` |
| ![radio](https://unpkg.com/feather-icons@4.29.0/dist/icons/radio.svg) | `Radio` | `` |
| ![refresh-ccw](https://unpkg.com/feather-icons@4.29.0/dist/icons/refresh-ccw.svg) | `RefreshCcw` | `` |
| ![refresh-cw](https://unpkg.com/feather-icons@4.29.0/dist/icons/refresh-cw.svg) | `RefreshCw` | `` |
| ![repeat](https://unpkg.com/feather-icons@4.29.0/dist/icons/repeat.svg) | `Repeat` | `` |
| ![rewind](https://unpkg.com/feather-icons@4.29.0/dist/icons/rewind.svg) | `Rewind` | `` |
| ![rotate-ccw](https://unpkg.com/feather-icons@4.29.0/dist/icons/rotate-ccw.svg) | `RotateCcw` | `` |
| ![rotate-cw](https://unpkg.com/feather-icons@4.29.0/dist/icons/rotate-cw.svg) | `RotateCw` | `` |
| ![rss](https://unpkg.com/feather-icons@4.29.0/dist/icons/rss.svg) | `Rss` | `` |
| ![save](https://unpkg.com/feather-icons@4.29.0/dist/icons/save.svg) | `Save` | `` |
| ![scissors](https://unpkg.com/feather-icons@4.29.0/dist/icons/scissors.svg) | `Scissors` | `` |
| ![search](https://unpkg.com/feather-icons@4.29.0/dist/icons/search.svg) | `Search` | `` |
| ![send](https://unpkg.com/feather-icons@4.29.0/dist/icons/send.svg) | `Send` | `` |
| ![server](https://unpkg.com/feather-icons@4.29.0/dist/icons/server.svg) | `Server` | `` |
| ![settings](https://unpkg.com/feather-icons@4.29.0/dist/icons/settings.svg) | `Settings` | `` |
| ![share-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/share-2.svg) | `Share2` | `` |
| ![share](https://unpkg.com/feather-icons@4.29.0/dist/icons/share.svg) | `Share` | `` |
| ![shield-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/shield-off.svg) | `ShieldOff` | `` |
| ![shield](https://unpkg.com/feather-icons@4.29.0/dist/icons/shield.svg) | `Shield` | `` |
| ![shopping-bag](https://unpkg.com/feather-icons@4.29.0/dist/icons/shopping-bag.svg) | `ShoppingBag` | `` |
| ![shopping-cart](https://unpkg.com/feather-icons@4.29.0/dist/icons/shopping-cart.svg) | `ShoppingCart` | `` |
| ![shuffle](https://unpkg.com/feather-icons@4.29.0/dist/icons/shuffle.svg) | `Shuffle` | `` |
| ![sidebar](https://unpkg.com/feather-icons@4.29.0/dist/icons/sidebar.svg) | `Sidebar` | `` |
| ![skip-back](https://unpkg.com/feather-icons@4.29.0/dist/icons/skip-back.svg) | `SkipBack` | `` |
| ![skip-forward](https://unpkg.com/feather-icons@4.29.0/dist/icons/skip-forward.svg) | `SkipForward` | `` |
| ![slack](https://unpkg.com/feather-icons@4.29.0/dist/icons/slack.svg) | `Slack` | `` |
| ![slash](https://unpkg.com/feather-icons@4.29.0/dist/icons/slash.svg) | `Slash` | `` |
| ![sliders](https://unpkg.com/feather-icons@4.29.0/dist/icons/sliders.svg) | `Sliders` | `` |
| ![smartphone](https://unpkg.com/feather-icons@4.29.0/dist/icons/smartphone.svg) | `Smartphone` | `` |
| ![smile](https://unpkg.com/feather-icons@4.29.0/dist/icons/smile.svg) | `Smile` | `` |
| ![speaker](https://unpkg.com/feather-icons@4.29.0/dist/icons/speaker.svg) | `Speaker` | `` |
| ![square](https://unpkg.com/feather-icons@4.29.0/dist/icons/square.svg) | `Square` | `` |
| ![star](https://unpkg.com/feather-icons@4.29.0/dist/icons/star.svg) | `Star` | `` |
| ![stop-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/stop-circle.svg) | `StopCircle` | `` |
| ![sun](https://unpkg.com/feather-icons@4.29.0/dist/icons/sun.svg) | `Sun` | `` |
| ![sunrise](https://unpkg.com/feather-icons@4.29.0/dist/icons/sunrise.svg) | `Sunrise` | `` |
| ![sunset](https://unpkg.com/feather-icons@4.29.0/dist/icons/sunset.svg) | `Sunset` | `` |
| ![table](https://unpkg.com/feather-icons@4.29.0/dist/icons/table.svg) | `Table` | `` |
| ![tablet](https://unpkg.com/feather-icons@4.29.0/dist/icons/tablet.svg) | `Tablet` | `` |
| ![tag](https://unpkg.com/feather-icons@4.29.0/dist/icons/tag.svg) | `Tag` | `` |
| ![target](https://unpkg.com/feather-icons@4.29.0/dist/icons/target.svg) | `Target` | `` |
| ![terminal](https://unpkg.com/feather-icons@4.29.0/dist/icons/terminal.svg) | `Terminal` | `` |
| ![thermometer](https://unpkg.com/feather-icons@4.29.0/dist/icons/thermometer.svg) | `Thermometer` | `` |
| ![thumbs-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/thumbs-down.svg) | `ThumbsDown` | `` |
| ![thumbs-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/thumbs-up.svg) | `ThumbsUp` | `` |
| ![toggle-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/toggle-left.svg) | `ToggleLeft` | `` |
| ![toggle-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/toggle-right.svg) | `ToggleRight` | `` |
| ![tool](https://unpkg.com/feather-icons@4.29.0/dist/icons/tool.svg) | `Tool` | `` |
| ![trash-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/trash-2.svg) | `Trash2` | `` |
| ![trash](https://unpkg.com/feather-icons@4.29.0/dist/icons/trash.svg) | `Trash` | `` |
| ![trello](https://unpkg.com/feather-icons@4.29.0/dist/icons/trello.svg) | `Trello` | `` |
| ![trending-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/trending-down.svg) | `TrendingDown` | `` |
| ![trending-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/trending-up.svg) | `TrendingUp` | `` |
| ![triangle](https://unpkg.com/feather-icons@4.29.0/dist/icons/triangle.svg) | `Triangle` | `` |
| ![truck](https://unpkg.com/feather-icons@4.29.0/dist/icons/truck.svg) | `Truck` | `` |
| ![tv](https://unpkg.com/feather-icons@4.29.0/dist/icons/tv.svg) | `Tv` | `` |
| ![twitch](https://unpkg.com/feather-icons@4.29.0/dist/icons/twitch.svg) | `Twitch` | `` |
| ![twitter](https://unpkg.com/feather-icons@4.29.0/dist/icons/twitter.svg) | `Twitter` | `` |
| ![type](https://unpkg.com/feather-icons@4.29.0/dist/icons/type.svg) | `Type` | `` |
| ![umbrella](https://unpkg.com/feather-icons@4.29.0/dist/icons/umbrella.svg) | `Umbrella` | `` |
| ![underline](https://unpkg.com/feather-icons@4.29.0/dist/icons/underline.svg) | `Underline` | `` |
| ![unlock](https://unpkg.com/feather-icons@4.29.0/dist/icons/unlock.svg) | `Unlock` | `` |
| ![upload-cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/upload-cloud.svg) | `UploadCloud` | `` |
| ![upload](https://unpkg.com/feather-icons@4.29.0/dist/icons/upload.svg) | `Upload` | `` |
| ![user-check](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-check.svg) | `UserCheck` | `` |
| ![user-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-minus.svg) | `UserMinus` | `` |
| ![user-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-plus.svg) | `UserPlus` | `` |
| ![user-x](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-x.svg) | `UserX` | `` |
| ![user](https://unpkg.com/feather-icons@4.29.0/dist/icons/user.svg) | `User` | `` |
| ![users](https://unpkg.com/feather-icons@4.29.0/dist/icons/users.svg) | `Users` | `` |
| ![video-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/video-off.svg) | `VideoOff` | `` |
| ![video](https://unpkg.com/feather-icons@4.29.0/dist/icons/video.svg) | `Video` | `` |
| ![voicemail](https://unpkg.com/feather-icons@4.29.0/dist/icons/voicemail.svg) | `Voicemail` | `` |
| ![volume-1](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-1.svg) | `Volume1` | `` |
| ![volume-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-2.svg) | `Volume2` | `` |
| ![volume-x](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-x.svg) | `VolumeX` | `` |
| ![volume](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume.svg) | `Volume` | `` |
| ![watch](https://unpkg.com/feather-icons@4.29.0/dist/icons/watch.svg) | `Watch` | `` |
| ![wifi-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/wifi-off.svg) | `WifiOff` | `` |
| ![wifi](https://unpkg.com/feather-icons@4.29.0/dist/icons/wifi.svg) | `Wifi` | `` |
| ![wind](https://unpkg.com/feather-icons@4.29.0/dist/icons/wind.svg) | `Wind` | `` |
| ![x-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-circle.svg) | `XCircle` | `` |
| ![x-octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-octagon.svg) | `XOctagon` | `` |
| ![x-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-square.svg) | `XSquare` | `` |
| ![x](https://unpkg.com/feather-icons@4.29.0/dist/icons/x.svg) | `X` | `` |
| ![youtube](https://unpkg.com/feather-icons@4.29.0/dist/icons/youtube.svg) | `Youtube` | `` |
| ![zap-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/zap-off.svg) | `ZapOff` | `` |
| ![zap](https://unpkg.com/feather-icons@4.29.0/dist/icons/zap.svg) | `Zap` | `` |
| ![zoom-in](https://unpkg.com/feather-icons@4.29.0/dist/icons/zoom-in.svg) | `ZoomIn` | `` |
| ![zoom-out](https://unpkg.com/feather-icons@4.29.0/dist/icons/zoom-out.svg) | `ZoomOut` | `` |

### FAQ

**1. Is there a way to pick all the icons at once?**

Yes, by importing `allIcons` from `'angular-feather/icons'`:

```ts
import { allIcons } from 'angular-feather/icons';

@NgModule({
imports: [
FeatherModule.pick(allIcons)
],
exports: [
FeatherModule
]
})
export class IconsModule { }
```

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.

### License

MIT © [Michael Bazos](mailto:micabazos@gmail.com)