npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-feather

v2.0.0

Published

Feather icons for React Native — tree-shakable, typed, ref-forwarding components

Downloads

81,008

Readme

react-native-feather

npm downloads bundlephobia license

Feather Icons for React Native — a thin, typed, tree-shakable wrapper around react-native-svg. 287 icons, ref-forwarding, size/color/absoluteStrokeWidth props.

Note on the icon set. Feather is designed by Cole Bemis (MIT). The set is largely stable — the upstream is in maintenance mode and no new icons have shipped since 2020. If you need a constantly growing set, consider Lucide (the active fork). This package keeps the original Feather set faithful for projects that want exactly that.

Install

npm install react-native-feather react-native-svg
# or
yarn add react-native-feather react-native-svg

react-native-svg is a peer dependency. Any version >=12 works.

Usage

import { ArrowUpCircle } from 'react-native-feather';

export const Demo = () => <ArrowUpCircle />;

Override defaults with props:

<ArrowUpCircle size={32} color="#0ea5e9" strokeWidth={1.5} />

You can also import the whole pack:

import * as Icon from 'react-native-feather';

<Icon.ArrowUpCircle />

Or deep-import a single icon (helps with bundlers that don't tree-shake well):

import { ArrowUpCircle } from 'react-native-feather/icons/ArrowUpCircle';

Forwarded refs

Every icon forwards its ref to the underlying Svg, so you can drive imperative APIs (e.g. react-native-reanimated) directly:

import { useRef } from 'react';
import { Activity } from 'react-native-feather';

const ref = useRef(null);
<Activity ref={ref} />

Props

All react-native-svg <Svg> props are accepted. Specific to icons:

| Prop | Type | Default | Description | | --------------------- | ---------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------ | | size | number | string | 24 | Sets both width and height. | | color | string | "currentColor" | Stroke color of the line. | | strokeWidth | number | string | 2 | Width of the stroke. | | absoluteStrokeWidth | boolean | false | Scales stroke down as the icon grows so perceived weight stays constant: strokeWidth * 24 / size. Useful at small sizes (16, 14). | | width | number | string | — | Overrides size for width only. | | height | number | string | — | Overrides size for height only. | | fill | string | "none" | Fill color (Feather icons are line-based, leave as none unless you know what you're doing). |

Migrating from v1

v2 is mostly drop-in. The breaking changes:

  • width / height defaults moved into a size prop. The old props still work; if you set both, the explicit one wins.
  • Use color instead of stroke (stroke still works but color is the documented prop).
  • Now ships ESM + CJS via the exports field. If your tooling pinned to lib/index.js, switch to the package name (e.g. import { Activity } from 'react-native-feather').
  • Peer deps widened: react-native-svg >=12, react >=16.8.
- <ArrowUpCircle stroke="red" width={32} height={32} />
+ <ArrowUpCircle color="red" size={32} />

Available icons

All 287 icons from Feather Icons. Names follow PascalCase, matching the Feather identifier:

arrow-up-circleArrowUpCircle, alert-triangleAlertTriangle, etc.

Browse the full set at feathericons.com.

Custom icons

The factory used internally is exported, so you can ship custom icons that share the same API:

import { createIcon } from 'react-native-feather';

export const Sparkle = createIcon('Sparkle', [
  ['path', { d: 'M12 2 14 10 22 12 14 14 12 22 10 14 2 12 10 10z', key: 'svg-0' }],
]);

Credits

License

MIT