
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
icons-reactjs
Advanced tools
![]()
Icons-reactjs is a component that allows you to display a large number and variety of built-in icons. It is a lightweight and very easy to use component that helps the developer to meet the requested requirements.
This shows icons in font format.
To install the component use the Node Package Manager (npm). You must open the command console at the root of your project and execute the command:
npm install icons-reactjs --save
Click me to go to the demo on codeSandbox!
Here is an example of how to implement the component:
import logo from './logo.svg';
import './App.css';
import IconsReactjs from 'icons-reactjs';
function App() {
return (
<div className="App App-header">
<div className=' container'>
<div className=' row'>
<div className='col-md-12 col-lg-12 col-sm-12 col-xs-12 text-center'>
<h1>Icons Component</h1>
<img src={logo} className="App-logo" alt="logo" />
<h2>icons-reactjs</h2>
<br/>
<IconsReactjs
icon={'check'}
fontSize={'2rem'}
color={'#0f5132'}
/>
<br/>
<IconsReactjs
icon={'github'}
fontSize={'2rem'}
color={'#0f5132'}
/>
</div>
</div>
</div>
</div>
);
}
export default App;
Props for component styles are displayed as a table with Name, Type, Default, and Description as headings.
Required props are marked with *.
| Name | Type | Default | Description |
|---|---|---|---|
fontSize | string | 2rem | Indicates the size of icon . |
color | string | cornflowerblue | Indicates the color of icon. |
Additional information about using the component pros.
string and in pixel format ("20px") or REM format ("1rem") or EM format ("1em") or the name of size("smaller", "medium", "large", " larger", "x-large", "xx-large").string, in the format RGB hex ("#AA00FF") or RGB decimal ("rgb (71, 98, 176)") or RGB percentage ("rgb (27%, 38%, 69% ) ") or the name of the color ("white").Props for component functionality are displayed as a table with Name, Type, Default, and Description as headers.
Required props are marked with *.
| Name | Type | Default | Description |
|---|---|---|---|
icon* | string | | Indicates the name of the icon that the component will display |
Additional information about using the component pros.
string.For more information about icon names you can visit the following website: Go to view icons and icon names. Click me to see icons and icon names!People who helped build the project from its inception
This project is licensed under the ISC License - see the file LICENSE.md for details.
FAQs
Icons Component
We found that icons-reactjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.