npm.io
1.0.9 • Published 5 years ago

octicons-react

Licence
MIT
Version
1.0.9
Deps
1
Size
7 kB
Vulns
0
Weekly
0

React Octicons

Installation & Usage

NPM

npm install --save octicons-react
# or with yarn
yarn add octicons-react
A single octicon
const { Octicon, markGithub } = require('octicons-react')
// import Octicon, { markGithub } from 'octicons-react'

ReactDOM.render(
  <Octicon icon={markGithub} />,
  document.querySelector('#root')
)
All octicons
const { Octicon, Octicons } = require('octicons-react')
// import Octicon, { Octicons } from 'octicons-react'

ReactDOM.render(
  <Octicon icon={Octicons.alert} />,
  document.querySelector('#root')
)
API
Props
  • icon (object) - Octicon from octicons-modular library
  • scale (number) - Scale
    • Default: 1
  • className (string) - Additional classes
    • Default: null
  • label (string) - Label
    • Default: null
ReactDOM.render(
  <Octicon icon={icon} scale={1} className="additional-class" label="another label" />,
  document.querySelector('#root')
)

Development & Testing

Please check the Contributing Guidelines.

Contribution

Issues and PRs are welcome !