If youโre a designer or just want to grab icons without any installations, simply head over to the icons page and download your desired icons.
For those with a React project, integrating developer-icons
via our npm package is the best and easiest method.
To add the icons to your project, run one of the following commands:
npm i developer-icons
or
yarn add developer-icons
or
pnpm add developer-icons
Import named icon components from the developer-icons
package and use them just like any other React component, with props/attributes similar to those of an SVG:
import { HtmlIcon, JavascriptIcon } from "developer-icons";
//inside your React component JSX
export const YourReactComponent = () => {
return (
<div>
<HtmlIcon className="html-icon" />
<JavascriptIcon size={52} style={{ marginLeft: 20 }} />
</div>
);
};
In this example, we import HtmlIcon
and JavascriptIcon
from the developer-icons
package and use them within a React component. You can customize the icons by adjusting their size
, color
, style
, and other properties.
To explore all the available icons, visit our icons page.