
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-feather-icon
Advanced tools
A ready-to-use customizable react native component for feather icons.
A lightweight and customizable React Native component for Feather icons. This package provides an easy-to-use wrapper around react-native-feather with TypeScript support.
Works well on Expo and React Native CLI.
First, install the package:
npm install react-native-feather-icon
# or
yarn add react-native-feather-icon
This package requires react-native-feather as a peer dependency. If you haven't installed it yet:
npm install react-native-feather
# or
yarn add react-native-feather
import FeatherIcon from 'react-native-feather-icon';
// Basic usage
<FeatherIcon iconName="Heart" />
// Customized icon
<FeatherIcon
iconName="User"
color="#FF0000"
width={24}
height={24}
strokeWidth={2}
/>
// With style prop
<FeatherIcon
iconName="ArrowRight"
style={{ marginRight: 10 }}
/>
| Prop | Type | Default | Description |
|---|---|---|---|
iconName | string | 'Circle' | Name of the Feather icon to display |
color | string | '#7D7D7D' | Color of the icon |
width | number | 15 | Width of the icon |
height | number | 15 | Height of the icon |
strokeWidth | number | 2 | Stroke width of the icon |
style | StyleProp<ViewStyle> | - | Additional styles for the icon container |
All Feather icons are available in this package. You can browse the complete list at: Feather Icons: https://feathericons.com
Important: Icon names should be in PascalCase format. Examples:
arrow-right→'ArrowRight'user-plus→'UserPlus'log-out→'LogOut'
MIT
Hilal Oruç
Contributions, issues, and feature requests are welcome!
If you like this project, please give it a ⭐️ on GitHub!
FAQs
A ready-to-use customizable react native component for feather icons.
We found that react-native-feather-icon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.