An open API service indexing awesome lists of open source software.

https://github.com/devicons/react-devicons

React components for the svg icons of the devicon project
https://github.com/devicons/react-devicons

Last synced: 12 months ago
JSON representation

React components for the svg icons of the devicon project

Awesome Lists containing this project

README

          

# react-devicons

React components for the svg icons of the
[devicon](https://github.com/devicons/devicon) project.

## Installation

```js
yarn add react-devicons
// OR
npm i react-devicons
// OR
pnpm i react-devicons
```

## Usage

```tsx
import ReactOriginalIcon from "react-devicons/react/original";
// or (not recommended, this would increase bundle size by a lot)
import { GithubOriginalIcon, GithubOriginalWordmarkIcon } from "react-devicons";

```

### With color

Icons that are only one color can be recolored like this

```tsx
import DeviconPlainIcon from "react-devicons/devicon/plain";

;
```