react-octicon

A GitHub Octicons icon React component

Github星跟蹤圖

react-octicon

Travis
npm package
Coveralls

A React component which renders an icon using the GitHub Octicons icon font.

All Octicons

Note: Github Octicons has switched from providing an icon font to being a library for generating SVG markup for string templating engines, so this component uses the last version which provided an icon font, version 4.

As such, the available icons and their appearance may not match with what's on the Github Octicons documentation site.

If you want to use the latest version of GitHub Octicons, try react-octicons or react-icons instead, both of which provide a React component for each icon which renders an SVG.

Demo

https://insin.github.io/react-octicon/

Usage

Note: Webpack is required in order to use this component.

Install and use the Octicon component like so:

npm install --save react-octicon
import React from 'react'
import {render} from 'react-dom'
import Octicon from 'react-octicon'

let App = () => <div>
  <Octicon mega spin name="sync"/>
</div>

render(<App/>, document.querySelector('#app'))

Usage with nwb

If you use nwb to build and serve the React app you're using this component in, it will automatically configure Webpack to handle CSS, image and font dependencies for you.

Usage with Webpack

This component handles the Octicons CSS dependency for you, but you must use Webpack and configure it to handle CSS and associated font and image files.

For example, using the following webpack loaders:

npm install --save-dev css-loader file-loader style-loader
module: {
  rules: [
    {
      test: /\.css$/,
      use: [
        'style-loader',
        'css-loader'
      ]
    },
    {
      test: /\.(eot, otf, svg, ttf, woff, woff2)$/,
      use: 'file-loader'
    }
  ]
}

See Webpack's Loading CSS documentation for more info.

Required props

Prop, Description
----, -------------
name, The name of an icon in the Octicons set, e.g. 'trashcan'

Other props

Prop, Description
----, -------------
className, An additional class name for the element rendered by the component
mega, If true, a double-size icon will be displayed
spin, If true, the icon will spin

Any additional props given, such as event handlers or aria-* attributes, will be passed to the element rendered by the component.

MIT licensed

主要指標

概覽
名稱與所有者insin/react-octicon
主編程語言JavaScript
編程語言CSS (語言數: 2)
平台
許可證Other
所有者活动
創建於2015-07-01 05:40:33
推送於2017-12-01 18:29:41
最后一次提交2017-12-01 18:29:32
發布數6
最新版本名稱v3.0.1 (發布於 )
第一版名稱v1.0.0 (發布於 )
用户参与
星數73
關注者數1
派生數8
提交數18
已啟用問題?
問題數4
打開的問題數2
拉請求數1
打開的拉請求數0
關閉的拉請求數2
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?