Iconoir vs Feather Icons – Minimal SVG Icon Sets Compared
Iconoir vs Feather Icons: both are minimal outline SVG icon sets. Compare their design, icon count, maintenance status, and when to use each.
Feather Icons pioneered the minimal, consistent outline icon aesthetic. Iconoir carries that philosophy forward with a bigger set and active maintenance. If you’re choosing between them today, the decision is mostly made for you.
The context
Feather Icons defined the “minimal outline SVG icon” aesthetic in 2017 — 24px grid, 1.5px stroke, rounded caps, maximum simplicity per icon. Its 286 icons became hugely influential on subsequent libraries (Heroicons, Lucide, and others all drew inspiration from it).
Iconoir continues that philosophy with 1,600+ icons and active development. It was created to fill the gaps Feather left — more category coverage, modern icon subjects (brand logos, programming tools), while keeping Feather’s clean aesthetic.
Feather Icons is no longer actively maintained. The last significant release was in 2021. For a maintained Feather fork with 5× more icons, use Lucide instead.
Design comparison
Icons only Iconoir covers
Maintenance status
| Iconoir | Feather Icons | |
|---|---|---|
| Last release | Active | 2021 (maintenance mode) |
| Icon count | 1,600+ | 286 |
| GitHub stars | High | High (legacy) |
| React package | ✓ | ✓ (unmaintained) |
Aesthetic differences
Both use identical specifications: 24px grid, 1.5px stroke, rounded line caps, square line joins. The visual difference is subtle:
- Feather: More angular geometry, very conservative line shapes
- Iconoir: Slightly warmer, with occasional curve flourishes that add character without breaking the minimal aesthetic
React integration
npm install iconoir-react
npm install react-feather
// Iconoir
import { Home } from "iconoir-react";
<Home width={20} height={20} />;
// Feather (unmaintained)
import { Home } from "react-feather";
<Home size={20} />;
The real recommendation
If you’re building something new and want the Feather aesthetic, use one of these instead:
- Lucide — the maintained Feather fork, 1,500+ icons, active community, MIT
- Iconoir — Feather-inspired but independently designed, 1,600+ icons, MIT
- Heroicons — Feather-inspired, 292 curated icons, Tailwind-optimized, MIT
Frequently asked questions
Explore more resources