1.3.1 • Published 5 years ago

@zeit-ui/react-icons v1.3.1

Weekly downloads
322
License
MIT
Repository
github
Last release
5 years ago

React Icons

React icon components based on Vercel Design

npm Version Build

Install

$ yarn add @zeit-ui/react-icons
OR
$ npm install @zeit-ui/react-icons

Usage

import React from 'react'
import { GitHub } from '@zeit-ui/react-icons'

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

export default App

Icons can be configured with color, size and any SVG props:

<GitHub color="red" size={36} />
<GitHub color="blue" strokeWidth={2} />

Other ways

  1. You can include the whole icon pack:
import * as Icon from '@zeit-ui/react-icons'

const App = () => {
  return <Icon.GitHub />
}
  1. You can include single icon:
import Activity from '@zeit-ui/react-icons/activity'

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

LICENSE

MIT

1.3.1

5 years ago

1.3.0

5 years ago

1.2.2

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.2.1

5 years ago

1.0.0

5 years ago

0.0.1

5 years ago