Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month ago
JSON representation
A Free SVG Icon Library
- Host: GitHub
- URL: https://github.com/rahulkrishnakumar/bucketsvg
- Owner: rahulkrishnakumar
- License: mit
- Created: 2022-07-12T19:07:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-29T17:28:37.000Z (about 2 years ago)
- Last Synced: 2024-09-30T13:22:15.047Z (about 2 months ago)
- Topics: css, html, icon-pack, npm-package, optimized-assets, react, svg, svg-icons
- Language: TypeScript
- Homepage: https://bucketsvg.com
- Size: 432 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
);
}
```