Skip to content

Commit

Permalink
feat: add feather
Browse files Browse the repository at this point in the history
  • Loading branch information
Belar committed Sep 6, 2024
1 parent 7ebadce commit f845c84
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ export const iconPackages = [
},
iconsDir: "../node_modules/remixicon/icons",
},
{
id: "feather",
variant: "regular",
iconsDir: "../node_modules/feather-icons/dist/icons",
},
];
25 changes: 25 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@penpot/plugin-styles": "^0.10.0",
"@phosphor-icons/core": "^2.1.1",
"bootstrap-icons": "^1.11.3",
"feather-icons": "^4.29.2",
"heroicons": "^2.1.5",
"iconoir": "^7.8.0",
"lucide-react": "^0.427.0",
Expand Down
10 changes: 10 additions & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,16 @@ export const iconLibraries: IconLibrary[] = [
},
icons: generateVariants("remixicon", ["regular", "fill"]),
},
{
id: "feather",
name: "Feather",
website: "https://feathericons.com/",
license: {
name: "MIT",
url: "https://github.com/feathericons/feather/blob/main/LICENSE",
},
icons: generateVariants("feather", ["regular"]),
},
];

export const defaultIconSetSettings: Record<string, IconSetSettings> =
Expand Down

0 comments on commit f845c84

Please sign in to comment.