The icon components for Geist UI.
$ yarn add @geist-ui/icons
OR
$ npm install @geist-ui/icons
import React from 'react'
import { Code } from '@geist-ui/icons'
const App = () => {
return <Code />
}
export default App
Icons can be configured with color
, size
and any SVG props:
<Code color="red" size={36} />
<Code color="blue" strokeWidth={2} />
- You can include the whole icon pack:
import * as Icons from '@geist-ui/icons'
const App = () => {
return <Icons.Code />
}
- You can include single icon:
import Code from '@geist-ui/icons/code'
const App = () => {
return <Code />
}