-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1cabbf1
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Vue Unicons Solid | ||
|
||
1100+ Pixel-perfect vector icons as Vue Components. These icons are designed by [Iconscout](https://iconscout.com). | ||
|
||
## Getting Started | ||
|
||
You can easily install [vue-unicons-thinline](https://iconscout.com/unicons) using npm. | ||
|
||
```bash | ||
npm install --save @iconscout/vue-unicons-thinline | ||
``` | ||
|
||
Or using `yarn` | ||
|
||
```bash | ||
yarn add @iconscout/vue-unicons-thinline | ||
``` | ||
|
||
## Usage | ||
|
||
### Use individual icons | ||
|
||
```html | ||
<template> | ||
<div> | ||
<uis-star size="180px" class="logo" /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { UisStar } from "@iconscout/vue-unicons-thinline"; | ||
export default { | ||
components: { | ||
UisStar, | ||
}, | ||
}; | ||
</script> | ||
``` | ||
|
||
## PRO Icons | ||
|
||
If you've subscribed to Unicons PRO, you can [request](mailto:support@iconscout.com?subject=Unicons) your own NPM Token to get an access to all the PRO icons as NPM Package. | ||
|
||
### More ways | ||
|
||
- [React-native-unicons](https://github.com/Iconscout/react-native-unicons) | ||
- [Vue-unicons](https://github.com/antonreshetov/vue-unicons) by [Anton Reshetov](https://github.com/antonreshetov) | ||
- [Vector SVGs](https://iconscout.com/unicons) | ||
- [Icon Font](https://github.com/Iconscout/unicons) | ||
|
||
## Contributing | ||
|
||
We will be happy to have community support for Unicons. Feel free to fork and create pull requests. We have given a small roadmap above so that you can help us build these features. | ||
|
||
### Icon Requests | ||
|
||
We've created a thread at [Iconscout Community](https://discuss.iconscout.com/new-topic?title=Icon%20Request:%20%3Cicon%3E&body=Hey%20there,%20%3Cicon%3E%20will%20be%20great%20fit%20for%20Unicons.%20I%20would%20love%20to%20use%20it!&category=Unicons&tags=requests) where you can request for new icons. And we'll be happy to design them in upcoming weeks. | ||
|
||
## License | ||
|
||
Unicons are Open Source icons and licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt). You're free to use these icons in your personal and commercial project. We would love to see the attribution in your app's **about** screen, but it's not mandatory. | ||
|
||
```html | ||
Vue Unicons by <a href="https://iconscout.com/">Iconscout</a> | ||
``` |