-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
5 additions
and
4 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 |
---|---|---|
|
@@ -5,15 +5,15 @@ The SVG icon set used by eve's front-end application as Vue components. See the | |
## Installation | ||
|
||
```bash | ||
yarn add @eve/icons | ||
yarn add @eveio/icons | ||
|
||
# Install Vue as a peer dependency | ||
yarn add [email protected] | ||
``` | ||
|
||
## Usage | ||
|
||
Import and use the components from `@eve/icons`. You can find the list of the icons and their names [here](https://eve-icons.netlify.app/). | ||
Import and use the components from `@eveio/icons`. You can find the list of the icons and their names [here](https://eve-icons.netlify.app/). | ||
|
||
```vue | ||
<template> | ||
|
@@ -23,7 +23,7 @@ Import and use the components from `@eve/icons`. You can find the list of the ic | |
</template> | ||
<script> | ||
import { IconAccreditation } from '@eve/icons' | ||
import { IconAccreditation } from '@eveio/icons' | ||
export default { | ||
components: { | ||
|
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
{ | ||
"name": "@eve/icons", | ||
"name": "@eveio/icons", | ||
"version": "1.0.0", | ||
"description": "The icon set for eve's front-end applications", | ||
"main": "dist/eve-icons.js", | ||
"module": "dist/eve-icons.esm.js", | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"files": ["dist/*"], | ||
"devDependencies": { | ||
"@babel/core": "^7.12.13", | ||
"@rollup/plugin-commonjs": "^17.1.0", | ||
|