Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
iconoir-react
Advanced tools
React library for Iconoir, the biggest open source icon library with tons of free icons.
Iconoir is an open-source library with 1300+ unique SVG icons, designed on a 24x24 pixels grid. No premium icons, no email sign-up, no newsletters.
iconoir-react
is an open source package that exports these icons as React.js components that can be used in all of your React projects.
npm | Yarn | pnpm |
---|---|---|
npm i iconoir-react | yarn add iconoir-react | pnpm add iconoir-react |
import React from 'react';
import { Iconoir } from 'iconoir-react';
const App = () => {
return <Iconoir />;
};
export default App;
Icons can take any standard SVG properties as optional props, e.g.
<Iconoir color="red" height={36} width={36} />
Default values for the most common props are given below:
Prop name | Default value |
---|---|
color | "currentColor" |
width | "1.5em" |
height | "1.5em" |
strokeWidth | 1.5 |
Tired of specifying the same props for every single icon, every time you use them? So were we. Use IconoirProvider to set the default icon props for everything inside IconoirProvider.
import { IconoirProvider, Check } from 'iconoir-react';
return (
<IconoirProvider
iconProps={{
color: '#AAAAAA',
strokeWidth: 1,
width: '1em',
height: '1em',
}}
>
<SomeOtherContainer>
<Check />
</SomeOtherContainer>
</IconoirProvider>
);
The React components are named as PascalCase variations of their reference names (i.e. airplane-helix-45deg
becomes AirplaneHelix45deg
).
FAQs
React library for Iconoir, the biggest open source icon library with tons of free icons.
The npm package iconoir-react receives a total of 19,024 weekly downloads. As such, iconoir-react popularity was classified as popular.
We found that iconoir-react demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.