React icon components for Geist UI.
npm install @geist-ui/react-iconsReact icon components for Geist UI.


```
$ yarn add @geist-ui/react-icons
OR
$ npm install @geist-ui/react-icons
`tsx
import React from 'react'
import { Code } from '@geist-ui/react-icons'
const App = () => {
return
}
export default App
`
Icons can be configured with color, size and any SVG props:
`ts`
1. You can include the whole icon pack:
`tsx
import * as Icons from '@geist-ui/react-icons'
const App = () => {
return
}
`
2. You can include single icon:
`tsx
import Code from '@geist-ui/react-icons/code'
const App = () => {
return
}
``