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
- Host: GitHub
- URL: https://github.com/devicons/react-devicons
- Owner: devicons
- License: mit
- Created: 2021-04-01T10:06:45.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T02:38:56.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T12:03:56.132Z (12 months ago)
- Language: TypeScript
- Homepage:
- Size: 127 KB
- Stars: 18
- Watchers: 5
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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";
;
```