Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rahulkrishnakumar/bucketsvg

A Free SVG Icon Library
https://github.com/rahulkrishnakumar/bucketsvg

css html icon-pack npm-package optimized-assets react svg svg-icons

Last synced: 3 days ago
JSON representation

A Free SVG Icon Library

Awesome Lists containing this project

README

        

# BucketSVG Svg Icon library

Beautiful Hand-crafted svg icons ready to use in your next app. Available as optimized SVG icons and via React using npm package

## Basic Usage

The quickest way to use these icons is to simply copy the source for the icon you need from bucketsvg.com and inline it directly into your HTML

```svg

```

## Using React

First install bucketsvg

```node

npm i bucketsvg
```

Now add icons using as a component in your app. example:

```js
import { MinusMini } from 'bucketsvg';

function MyComponent() {
return (



Some paragraph



);
}
```