npm install --save octicons-react
# or with yarn
yarn add octicons-react
const { Octicon, markGithub } = require('octicons-react')
// import Octicon, { markGithub } from 'octicons-react'
ReactDOM.render(
<Octicon icon={markGithub} />,
document.querySelector('#root')
)
const { Octicon, Octicons } = require('octicons-react')
// import Octicon, { Octicons } from 'octicons-react'
ReactDOM.render(
<Octicon icon={Octicons.alert} />,
document.querySelector('#root')
)
- 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')
)
Please check the Contributing Guidelines.
Issues and PRs are welcome !