devicons-react aims to gather all logos representing development languages and tools, build into devicon
Demo
Install package
npm install --save devicons-react
Icon Behavior / props
Default behavior for icon
import { Fragment } from 'react'
import { Aarch64Plain } from 'devicons-react'
const App = () => {
return (
<Fragment>
<Aarch64Plain />
</Fragment>
)
}
export default App
Change size and color for icon
import { Fragment } from 'react'
import { Aarch64Plain } from 'devicons-react'
const App = () => {
return (
<Fragment>
<Aarch64Plain color="red" size="500" />
</Fragment>
)
}
export default App