Skip to content

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

License

Notifications You must be signed in to change notification settings

MKAbuMattar/devicons-react

Repository files navigation

Devicon Logo

Devicons React

https://devicons-react.vercel.app/


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

Install package

Latest

#npm
npm install --save devicons-react@latest

#yarn
yarn add devicons-react@latest

#pnpm
pnpm add devicons-react@latest

Beta

#npm
npm install --save devicons-react@beta

#yarn
yarn add devicons-react@beta

#pnpm
pnpm add devicons-react@beta

Icon Behavior / props

Default behavior for icon

import { Aarch64Plain } from 'devicons-react'

const App = () => {
  return (
    <>
      <Aarch64Plain />
    </>
  )
}

export default App

Change size and color for icon

import { Aarch64Plain } from 'devicons-react'

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

export default App