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