beehively-icons
Version:
Beehively App Icon Set
50 lines (32 loc) • 724 B
Markdown
The Beehively Icons component library is designed for seamless integration into React applications
```bash
npm install beehively-icons
```
```javascript
import React from 'react';
import { Bee } from 'beehively-icons';
const App = () => {
return <Bee />;
};
export default App;
```
Icons can be configured with inline props:
```javascript
<Bee color="red" size={48} />
```
You can also include the whole icon pack:
```javascript
import React from 'react';
import * as Icon from 'beehively-icons';
const App = () => {
return <Icon.Bee />;
};
export default App;
```
The icon designs originate from flaticon.
Licensed under the MIT license.