Devicons React

Devicons React is a collection of icons that symbolize programming languages, design tools, and development software.

GitHub releaseGitHubGitHub Repo stars

Install package

#npm
npm install --save devicons-react

#yarn
yarn add devicons-react

#pnpm
pnpm add devicons-react

Demo

import { Aarch64Plain } from 'devicons-react'

const App = () => {
  return (
    <>
      <Aarch64Plain color="red" size="500"  />
    </>
  )
}

export default App