## Basic Usage

Collection Open source Svg icons and generate React Vue component,
now collect [jamicons](https://github.com/michaelampr/jam) [humbleicons](https://github.com/zraly/humbleicons)

[使用说明](http://coderminer.com/cmicons?from=npm)

## React

First, install `cmicons-react` from npm:

```sh
npm install cmicons-react
```

Now each icon can be imported individually as a React component:

Jam icons

```js
import { SearchIcon } from 'cmicons-react/jam'

function MyComponent() {
  return (
    <div>
      <SearchIcon />
      <p>...</p>
    </div>
  )
}
```

Humble icons

```js
import { SearchIcon } from 'cmicons-react/humble'

function MyComponent() {
  return (
    <div>
      <SearchIcon />
      <p>...</p>
    </div>
  )
}
```

## License

This library is MIT licensed.
