Documentation
Get started with IcoNode
Install the package, import any icon, and start building beautiful interfaces instantly.
1
Install the package
Add @iconode/react to your project.
1npm install @iconode/reactAlready installed? Update to latest
1npm install @iconode/react@latest2
Import and use
Import any icon by name and drop it into your JSX.
App.tsx
1import { AdobePhotoshop, Figma } from '@iconode/react';
2
3export default function App() {
4 return (
5 <div className="flex gap-4 p-6">
6 <AdobePhotoshop size={24} />
7 <Figma size={32} />
8 </div>
9 );
10}