Devicons React is a collection of icons that symbolize programming languages, design tools, and development software.
#npm
npm install --save devicons-react
#yarn
yarn add devicons-react
#pnpm
pnpm add devicons-react
import { Aarch64Plain } from 'devicons-react'
const App = () => {
return (
<>
<Aarch64Plain color="red" size="500" />
</>
)
}
export default App