{"id":13497084,"url":"https://github.com/michaelbazos/angular-feather","last_synced_at":"2025-04-04T15:08:43.665Z","repository":{"id":22264445,"uuid":"95764811","full_name":"michaelbazos/angular-feather","owner":"michaelbazos","description":"A-la-carte integration of Feather Icons in Angular applications","archived":false,"fork":false,"pushed_at":"2024-06-23T20:57:19.000Z","size":3589,"stargazers_count":156,"open_issues_count":8,"forks_count":35,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-28T14:06:29.352Z","etag":null,"topics":["angular","angular2","feather","icon-set","icon-system","icons","library"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelbazos.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-29T10:05:12.000Z","updated_at":"2025-03-03T03:28:26.000Z","dependencies_parsed_at":"2024-05-02T17:47:38.382Z","dependency_job_id":"27f22bf1-0946-4bac-88fc-a839a61a6cde","html_url":"https://github.com/michaelbazos/angular-feather","commit_stats":{"total_commits":149,"total_committers":8,"mean_commits":18.625,"dds":"0.21476510067114096","last_synced_commit":"7c397a5057e65cff3cf3d0c13f71e6f1a1368d0c"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelbazos%2Fangular-feather","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelbazos%2Fangular-feather/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelbazos%2Fangular-feather/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelbazos%2Fangular-feather/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelbazos","download_url":"https://codeload.github.com/michaelbazos/angular-feather/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247198460,"owners_count":20900080,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angular2","feather","icon-set","icon-system","icons","library"],"created_at":"2024-07-31T20:00:23.017Z","updated_at":"2025-04-04T15:08:43.637Z","avatar_url":"https://github.com/michaelbazos.png","language":"TypeScript","readme":"## angular-feather\n\n\u003ca href=\"https://www.npmjs.com/package/angular-feather\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/angular-feather?style=flat-square\" /\u003e\u003c/a\u003e\n\u003ca href=\"LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/angular-feather?style=flat-square\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/angular-feather\"\u003e\u003cimg src=\"https://img.shields.io/npm/dm/angular-feather?style=flat-square\" /\u003e\u003c/a\u003e\n\u003cimg src=\"https://img.shields.io/badge/Angular%20Version-%3E%3D12-red?style=flat-square\u0026logo=angular\" /\u003e\n\n\n### Description\n\nThis package allows you to use the [Feather Icons](https://github.com/colebemis/feather) in your angular applications. The icons are designed by Cole Bemis.\nImport only the icons that you need.\n\n### Demo\n\u003ch4\u003e\n  \u003ca href=\"https://stackblitz.com/edit/angular-feather?file=src%2Fapp%2Fapp.component.html\"\u003e\n    \u003e\u003e See live demo \u003c\u003c\n  \u003c/a\u003e  (right-click, open in new tab)\n\u003c/h4\u003e\n\n### Usage\n\n_1. Install the package_\n\n```sh\nnpm install angular-feather\n```\n\n_2. Generate a module to host the icons you'll import_\n \n```sh\nng generate module icons\n```\n  \n_3. Import assets_ \n\nYou need to import:\n - FeatherModule, as it contains the `\u003ci-feather\u003e` component\n - The SVGs that you need\n\nWe put this in IconsModule for modularity. See example below:\n\n\n*file: icon.module.ts*\n```ts  \nimport { NgModule } from '@angular/core';\n\nimport { FeatherModule } from 'angular-feather';\nimport { Camera, Heart, Github } from 'angular-feather/icons';\n\n// Select some icons (use an object, not an array)\nconst icons = {\n  Camera,\n  Heart,\n  Github\n};\n\n@NgModule({\n  imports: [\n    FeatherModule.pick(icons)\n  ],\n  exports: [\n    FeatherModule\n  ]\n})\nexport class IconsModule { }\n\n// NOTES:\n// 1. We add FeatherModule to the 'exports', since the \u003ci-feather\u003e component will be used in templates of parent module\n// 2. Don't forget to pick some icons using FeatherModule.pick({ ... })\n```\n\n_3. Use it in template_\n\nAfter importing the _IconsModule_ in your feature or shared module, use the icons as follows:\n\n```html\n\u003ci-feather name=\"github\" class=\"someclass\"\u003e\u003c/i-feather\u003e\n\u003ci-feather name=\"heart\" style=\"color: green;\"\u003e\u003c/i-feather\u003e\n\u003ci-feather name=\"camera\"\u003e\u003c/i-feather\u003e\n```\n\n\n\n### Styling icons\n\n\n```html\n\u003ci-feather name=\"heart\" class=\"big fill-red\"\u003e\u003c/i-feather\u003e\n```\n\n```css\n.big {\n  height: 50px;\n  width: 50px;\n}\n\n.fill-red {\n  fill: red;\n}\n```\n\n### Available icons\n\nRefer to the table below for the list of all available icons.\n\n|     | Symbol to import | HTML template      |\n| --- | ---------------- | ------------------ |\n| ![activity](https://unpkg.com/feather-icons@4.29.0/dist/icons/activity.svg) | `Activity` | `\u003ci-feather name=\"activity\"\u003e\u003c/i-feather\u003e` |\n| ![airplay](https://unpkg.com/feather-icons@4.29.0/dist/icons/airplay.svg) | `Airplay` | `\u003ci-feather name=\"airplay\"\u003e\u003c/i-feather\u003e` |\n| ![alert-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-circle.svg) | `AlertCircle` | `\u003ci-feather name=\"alert-circle\"\u003e\u003c/i-feather\u003e` |\n| ![alert-octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-octagon.svg) | `AlertOctagon` | `\u003ci-feather name=\"alert-octagon\"\u003e\u003c/i-feather\u003e` |\n| ![alert-triangle](https://unpkg.com/feather-icons@4.29.0/dist/icons/alert-triangle.svg) | `AlertTriangle` | `\u003ci-feather name=\"alert-triangle\"\u003e\u003c/i-feather\u003e` |\n| ![align-center](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-center.svg) | `AlignCenter` | `\u003ci-feather name=\"align-center\"\u003e\u003c/i-feather\u003e` |\n| ![align-justify](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-justify.svg) | `AlignJustify` | `\u003ci-feather name=\"align-justify\"\u003e\u003c/i-feather\u003e` |\n| ![align-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-left.svg) | `AlignLeft` | `\u003ci-feather name=\"align-left\"\u003e\u003c/i-feather\u003e` |\n| ![align-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/align-right.svg) | `AlignRight` | `\u003ci-feather name=\"align-right\"\u003e\u003c/i-feather\u003e` |\n| ![anchor](https://unpkg.com/feather-icons@4.29.0/dist/icons/anchor.svg) | `Anchor` | `\u003ci-feather name=\"anchor\"\u003e\u003c/i-feather\u003e` |\n| ![aperture](https://unpkg.com/feather-icons@4.29.0/dist/icons/aperture.svg) | `Aperture` | `\u003ci-feather name=\"aperture\"\u003e\u003c/i-feather\u003e` |\n| ![archive](https://unpkg.com/feather-icons@4.29.0/dist/icons/archive.svg) | `Archive` | `\u003ci-feather name=\"archive\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-down-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-circle.svg) | `ArrowDownCircle` | `\u003ci-feather name=\"arrow-down-circle\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-down-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-left.svg) | `ArrowDownLeft` | `\u003ci-feather name=\"arrow-down-left\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-down-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down-right.svg) | `ArrowDownRight` | `\u003ci-feather name=\"arrow-down-right\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-down.svg) | `ArrowDown` | `\u003ci-feather name=\"arrow-down\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-left-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-left-circle.svg) | `ArrowLeftCircle` | `\u003ci-feather name=\"arrow-left-circle\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-left.svg) | `ArrowLeft` | `\u003ci-feather name=\"arrow-left\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-right-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-right-circle.svg) | `ArrowRightCircle` | `\u003ci-feather name=\"arrow-right-circle\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-right.svg) | `ArrowRight` | `\u003ci-feather name=\"arrow-right\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-up-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-circle.svg) | `ArrowUpCircle` | `\u003ci-feather name=\"arrow-up-circle\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-up-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-left.svg) | `ArrowUpLeft` | `\u003ci-feather name=\"arrow-up-left\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-up-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up-right.svg) | `ArrowUpRight` | `\u003ci-feather name=\"arrow-up-right\"\u003e\u003c/i-feather\u003e` |\n| ![arrow-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/arrow-up.svg) | `ArrowUp` | `\u003ci-feather name=\"arrow-up\"\u003e\u003c/i-feather\u003e` |\n| ![at-sign](https://unpkg.com/feather-icons@4.29.0/dist/icons/at-sign.svg) | `AtSign` | `\u003ci-feather name=\"at-sign\"\u003e\u003c/i-feather\u003e` |\n| ![award](https://unpkg.com/feather-icons@4.29.0/dist/icons/award.svg) | `Award` | `\u003ci-feather name=\"award\"\u003e\u003c/i-feather\u003e` |\n| ![bar-chart-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/bar-chart-2.svg) | `BarChart2` | `\u003ci-feather name=\"bar-chart-2\"\u003e\u003c/i-feather\u003e` |\n| ![bar-chart](https://unpkg.com/feather-icons@4.29.0/dist/icons/bar-chart.svg) | `BarChart` | `\u003ci-feather name=\"bar-chart\"\u003e\u003c/i-feather\u003e` |\n| ![battery-charging](https://unpkg.com/feather-icons@4.29.0/dist/icons/battery-charging.svg) | `BatteryCharging` | `\u003ci-feather name=\"battery-charging\"\u003e\u003c/i-feather\u003e` |\n| ![battery](https://unpkg.com/feather-icons@4.29.0/dist/icons/battery.svg) | `Battery` | `\u003ci-feather name=\"battery\"\u003e\u003c/i-feather\u003e` |\n| ![bell-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/bell-off.svg) | `BellOff` | `\u003ci-feather name=\"bell-off\"\u003e\u003c/i-feather\u003e` |\n| ![bell](https://unpkg.com/feather-icons@4.29.0/dist/icons/bell.svg) | `Bell` | `\u003ci-feather name=\"bell\"\u003e\u003c/i-feather\u003e` |\n| ![bluetooth](https://unpkg.com/feather-icons@4.29.0/dist/icons/bluetooth.svg) | `Bluetooth` | `\u003ci-feather name=\"bluetooth\"\u003e\u003c/i-feather\u003e` |\n| ![bold](https://unpkg.com/feather-icons@4.29.0/dist/icons/bold.svg) | `Bold` | `\u003ci-feather name=\"bold\"\u003e\u003c/i-feather\u003e` |\n| ![book-open](https://unpkg.com/feather-icons@4.29.0/dist/icons/book-open.svg) | `BookOpen` | `\u003ci-feather name=\"book-open\"\u003e\u003c/i-feather\u003e` |\n| ![book](https://unpkg.com/feather-icons@4.29.0/dist/icons/book.svg) | `Book` | `\u003ci-feather name=\"book\"\u003e\u003c/i-feather\u003e` |\n| ![bookmark](https://unpkg.com/feather-icons@4.29.0/dist/icons/bookmark.svg) | `Bookmark` | `\u003ci-feather name=\"bookmark\"\u003e\u003c/i-feather\u003e` |\n| ![box](https://unpkg.com/feather-icons@4.29.0/dist/icons/box.svg) | `Box` | `\u003ci-feather name=\"box\"\u003e\u003c/i-feather\u003e` |\n| ![briefcase](https://unpkg.com/feather-icons@4.29.0/dist/icons/briefcase.svg) | `Briefcase` | `\u003ci-feather name=\"briefcase\"\u003e\u003c/i-feather\u003e` |\n| ![calendar](https://unpkg.com/feather-icons@4.29.0/dist/icons/calendar.svg) | `Calendar` | `\u003ci-feather name=\"calendar\"\u003e\u003c/i-feather\u003e` |\n| ![camera-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/camera-off.svg) | `CameraOff` | `\u003ci-feather name=\"camera-off\"\u003e\u003c/i-feather\u003e` |\n| ![camera](https://unpkg.com/feather-icons@4.29.0/dist/icons/camera.svg) | `Camera` | `\u003ci-feather name=\"camera\"\u003e\u003c/i-feather\u003e` |\n| ![cast](https://unpkg.com/feather-icons@4.29.0/dist/icons/cast.svg) | `Cast` | `\u003ci-feather name=\"cast\"\u003e\u003c/i-feather\u003e` |\n| ![check-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/check-circle.svg) | `CheckCircle` | `\u003ci-feather name=\"check-circle\"\u003e\u003c/i-feather\u003e` |\n| ![check-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/check-square.svg) | `CheckSquare` | `\u003ci-feather name=\"check-square\"\u003e\u003c/i-feather\u003e` |\n| ![check](https://unpkg.com/feather-icons@4.29.0/dist/icons/check.svg) | `Check` | `\u003ci-feather name=\"check\"\u003e\u003c/i-feather\u003e` |\n| ![chevron-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-down.svg) | `ChevronDown` | `\u003ci-feather name=\"chevron-down\"\u003e\u003c/i-feather\u003e` |\n| ![chevron-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-left.svg) | `ChevronLeft` | `\u003ci-feather name=\"chevron-left\"\u003e\u003c/i-feather\u003e` |\n| ![chevron-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-right.svg) | `ChevronRight` | `\u003ci-feather name=\"chevron-right\"\u003e\u003c/i-feather\u003e` |\n| ![chevron-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevron-up.svg) | `ChevronUp` | `\u003ci-feather name=\"chevron-up\"\u003e\u003c/i-feather\u003e` |\n| ![chevrons-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-down.svg) | `ChevronsDown` | `\u003ci-feather name=\"chevrons-down\"\u003e\u003c/i-feather\u003e` |\n| ![chevrons-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-left.svg) | `ChevronsLeft` | `\u003ci-feather name=\"chevrons-left\"\u003e\u003c/i-feather\u003e` |\n| ![chevrons-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-right.svg) | `ChevronsRight` | `\u003ci-feather name=\"chevrons-right\"\u003e\u003c/i-feather\u003e` |\n| ![chevrons-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/chevrons-up.svg) | `ChevronsUp` | `\u003ci-feather name=\"chevrons-up\"\u003e\u003c/i-feather\u003e` |\n| ![chrome](https://unpkg.com/feather-icons@4.29.0/dist/icons/chrome.svg) | `Chrome` | `\u003ci-feather name=\"chrome\"\u003e\u003c/i-feather\u003e` |\n| ![circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/circle.svg) | `Circle` | `\u003ci-feather name=\"circle\"\u003e\u003c/i-feather\u003e` |\n| ![clipboard](https://unpkg.com/feather-icons@4.29.0/dist/icons/clipboard.svg) | `Clipboard` | `\u003ci-feather name=\"clipboard\"\u003e\u003c/i-feather\u003e` |\n| ![clock](https://unpkg.com/feather-icons@4.29.0/dist/icons/clock.svg) | `Clock` | `\u003ci-feather name=\"clock\"\u003e\u003c/i-feather\u003e` |\n| ![cloud-drizzle](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-drizzle.svg) | `CloudDrizzle` | `\u003ci-feather name=\"cloud-drizzle\"\u003e\u003c/i-feather\u003e` |\n| ![cloud-lightning](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-lightning.svg) | `CloudLightning` | `\u003ci-feather name=\"cloud-lightning\"\u003e\u003c/i-feather\u003e` |\n| ![cloud-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-off.svg) | `CloudOff` | `\u003ci-feather name=\"cloud-off\"\u003e\u003c/i-feather\u003e` |\n| ![cloud-rain](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-rain.svg) | `CloudRain` | `\u003ci-feather name=\"cloud-rain\"\u003e\u003c/i-feather\u003e` |\n| ![cloud-snow](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud-snow.svg) | `CloudSnow` | `\u003ci-feather name=\"cloud-snow\"\u003e\u003c/i-feather\u003e` |\n| ![cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/cloud.svg) | `Cloud` | `\u003ci-feather name=\"cloud\"\u003e\u003c/i-feather\u003e` |\n| ![code](https://unpkg.com/feather-icons@4.29.0/dist/icons/code.svg) | `Code` | `\u003ci-feather name=\"code\"\u003e\u003c/i-feather\u003e` |\n| ![codepen](https://unpkg.com/feather-icons@4.29.0/dist/icons/codepen.svg) | `Codepen` | `\u003ci-feather name=\"codepen\"\u003e\u003c/i-feather\u003e` |\n| ![codesandbox](https://unpkg.com/feather-icons@4.29.0/dist/icons/codesandbox.svg) | `Codesandbox` | `\u003ci-feather name=\"codesandbox\"\u003e\u003c/i-feather\u003e` |\n| ![coffee](https://unpkg.com/feather-icons@4.29.0/dist/icons/coffee.svg) | `Coffee` | `\u003ci-feather name=\"coffee\"\u003e\u003c/i-feather\u003e` |\n| ![columns](https://unpkg.com/feather-icons@4.29.0/dist/icons/columns.svg) | `Columns` | `\u003ci-feather name=\"columns\"\u003e\u003c/i-feather\u003e` |\n| ![command](https://unpkg.com/feather-icons@4.29.0/dist/icons/command.svg) | `Command` | `\u003ci-feather name=\"command\"\u003e\u003c/i-feather\u003e` |\n| ![compass](https://unpkg.com/feather-icons@4.29.0/dist/icons/compass.svg) | `Compass` | `\u003ci-feather name=\"compass\"\u003e\u003c/i-feather\u003e` |\n| ![copy](https://unpkg.com/feather-icons@4.29.0/dist/icons/copy.svg) | `Copy` | `\u003ci-feather name=\"copy\"\u003e\u003c/i-feather\u003e` |\n| ![corner-down-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-down-left.svg) | `CornerDownLeft` | `\u003ci-feather name=\"corner-down-left\"\u003e\u003c/i-feather\u003e` |\n| ![corner-down-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-down-right.svg) | `CornerDownRight` | `\u003ci-feather name=\"corner-down-right\"\u003e\u003c/i-feather\u003e` |\n| ![corner-left-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-left-down.svg) | `CornerLeftDown` | `\u003ci-feather name=\"corner-left-down\"\u003e\u003c/i-feather\u003e` |\n| ![corner-left-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-left-up.svg) | `CornerLeftUp` | `\u003ci-feather name=\"corner-left-up\"\u003e\u003c/i-feather\u003e` |\n| ![corner-right-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-right-down.svg) | `CornerRightDown` | `\u003ci-feather name=\"corner-right-down\"\u003e\u003c/i-feather\u003e` |\n| ![corner-right-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-right-up.svg) | `CornerRightUp` | `\u003ci-feather name=\"corner-right-up\"\u003e\u003c/i-feather\u003e` |\n| ![corner-up-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-up-left.svg) | `CornerUpLeft` | `\u003ci-feather name=\"corner-up-left\"\u003e\u003c/i-feather\u003e` |\n| ![corner-up-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/corner-up-right.svg) | `CornerUpRight` | `\u003ci-feather name=\"corner-up-right\"\u003e\u003c/i-feather\u003e` |\n| ![cpu](https://unpkg.com/feather-icons@4.29.0/dist/icons/cpu.svg) | `Cpu` | `\u003ci-feather name=\"cpu\"\u003e\u003c/i-feather\u003e` |\n| ![credit-card](https://unpkg.com/feather-icons@4.29.0/dist/icons/credit-card.svg) | `CreditCard` | `\u003ci-feather name=\"credit-card\"\u003e\u003c/i-feather\u003e` |\n| ![crop](https://unpkg.com/feather-icons@4.29.0/dist/icons/crop.svg) | `Crop` | `\u003ci-feather name=\"crop\"\u003e\u003c/i-feather\u003e` |\n| ![crosshair](https://unpkg.com/feather-icons@4.29.0/dist/icons/crosshair.svg) | `Crosshair` | `\u003ci-feather name=\"crosshair\"\u003e\u003c/i-feather\u003e` |\n| ![database](https://unpkg.com/feather-icons@4.29.0/dist/icons/database.svg) | `Database` | `\u003ci-feather name=\"database\"\u003e\u003c/i-feather\u003e` |\n| ![delete](https://unpkg.com/feather-icons@4.29.0/dist/icons/delete.svg) | `Delete` | `\u003ci-feather name=\"delete\"\u003e\u003c/i-feather\u003e` |\n| ![disc](https://unpkg.com/feather-icons@4.29.0/dist/icons/disc.svg) | `Disc` | `\u003ci-feather name=\"disc\"\u003e\u003c/i-feather\u003e` |\n| ![divide-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide-circle.svg) | `DivideCircle` | `\u003ci-feather name=\"divide-circle\"\u003e\u003c/i-feather\u003e` |\n| ![divide-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide-square.svg) | `DivideSquare` | `\u003ci-feather name=\"divide-square\"\u003e\u003c/i-feather\u003e` |\n| ![divide](https://unpkg.com/feather-icons@4.29.0/dist/icons/divide.svg) | `Divide` | `\u003ci-feather name=\"divide\"\u003e\u003c/i-feather\u003e` |\n| ![dollar-sign](https://unpkg.com/feather-icons@4.29.0/dist/icons/dollar-sign.svg) | `DollarSign` | `\u003ci-feather name=\"dollar-sign\"\u003e\u003c/i-feather\u003e` |\n| ![download-cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/download-cloud.svg) | `DownloadCloud` | `\u003ci-feather name=\"download-cloud\"\u003e\u003c/i-feather\u003e` |\n| ![download](https://unpkg.com/feather-icons@4.29.0/dist/icons/download.svg) | `Download` | `\u003ci-feather name=\"download\"\u003e\u003c/i-feather\u003e` |\n| ![dribbble](https://unpkg.com/feather-icons@4.29.0/dist/icons/dribbble.svg) | `Dribbble` | `\u003ci-feather name=\"dribbble\"\u003e\u003c/i-feather\u003e` |\n| ![droplet](https://unpkg.com/feather-icons@4.29.0/dist/icons/droplet.svg) | `Droplet` | `\u003ci-feather name=\"droplet\"\u003e\u003c/i-feather\u003e` |\n| ![edit-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit-2.svg) | `Edit2` | `\u003ci-feather name=\"edit-2\"\u003e\u003c/i-feather\u003e` |\n| ![edit-3](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit-3.svg) | `Edit3` | `\u003ci-feather name=\"edit-3\"\u003e\u003c/i-feather\u003e` |\n| ![edit](https://unpkg.com/feather-icons@4.29.0/dist/icons/edit.svg) | `Edit` | `\u003ci-feather name=\"edit\"\u003e\u003c/i-feather\u003e` |\n| ![external-link](https://unpkg.com/feather-icons@4.29.0/dist/icons/external-link.svg) | `ExternalLink` | `\u003ci-feather name=\"external-link\"\u003e\u003c/i-feather\u003e` |\n| ![eye-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/eye-off.svg) | `EyeOff` | `\u003ci-feather name=\"eye-off\"\u003e\u003c/i-feather\u003e` |\n| ![eye](https://unpkg.com/feather-icons@4.29.0/dist/icons/eye.svg) | `Eye` | `\u003ci-feather name=\"eye\"\u003e\u003c/i-feather\u003e` |\n| ![facebook](https://unpkg.com/feather-icons@4.29.0/dist/icons/facebook.svg) | `Facebook` | `\u003ci-feather name=\"facebook\"\u003e\u003c/i-feather\u003e` |\n| ![fast-forward](https://unpkg.com/feather-icons@4.29.0/dist/icons/fast-forward.svg) | `FastForward` | `\u003ci-feather name=\"fast-forward\"\u003e\u003c/i-feather\u003e` |\n| ![feather](https://unpkg.com/feather-icons@4.29.0/dist/icons/feather.svg) | `Feather` | `\u003ci-feather name=\"feather\"\u003e\u003c/i-feather\u003e` |\n| ![figma](https://unpkg.com/feather-icons@4.29.0/dist/icons/figma.svg) | `Figma` | `\u003ci-feather name=\"figma\"\u003e\u003c/i-feather\u003e` |\n| ![file-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-minus.svg) | `FileMinus` | `\u003ci-feather name=\"file-minus\"\u003e\u003c/i-feather\u003e` |\n| ![file-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-plus.svg) | `FilePlus` | `\u003ci-feather name=\"file-plus\"\u003e\u003c/i-feather\u003e` |\n| ![file-text](https://unpkg.com/feather-icons@4.29.0/dist/icons/file-text.svg) | `FileText` | `\u003ci-feather name=\"file-text\"\u003e\u003c/i-feather\u003e` |\n| ![file](https://unpkg.com/feather-icons@4.29.0/dist/icons/file.svg) | `File` | `\u003ci-feather name=\"file\"\u003e\u003c/i-feather\u003e` |\n| ![film](https://unpkg.com/feather-icons@4.29.0/dist/icons/film.svg) | `Film` | `\u003ci-feather name=\"film\"\u003e\u003c/i-feather\u003e` |\n| ![filter](https://unpkg.com/feather-icons@4.29.0/dist/icons/filter.svg) | `Filter` | `\u003ci-feather name=\"filter\"\u003e\u003c/i-feather\u003e` |\n| ![flag](https://unpkg.com/feather-icons@4.29.0/dist/icons/flag.svg) | `Flag` | `\u003ci-feather name=\"flag\"\u003e\u003c/i-feather\u003e` |\n| ![folder-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder-minus.svg) | `FolderMinus` | `\u003ci-feather name=\"folder-minus\"\u003e\u003c/i-feather\u003e` |\n| ![folder-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder-plus.svg) | `FolderPlus` | `\u003ci-feather name=\"folder-plus\"\u003e\u003c/i-feather\u003e` |\n| ![folder](https://unpkg.com/feather-icons@4.29.0/dist/icons/folder.svg) | `Folder` | `\u003ci-feather name=\"folder\"\u003e\u003c/i-feather\u003e` |\n| ![framer](https://unpkg.com/feather-icons@4.29.0/dist/icons/framer.svg) | `Framer` | `\u003ci-feather name=\"framer\"\u003e\u003c/i-feather\u003e` |\n| ![frown](https://unpkg.com/feather-icons@4.29.0/dist/icons/frown.svg) | `Frown` | `\u003ci-feather name=\"frown\"\u003e\u003c/i-feather\u003e` |\n| ![gift](https://unpkg.com/feather-icons@4.29.0/dist/icons/gift.svg) | `Gift` | `\u003ci-feather name=\"gift\"\u003e\u003c/i-feather\u003e` |\n| ![git-branch](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-branch.svg) | `GitBranch` | `\u003ci-feather name=\"git-branch\"\u003e\u003c/i-feather\u003e` |\n| ![git-commit](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-commit.svg) | `GitCommit` | `\u003ci-feather name=\"git-commit\"\u003e\u003c/i-feather\u003e` |\n| ![git-merge](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-merge.svg) | `GitMerge` | `\u003ci-feather name=\"git-merge\"\u003e\u003c/i-feather\u003e` |\n| ![git-pull-request](https://unpkg.com/feather-icons@4.29.0/dist/icons/git-pull-request.svg) | `GitPullRequest` | `\u003ci-feather name=\"git-pull-request\"\u003e\u003c/i-feather\u003e` |\n| ![github](https://unpkg.com/feather-icons@4.29.0/dist/icons/github.svg) | `Github` | `\u003ci-feather name=\"github\"\u003e\u003c/i-feather\u003e` |\n| ![gitlab](https://unpkg.com/feather-icons@4.29.0/dist/icons/gitlab.svg) | `Gitlab` | `\u003ci-feather name=\"gitlab\"\u003e\u003c/i-feather\u003e` |\n| ![globe](https://unpkg.com/feather-icons@4.29.0/dist/icons/globe.svg) | `Globe` | `\u003ci-feather name=\"globe\"\u003e\u003c/i-feather\u003e` |\n| ![grid](https://unpkg.com/feather-icons@4.29.0/dist/icons/grid.svg) | `Grid` | `\u003ci-feather name=\"grid\"\u003e\u003c/i-feather\u003e` |\n| ![hard-drive](https://unpkg.com/feather-icons@4.29.0/dist/icons/hard-drive.svg) | `HardDrive` | `\u003ci-feather name=\"hard-drive\"\u003e\u003c/i-feather\u003e` |\n| ![hash](https://unpkg.com/feather-icons@4.29.0/dist/icons/hash.svg) | `Hash` | `\u003ci-feather name=\"hash\"\u003e\u003c/i-feather\u003e` |\n| ![headphones](https://unpkg.com/feather-icons@4.29.0/dist/icons/headphones.svg) | `Headphones` | `\u003ci-feather name=\"headphones\"\u003e\u003c/i-feather\u003e` |\n| ![heart](https://unpkg.com/feather-icons@4.29.0/dist/icons/heart.svg) | `Heart` | `\u003ci-feather name=\"heart\"\u003e\u003c/i-feather\u003e` |\n| ![help-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/help-circle.svg) | `HelpCircle` | `\u003ci-feather name=\"help-circle\"\u003e\u003c/i-feather\u003e` |\n| ![hexagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/hexagon.svg) | `Hexagon` | `\u003ci-feather name=\"hexagon\"\u003e\u003c/i-feather\u003e` |\n| ![home](https://unpkg.com/feather-icons@4.29.0/dist/icons/home.svg) | `Home` | `\u003ci-feather name=\"home\"\u003e\u003c/i-feather\u003e` |\n| ![image](https://unpkg.com/feather-icons@4.29.0/dist/icons/image.svg) | `Image` | `\u003ci-feather name=\"image\"\u003e\u003c/i-feather\u003e` |\n| ![inbox](https://unpkg.com/feather-icons@4.29.0/dist/icons/inbox.svg) | `Inbox` | `\u003ci-feather name=\"inbox\"\u003e\u003c/i-feather\u003e` |\n| ![info](https://unpkg.com/feather-icons@4.29.0/dist/icons/info.svg) | `Info` | `\u003ci-feather name=\"info\"\u003e\u003c/i-feather\u003e` |\n| ![instagram](https://unpkg.com/feather-icons@4.29.0/dist/icons/instagram.svg) | `Instagram` | `\u003ci-feather name=\"instagram\"\u003e\u003c/i-feather\u003e` |\n| ![italic](https://unpkg.com/feather-icons@4.29.0/dist/icons/italic.svg) | `Italic` | `\u003ci-feather name=\"italic\"\u003e\u003c/i-feather\u003e` |\n| ![key](https://unpkg.com/feather-icons@4.29.0/dist/icons/key.svg) | `Key` | `\u003ci-feather name=\"key\"\u003e\u003c/i-feather\u003e` |\n| ![layers](https://unpkg.com/feather-icons@4.29.0/dist/icons/layers.svg) | `Layers` | `\u003ci-feather name=\"layers\"\u003e\u003c/i-feather\u003e` |\n| ![layout](https://unpkg.com/feather-icons@4.29.0/dist/icons/layout.svg) | `Layout` | `\u003ci-feather name=\"layout\"\u003e\u003c/i-feather\u003e` |\n| ![life-buoy](https://unpkg.com/feather-icons@4.29.0/dist/icons/life-buoy.svg) | `LifeBuoy` | `\u003ci-feather name=\"life-buoy\"\u003e\u003c/i-feather\u003e` |\n| ![link-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/link-2.svg) | `Link2` | `\u003ci-feather name=\"link-2\"\u003e\u003c/i-feather\u003e` |\n| ![link](https://unpkg.com/feather-icons@4.29.0/dist/icons/link.svg) | `Link` | `\u003ci-feather name=\"link\"\u003e\u003c/i-feather\u003e` |\n| ![linkedin](https://unpkg.com/feather-icons@4.29.0/dist/icons/linkedin.svg) | `Linkedin` | `\u003ci-feather name=\"linkedin\"\u003e\u003c/i-feather\u003e` |\n| ![list](https://unpkg.com/feather-icons@4.29.0/dist/icons/list.svg) | `List` | `\u003ci-feather name=\"list\"\u003e\u003c/i-feather\u003e` |\n| ![loader](https://unpkg.com/feather-icons@4.29.0/dist/icons/loader.svg) | `Loader` | `\u003ci-feather name=\"loader\"\u003e\u003c/i-feather\u003e` |\n| ![lock](https://unpkg.com/feather-icons@4.29.0/dist/icons/lock.svg) | `Lock` | `\u003ci-feather name=\"lock\"\u003e\u003c/i-feather\u003e` |\n| ![log-in](https://unpkg.com/feather-icons@4.29.0/dist/icons/log-in.svg) | `LogIn` | `\u003ci-feather name=\"log-in\"\u003e\u003c/i-feather\u003e` |\n| ![log-out](https://unpkg.com/feather-icons@4.29.0/dist/icons/log-out.svg) | `LogOut` | `\u003ci-feather name=\"log-out\"\u003e\u003c/i-feather\u003e` |\n| ![mail](https://unpkg.com/feather-icons@4.29.0/dist/icons/mail.svg) | `Mail` | `\u003ci-feather name=\"mail\"\u003e\u003c/i-feather\u003e` |\n| ![map-pin](https://unpkg.com/feather-icons@4.29.0/dist/icons/map-pin.svg) | `MapPin` | `\u003ci-feather name=\"map-pin\"\u003e\u003c/i-feather\u003e` |\n| ![map](https://unpkg.com/feather-icons@4.29.0/dist/icons/map.svg) | `Map` | `\u003ci-feather name=\"map\"\u003e\u003c/i-feather\u003e` |\n| ![maximize-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/maximize-2.svg) | `Maximize2` | `\u003ci-feather name=\"maximize-2\"\u003e\u003c/i-feather\u003e` |\n| ![maximize](https://unpkg.com/feather-icons@4.29.0/dist/icons/maximize.svg) | `Maximize` | `\u003ci-feather name=\"maximize\"\u003e\u003c/i-feather\u003e` |\n| ![meh](https://unpkg.com/feather-icons@4.29.0/dist/icons/meh.svg) | `Meh` | `\u003ci-feather name=\"meh\"\u003e\u003c/i-feather\u003e` |\n| ![menu](https://unpkg.com/feather-icons@4.29.0/dist/icons/menu.svg) | `Menu` | `\u003ci-feather name=\"menu\"\u003e\u003c/i-feather\u003e` |\n| ![message-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/message-circle.svg) | `MessageCircle` | `\u003ci-feather name=\"message-circle\"\u003e\u003c/i-feather\u003e` |\n| ![message-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/message-square.svg) | `MessageSquare` | `\u003ci-feather name=\"message-square\"\u003e\u003c/i-feather\u003e` |\n| ![mic-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/mic-off.svg) | `MicOff` | `\u003ci-feather name=\"mic-off\"\u003e\u003c/i-feather\u003e` |\n| ![mic](https://unpkg.com/feather-icons@4.29.0/dist/icons/mic.svg) | `Mic` | `\u003ci-feather name=\"mic\"\u003e\u003c/i-feather\u003e` |\n| ![minimize-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/minimize-2.svg) | `Minimize2` | `\u003ci-feather name=\"minimize-2\"\u003e\u003c/i-feather\u003e` |\n| ![minimize](https://unpkg.com/feather-icons@4.29.0/dist/icons/minimize.svg) | `Minimize` | `\u003ci-feather name=\"minimize\"\u003e\u003c/i-feather\u003e` |\n| ![minus-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus-circle.svg) | `MinusCircle` | `\u003ci-feather name=\"minus-circle\"\u003e\u003c/i-feather\u003e` |\n| ![minus-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus-square.svg) | `MinusSquare` | `\u003ci-feather name=\"minus-square\"\u003e\u003c/i-feather\u003e` |\n| ![minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/minus.svg) | `Minus` | `\u003ci-feather name=\"minus\"\u003e\u003c/i-feather\u003e` |\n| ![monitor](https://unpkg.com/feather-icons@4.29.0/dist/icons/monitor.svg) | `Monitor` | `\u003ci-feather name=\"monitor\"\u003e\u003c/i-feather\u003e` |\n| ![moon](https://unpkg.com/feather-icons@4.29.0/dist/icons/moon.svg) | `Moon` | `\u003ci-feather name=\"moon\"\u003e\u003c/i-feather\u003e` |\n| ![more-horizontal](https://unpkg.com/feather-icons@4.29.0/dist/icons/more-horizontal.svg) | `MoreHorizontal` | `\u003ci-feather name=\"more-horizontal\"\u003e\u003c/i-feather\u003e` |\n| ![more-vertical](https://unpkg.com/feather-icons@4.29.0/dist/icons/more-vertical.svg) | `MoreVertical` | `\u003ci-feather name=\"more-vertical\"\u003e\u003c/i-feather\u003e` |\n| ![mouse-pointer](https://unpkg.com/feather-icons@4.29.0/dist/icons/mouse-pointer.svg) | `MousePointer` | `\u003ci-feather name=\"mouse-pointer\"\u003e\u003c/i-feather\u003e` |\n| ![move](https://unpkg.com/feather-icons@4.29.0/dist/icons/move.svg) | `Move` | `\u003ci-feather name=\"move\"\u003e\u003c/i-feather\u003e` |\n| ![music](https://unpkg.com/feather-icons@4.29.0/dist/icons/music.svg) | `Music` | `\u003ci-feather name=\"music\"\u003e\u003c/i-feather\u003e` |\n| ![navigation-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/navigation-2.svg) | `Navigation2` | `\u003ci-feather name=\"navigation-2\"\u003e\u003c/i-feather\u003e` |\n| ![navigation](https://unpkg.com/feather-icons@4.29.0/dist/icons/navigation.svg) | `Navigation` | `\u003ci-feather name=\"navigation\"\u003e\u003c/i-feather\u003e` |\n| ![octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/octagon.svg) | `Octagon` | `\u003ci-feather name=\"octagon\"\u003e\u003c/i-feather\u003e` |\n| ![package](https://unpkg.com/feather-icons@4.29.0/dist/icons/package.svg) | `Package` | `\u003ci-feather name=\"package\"\u003e\u003c/i-feather\u003e` |\n| ![paperclip](https://unpkg.com/feather-icons@4.29.0/dist/icons/paperclip.svg) | `Paperclip` | `\u003ci-feather name=\"paperclip\"\u003e\u003c/i-feather\u003e` |\n| ![pause-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/pause-circle.svg) | `PauseCircle` | `\u003ci-feather name=\"pause-circle\"\u003e\u003c/i-feather\u003e` |\n| ![pause](https://unpkg.com/feather-icons@4.29.0/dist/icons/pause.svg) | `Pause` | `\u003ci-feather name=\"pause\"\u003e\u003c/i-feather\u003e` |\n| ![pen-tool](https://unpkg.com/feather-icons@4.29.0/dist/icons/pen-tool.svg) | `PenTool` | `\u003ci-feather name=\"pen-tool\"\u003e\u003c/i-feather\u003e` |\n| ![percent](https://unpkg.com/feather-icons@4.29.0/dist/icons/percent.svg) | `Percent` | `\u003ci-feather name=\"percent\"\u003e\u003c/i-feather\u003e` |\n| ![phone-call](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-call.svg) | `PhoneCall` | `\u003ci-feather name=\"phone-call\"\u003e\u003c/i-feather\u003e` |\n| ![phone-forwarded](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-forwarded.svg) | `PhoneForwarded` | `\u003ci-feather name=\"phone-forwarded\"\u003e\u003c/i-feather\u003e` |\n| ![phone-incoming](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-incoming.svg) | `PhoneIncoming` | `\u003ci-feather name=\"phone-incoming\"\u003e\u003c/i-feather\u003e` |\n| ![phone-missed](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-missed.svg) | `PhoneMissed` | `\u003ci-feather name=\"phone-missed\"\u003e\u003c/i-feather\u003e` |\n| ![phone-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-off.svg) | `PhoneOff` | `\u003ci-feather name=\"phone-off\"\u003e\u003c/i-feather\u003e` |\n| ![phone-outgoing](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone-outgoing.svg) | `PhoneOutgoing` | `\u003ci-feather name=\"phone-outgoing\"\u003e\u003c/i-feather\u003e` |\n| ![phone](https://unpkg.com/feather-icons@4.29.0/dist/icons/phone.svg) | `Phone` | `\u003ci-feather name=\"phone\"\u003e\u003c/i-feather\u003e` |\n| ![pie-chart](https://unpkg.com/feather-icons@4.29.0/dist/icons/pie-chart.svg) | `PieChart` | `\u003ci-feather name=\"pie-chart\"\u003e\u003c/i-feather\u003e` |\n| ![play-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/play-circle.svg) | `PlayCircle` | `\u003ci-feather name=\"play-circle\"\u003e\u003c/i-feather\u003e` |\n| ![play](https://unpkg.com/feather-icons@4.29.0/dist/icons/play.svg) | `Play` | `\u003ci-feather name=\"play\"\u003e\u003c/i-feather\u003e` |\n| ![plus-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus-circle.svg) | `PlusCircle` | `\u003ci-feather name=\"plus-circle\"\u003e\u003c/i-feather\u003e` |\n| ![plus-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus-square.svg) | `PlusSquare` | `\u003ci-feather name=\"plus-square\"\u003e\u003c/i-feather\u003e` |\n| ![plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/plus.svg) | `Plus` | `\u003ci-feather name=\"plus\"\u003e\u003c/i-feather\u003e` |\n| ![pocket](https://unpkg.com/feather-icons@4.29.0/dist/icons/pocket.svg) | `Pocket` | `\u003ci-feather name=\"pocket\"\u003e\u003c/i-feather\u003e` |\n| ![power](https://unpkg.com/feather-icons@4.29.0/dist/icons/power.svg) | `Power` | `\u003ci-feather name=\"power\"\u003e\u003c/i-feather\u003e` |\n| ![printer](https://unpkg.com/feather-icons@4.29.0/dist/icons/printer.svg) | `Printer` | `\u003ci-feather name=\"printer\"\u003e\u003c/i-feather\u003e` |\n| ![radio](https://unpkg.com/feather-icons@4.29.0/dist/icons/radio.svg) | `Radio` | `\u003ci-feather name=\"radio\"\u003e\u003c/i-feather\u003e` |\n| ![refresh-ccw](https://unpkg.com/feather-icons@4.29.0/dist/icons/refresh-ccw.svg) | `RefreshCcw` | `\u003ci-feather name=\"refresh-ccw\"\u003e\u003c/i-feather\u003e` |\n| ![refresh-cw](https://unpkg.com/feather-icons@4.29.0/dist/icons/refresh-cw.svg) | `RefreshCw` | `\u003ci-feather name=\"refresh-cw\"\u003e\u003c/i-feather\u003e` |\n| ![repeat](https://unpkg.com/feather-icons@4.29.0/dist/icons/repeat.svg) | `Repeat` | `\u003ci-feather name=\"repeat\"\u003e\u003c/i-feather\u003e` |\n| ![rewind](https://unpkg.com/feather-icons@4.29.0/dist/icons/rewind.svg) | `Rewind` | `\u003ci-feather name=\"rewind\"\u003e\u003c/i-feather\u003e` |\n| ![rotate-ccw](https://unpkg.com/feather-icons@4.29.0/dist/icons/rotate-ccw.svg) | `RotateCcw` | `\u003ci-feather name=\"rotate-ccw\"\u003e\u003c/i-feather\u003e` |\n| ![rotate-cw](https://unpkg.com/feather-icons@4.29.0/dist/icons/rotate-cw.svg) | `RotateCw` | `\u003ci-feather name=\"rotate-cw\"\u003e\u003c/i-feather\u003e` |\n| ![rss](https://unpkg.com/feather-icons@4.29.0/dist/icons/rss.svg) | `Rss` | `\u003ci-feather name=\"rss\"\u003e\u003c/i-feather\u003e` |\n| ![save](https://unpkg.com/feather-icons@4.29.0/dist/icons/save.svg) | `Save` | `\u003ci-feather name=\"save\"\u003e\u003c/i-feather\u003e` |\n| ![scissors](https://unpkg.com/feather-icons@4.29.0/dist/icons/scissors.svg) | `Scissors` | `\u003ci-feather name=\"scissors\"\u003e\u003c/i-feather\u003e` |\n| ![search](https://unpkg.com/feather-icons@4.29.0/dist/icons/search.svg) | `Search` | `\u003ci-feather name=\"search\"\u003e\u003c/i-feather\u003e` |\n| ![send](https://unpkg.com/feather-icons@4.29.0/dist/icons/send.svg) | `Send` | `\u003ci-feather name=\"send\"\u003e\u003c/i-feather\u003e` |\n| ![server](https://unpkg.com/feather-icons@4.29.0/dist/icons/server.svg) | `Server` | `\u003ci-feather name=\"server\"\u003e\u003c/i-feather\u003e` |\n| ![settings](https://unpkg.com/feather-icons@4.29.0/dist/icons/settings.svg) | `Settings` | `\u003ci-feather name=\"settings\"\u003e\u003c/i-feather\u003e` |\n| ![share-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/share-2.svg) | `Share2` | `\u003ci-feather name=\"share-2\"\u003e\u003c/i-feather\u003e` |\n| ![share](https://unpkg.com/feather-icons@4.29.0/dist/icons/share.svg) | `Share` | `\u003ci-feather name=\"share\"\u003e\u003c/i-feather\u003e` |\n| ![shield-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/shield-off.svg) | `ShieldOff` | `\u003ci-feather name=\"shield-off\"\u003e\u003c/i-feather\u003e` |\n| ![shield](https://unpkg.com/feather-icons@4.29.0/dist/icons/shield.svg) | `Shield` | `\u003ci-feather name=\"shield\"\u003e\u003c/i-feather\u003e` |\n| ![shopping-bag](https://unpkg.com/feather-icons@4.29.0/dist/icons/shopping-bag.svg) | `ShoppingBag` | `\u003ci-feather name=\"shopping-bag\"\u003e\u003c/i-feather\u003e` |\n| ![shopping-cart](https://unpkg.com/feather-icons@4.29.0/dist/icons/shopping-cart.svg) | `ShoppingCart` | `\u003ci-feather name=\"shopping-cart\"\u003e\u003c/i-feather\u003e` |\n| ![shuffle](https://unpkg.com/feather-icons@4.29.0/dist/icons/shuffle.svg) | `Shuffle` | `\u003ci-feather name=\"shuffle\"\u003e\u003c/i-feather\u003e` |\n| ![sidebar](https://unpkg.com/feather-icons@4.29.0/dist/icons/sidebar.svg) | `Sidebar` | `\u003ci-feather name=\"sidebar\"\u003e\u003c/i-feather\u003e` |\n| ![skip-back](https://unpkg.com/feather-icons@4.29.0/dist/icons/skip-back.svg) | `SkipBack` | `\u003ci-feather name=\"skip-back\"\u003e\u003c/i-feather\u003e` |\n| ![skip-forward](https://unpkg.com/feather-icons@4.29.0/dist/icons/skip-forward.svg) | `SkipForward` | `\u003ci-feather name=\"skip-forward\"\u003e\u003c/i-feather\u003e` |\n| ![slack](https://unpkg.com/feather-icons@4.29.0/dist/icons/slack.svg) | `Slack` | `\u003ci-feather name=\"slack\"\u003e\u003c/i-feather\u003e` |\n| ![slash](https://unpkg.com/feather-icons@4.29.0/dist/icons/slash.svg) | `Slash` | `\u003ci-feather name=\"slash\"\u003e\u003c/i-feather\u003e` |\n| ![sliders](https://unpkg.com/feather-icons@4.29.0/dist/icons/sliders.svg) | `Sliders` | `\u003ci-feather name=\"sliders\"\u003e\u003c/i-feather\u003e` |\n| ![smartphone](https://unpkg.com/feather-icons@4.29.0/dist/icons/smartphone.svg) | `Smartphone` | `\u003ci-feather name=\"smartphone\"\u003e\u003c/i-feather\u003e` |\n| ![smile](https://unpkg.com/feather-icons@4.29.0/dist/icons/smile.svg) | `Smile` | `\u003ci-feather name=\"smile\"\u003e\u003c/i-feather\u003e` |\n| ![speaker](https://unpkg.com/feather-icons@4.29.0/dist/icons/speaker.svg) | `Speaker` | `\u003ci-feather name=\"speaker\"\u003e\u003c/i-feather\u003e` |\n| ![square](https://unpkg.com/feather-icons@4.29.0/dist/icons/square.svg) | `Square` | `\u003ci-feather name=\"square\"\u003e\u003c/i-feather\u003e` |\n| ![star](https://unpkg.com/feather-icons@4.29.0/dist/icons/star.svg) | `Star` | `\u003ci-feather name=\"star\"\u003e\u003c/i-feather\u003e` |\n| ![stop-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/stop-circle.svg) | `StopCircle` | `\u003ci-feather name=\"stop-circle\"\u003e\u003c/i-feather\u003e` |\n| ![sun](https://unpkg.com/feather-icons@4.29.0/dist/icons/sun.svg) | `Sun` | `\u003ci-feather name=\"sun\"\u003e\u003c/i-feather\u003e` |\n| ![sunrise](https://unpkg.com/feather-icons@4.29.0/dist/icons/sunrise.svg) | `Sunrise` | `\u003ci-feather name=\"sunrise\"\u003e\u003c/i-feather\u003e` |\n| ![sunset](https://unpkg.com/feather-icons@4.29.0/dist/icons/sunset.svg) | `Sunset` | `\u003ci-feather name=\"sunset\"\u003e\u003c/i-feather\u003e` |\n| ![table](https://unpkg.com/feather-icons@4.29.0/dist/icons/table.svg) | `Table` | `\u003ci-feather name=\"table\"\u003e\u003c/i-feather\u003e` |\n| ![tablet](https://unpkg.com/feather-icons@4.29.0/dist/icons/tablet.svg) | `Tablet` | `\u003ci-feather name=\"tablet\"\u003e\u003c/i-feather\u003e` |\n| ![tag](https://unpkg.com/feather-icons@4.29.0/dist/icons/tag.svg) | `Tag` | `\u003ci-feather name=\"tag\"\u003e\u003c/i-feather\u003e` |\n| ![target](https://unpkg.com/feather-icons@4.29.0/dist/icons/target.svg) | `Target` | `\u003ci-feather name=\"target\"\u003e\u003c/i-feather\u003e` |\n| ![terminal](https://unpkg.com/feather-icons@4.29.0/dist/icons/terminal.svg) | `Terminal` | `\u003ci-feather name=\"terminal\"\u003e\u003c/i-feather\u003e` |\n| ![thermometer](https://unpkg.com/feather-icons@4.29.0/dist/icons/thermometer.svg) | `Thermometer` | `\u003ci-feather name=\"thermometer\"\u003e\u003c/i-feather\u003e` |\n| ![thumbs-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/thumbs-down.svg) | `ThumbsDown` | `\u003ci-feather name=\"thumbs-down\"\u003e\u003c/i-feather\u003e` |\n| ![thumbs-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/thumbs-up.svg) | `ThumbsUp` | `\u003ci-feather name=\"thumbs-up\"\u003e\u003c/i-feather\u003e` |\n| ![toggle-left](https://unpkg.com/feather-icons@4.29.0/dist/icons/toggle-left.svg) | `ToggleLeft` | `\u003ci-feather name=\"toggle-left\"\u003e\u003c/i-feather\u003e` |\n| ![toggle-right](https://unpkg.com/feather-icons@4.29.0/dist/icons/toggle-right.svg) | `ToggleRight` | `\u003ci-feather name=\"toggle-right\"\u003e\u003c/i-feather\u003e` |\n| ![tool](https://unpkg.com/feather-icons@4.29.0/dist/icons/tool.svg) | `Tool` | `\u003ci-feather name=\"tool\"\u003e\u003c/i-feather\u003e` |\n| ![trash-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/trash-2.svg) | `Trash2` | `\u003ci-feather name=\"trash-2\"\u003e\u003c/i-feather\u003e` |\n| ![trash](https://unpkg.com/feather-icons@4.29.0/dist/icons/trash.svg) | `Trash` | `\u003ci-feather name=\"trash\"\u003e\u003c/i-feather\u003e` |\n| ![trello](https://unpkg.com/feather-icons@4.29.0/dist/icons/trello.svg) | `Trello` | `\u003ci-feather name=\"trello\"\u003e\u003c/i-feather\u003e` |\n| ![trending-down](https://unpkg.com/feather-icons@4.29.0/dist/icons/trending-down.svg) | `TrendingDown` | `\u003ci-feather name=\"trending-down\"\u003e\u003c/i-feather\u003e` |\n| ![trending-up](https://unpkg.com/feather-icons@4.29.0/dist/icons/trending-up.svg) | `TrendingUp` | `\u003ci-feather name=\"trending-up\"\u003e\u003c/i-feather\u003e` |\n| ![triangle](https://unpkg.com/feather-icons@4.29.0/dist/icons/triangle.svg) | `Triangle` | `\u003ci-feather name=\"triangle\"\u003e\u003c/i-feather\u003e` |\n| ![truck](https://unpkg.com/feather-icons@4.29.0/dist/icons/truck.svg) | `Truck` | `\u003ci-feather name=\"truck\"\u003e\u003c/i-feather\u003e` |\n| ![tv](https://unpkg.com/feather-icons@4.29.0/dist/icons/tv.svg) | `Tv` | `\u003ci-feather name=\"tv\"\u003e\u003c/i-feather\u003e` |\n| ![twitch](https://unpkg.com/feather-icons@4.29.0/dist/icons/twitch.svg) | `Twitch` | `\u003ci-feather name=\"twitch\"\u003e\u003c/i-feather\u003e` |\n| ![twitter](https://unpkg.com/feather-icons@4.29.0/dist/icons/twitter.svg) | `Twitter` | `\u003ci-feather name=\"twitter\"\u003e\u003c/i-feather\u003e` |\n| ![type](https://unpkg.com/feather-icons@4.29.0/dist/icons/type.svg) | `Type` | `\u003ci-feather name=\"type\"\u003e\u003c/i-feather\u003e` |\n| ![umbrella](https://unpkg.com/feather-icons@4.29.0/dist/icons/umbrella.svg) | `Umbrella` | `\u003ci-feather name=\"umbrella\"\u003e\u003c/i-feather\u003e` |\n| ![underline](https://unpkg.com/feather-icons@4.29.0/dist/icons/underline.svg) | `Underline` | `\u003ci-feather name=\"underline\"\u003e\u003c/i-feather\u003e` |\n| ![unlock](https://unpkg.com/feather-icons@4.29.0/dist/icons/unlock.svg) | `Unlock` | `\u003ci-feather name=\"unlock\"\u003e\u003c/i-feather\u003e` |\n| ![upload-cloud](https://unpkg.com/feather-icons@4.29.0/dist/icons/upload-cloud.svg) | `UploadCloud` | `\u003ci-feather name=\"upload-cloud\"\u003e\u003c/i-feather\u003e` |\n| ![upload](https://unpkg.com/feather-icons@4.29.0/dist/icons/upload.svg) | `Upload` | `\u003ci-feather name=\"upload\"\u003e\u003c/i-feather\u003e` |\n| ![user-check](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-check.svg) | `UserCheck` | `\u003ci-feather name=\"user-check\"\u003e\u003c/i-feather\u003e` |\n| ![user-minus](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-minus.svg) | `UserMinus` | `\u003ci-feather name=\"user-minus\"\u003e\u003c/i-feather\u003e` |\n| ![user-plus](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-plus.svg) | `UserPlus` | `\u003ci-feather name=\"user-plus\"\u003e\u003c/i-feather\u003e` |\n| ![user-x](https://unpkg.com/feather-icons@4.29.0/dist/icons/user-x.svg) | `UserX` | `\u003ci-feather name=\"user-x\"\u003e\u003c/i-feather\u003e` |\n| ![user](https://unpkg.com/feather-icons@4.29.0/dist/icons/user.svg) | `User` | `\u003ci-feather name=\"user\"\u003e\u003c/i-feather\u003e` |\n| ![users](https://unpkg.com/feather-icons@4.29.0/dist/icons/users.svg) | `Users` | `\u003ci-feather name=\"users\"\u003e\u003c/i-feather\u003e` |\n| ![video-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/video-off.svg) | `VideoOff` | `\u003ci-feather name=\"video-off\"\u003e\u003c/i-feather\u003e` |\n| ![video](https://unpkg.com/feather-icons@4.29.0/dist/icons/video.svg) | `Video` | `\u003ci-feather name=\"video\"\u003e\u003c/i-feather\u003e` |\n| ![voicemail](https://unpkg.com/feather-icons@4.29.0/dist/icons/voicemail.svg) | `Voicemail` | `\u003ci-feather name=\"voicemail\"\u003e\u003c/i-feather\u003e` |\n| ![volume-1](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-1.svg) | `Volume1` | `\u003ci-feather name=\"volume-1\"\u003e\u003c/i-feather\u003e` |\n| ![volume-2](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-2.svg) | `Volume2` | `\u003ci-feather name=\"volume-2\"\u003e\u003c/i-feather\u003e` |\n| ![volume-x](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume-x.svg) | `VolumeX` | `\u003ci-feather name=\"volume-x\"\u003e\u003c/i-feather\u003e` |\n| ![volume](https://unpkg.com/feather-icons@4.29.0/dist/icons/volume.svg) | `Volume` | `\u003ci-feather name=\"volume\"\u003e\u003c/i-feather\u003e` |\n| ![watch](https://unpkg.com/feather-icons@4.29.0/dist/icons/watch.svg) | `Watch` | `\u003ci-feather name=\"watch\"\u003e\u003c/i-feather\u003e` |\n| ![wifi-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/wifi-off.svg) | `WifiOff` | `\u003ci-feather name=\"wifi-off\"\u003e\u003c/i-feather\u003e` |\n| ![wifi](https://unpkg.com/feather-icons@4.29.0/dist/icons/wifi.svg) | `Wifi` | `\u003ci-feather name=\"wifi\"\u003e\u003c/i-feather\u003e` |\n| ![wind](https://unpkg.com/feather-icons@4.29.0/dist/icons/wind.svg) | `Wind` | `\u003ci-feather name=\"wind\"\u003e\u003c/i-feather\u003e` |\n| ![x-circle](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-circle.svg) | `XCircle` | `\u003ci-feather name=\"x-circle\"\u003e\u003c/i-feather\u003e` |\n| ![x-octagon](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-octagon.svg) | `XOctagon` | `\u003ci-feather name=\"x-octagon\"\u003e\u003c/i-feather\u003e` |\n| ![x-square](https://unpkg.com/feather-icons@4.29.0/dist/icons/x-square.svg) | `XSquare` | `\u003ci-feather name=\"x-square\"\u003e\u003c/i-feather\u003e` |\n| ![x](https://unpkg.com/feather-icons@4.29.0/dist/icons/x.svg) | `X` | `\u003ci-feather name=\"x\"\u003e\u003c/i-feather\u003e` |\n| ![youtube](https://unpkg.com/feather-icons@4.29.0/dist/icons/youtube.svg) | `Youtube` | `\u003ci-feather name=\"youtube\"\u003e\u003c/i-feather\u003e` |\n| ![zap-off](https://unpkg.com/feather-icons@4.29.0/dist/icons/zap-off.svg) | `ZapOff` | `\u003ci-feather name=\"zap-off\"\u003e\u003c/i-feather\u003e` |\n| ![zap](https://unpkg.com/feather-icons@4.29.0/dist/icons/zap.svg) | `Zap` | `\u003ci-feather name=\"zap\"\u003e\u003c/i-feather\u003e` |\n| ![zoom-in](https://unpkg.com/feather-icons@4.29.0/dist/icons/zoom-in.svg) | `ZoomIn` | `\u003ci-feather name=\"zoom-in\"\u003e\u003c/i-feather\u003e` |\n| ![zoom-out](https://unpkg.com/feather-icons@4.29.0/dist/icons/zoom-out.svg) | `ZoomOut` | `\u003ci-feather name=\"zoom-out\"\u003e\u003c/i-feather\u003e` |\n\n\n### FAQ\n\n**1. Is there a way to pick all the icons at once?**\n\nYes, by importing `allIcons` from `'angular-feather/icons'`:\n\n```ts\nimport { allIcons } from 'angular-feather/icons';\n\n@NgModule({\n  imports: [\n    FeatherModule.pick(allIcons)\n  ],\n  exports: [\n    FeatherModule\n  ]\n})\nexport class IconsModule { }\n```\n\nHowever, 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.\n\n### License\n\nMIT © [Michael Bazos](mailto:micabazos@gmail.com)\n","funding_links":[],"categories":["Uncategorized","Table of contents"],"sub_categories":["Uncategorized","Third Party Components"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelbazos%2Fangular-feather","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelbazos%2Fangular-feather","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelbazos%2Fangular-feather/lists"}