1
0
mirror of https://github.com/akveo/eva-icons.git synced 2025-09-03 10:53:08 +02:00

release: 1.0.0

This commit is contained in:
Dmitry Nehaychik
2018-10-31 15:14:14 +03:00
parent 4ae34998b9
commit 778237877d
4 changed files with 17 additions and 7 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "eva-icons-landing",
"version": "0.0.2",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "eva-icons-landing",
"version": "0.0.2",
"version": "1.0.0",
"browserslist": [
"> 1%",
"last 2 versions",

View File

@@ -1,13 +1,9 @@
{
"name": "eva-icons",
"version": "0.0.2",
"version": "1.0.0",
"description": "Eva Icons - beautifully crafted Open Source UI icons for common actions and items.",
"main": "eva.js",
"unpkg": "eva.min.js",
"files": [
"css/fonts",
"css/scss"
],
"license": "MIT",
"author": "akveo",
"repository": {

14
test.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<title></title>
<script src="https://unpkg.com/eva-icons"></script>
<body>
<i data-eva="github"></i>
<i data-eva="github" data-eva-fill="blue" data-eva-hover="true"></i>
<script>
eva.replace({ animation: { type: 'pulse', infinite: true, hover: false }, fill: 'red', width: '100px', height: '100px' })
</script>
</body>
</html>