
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
native-material-icons
Advanced tools
Installation | Usage | Examples | Browse icons
Because it is:
Install react-native-svg as well as this package:
npm i react-native-svg native-material-icons
Or with yarn:
yarn add react-native-svg native-material-icons
// Filled style
import { LightbulbIcon } from 'native-material-icons';
// Outlined style
import { LightbulbOutlinedIcon } from 'native-material-icons';
// Rounded style
import { LightbulbRoundIcon } from 'native-material-icons';
// Sharp style
import { LightbulbSharpIcon } from 'native-material-icons';
// Two tone style
import { LightbulbTwoToneIcon } from 'native-material-icons';
Or:
// Filled style
import LightbulbIcon from 'native-material-icons/LightbulbIcon';
// Outlined style
import LightbulbOutlinedIcon from 'native-material-icons/LightbulbOutlinedIcon';
// Rounded style
import LightbulbRoundIcon from 'native-material-icons/LightbulbRoundIcon';
// Sharp style
import LightbulbSharpIcon from 'native-material-icons/LightbulbSharpIcon';
// Two tone style
import LightbulbTwoToneIcon from 'native-material-icons/LightbulbTwoToneIcon';
Usage with Native Base:
import { Icon } from 'native-base';
import LightbulbIcon from 'native-material-icons/LightbulbIcon';
const App = () => {
return (
<Icon
/* Specify icon component */
as={LightbulbIcon}
/* Supports color */
color="gray.500"
/* Supports sizes */
size="md"
/>
);
};
Icons are downloaded from Google Fonts, so you can find all icons there.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
MIT © Artiom Tretjakovas
FAQs
Material Design icons for React Native.
The npm package native-material-icons receives a total of 125 weekly downloads. As such, native-material-icons popularity was classified as not popular.
We found that native-material-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.