Skip to content

Commit 8a398cf

Browse files
committed
🚀 Launch v1.0.0
1 parent 7891736 commit 8a398cf

File tree

180 files changed

+4150
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+4150
-178
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Created by https://www.gitignore.io/api/git,node,jekyll
32

43
### Git ###
@@ -74,4 +73,6 @@ package-lock.json
7473

7574
# End of https://www.gitignore.io/api/git,node,jekyll
7675

77-
src/*.txt
76+
_test/
77+
_beta/
78+
desktop.ini

.npmignore

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Created by https://www.gitignore.io/api/git,node,jekyll
2+
3+
### Git ###
4+
*.orig
5+
6+
### Jekyll ###
7+
_site/
8+
.sass-cache/
9+
.jekyll-metadata
10+
11+
### Node ###
12+
# Logs
13+
logs
14+
*.log
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
19+
# Runtime data
20+
pids
21+
*.pid
22+
*.seed
23+
*.pid.lock
24+
25+
# Directory for instrumented libs generated by jscoverage/JSCover
26+
lib-cov
27+
28+
# Coverage directory used by tools like istanbul
29+
coverage
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (http://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# Typescript v1 declaration files
51+
typings/
52+
53+
# Optional npm cache directory
54+
.npm
55+
56+
# Optional eslint cache
57+
.eslintcache
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
65+
# Yarn Integrity file
66+
.yarn-integrity
67+
68+
# dotenv environment variables file
69+
.env
70+
71+
# package-lock file
72+
package-lock.json
73+
74+
# End of https://www.gitignore.io/api/git,node,jekyll
75+
76+
_test/
77+
_beta/
78+
docs/

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: node_js
2+
node_js:
3+
- "node"
4+
5+
before_install:
6+
- npm install -g npm@4.3.0
7+
8+
install:
9+
- npm install
10+
11+
before_script:
12+
- npm install -g gulp
13+
14+
script:
15+
- gulp
16+
17+
notifications:
18+
email: false

README.md

+50-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,54 @@
2727

2828
A set of beautiful handcrafted SVG icons.
2929

30-
# Release date: May 4th 2018
30+
![Features](features.png)
3131

32-
![Sneak Preview 😱](docs/img/sneakPrev.png)
32+
## Getting Started
33+
34+
Lunar Icons is a set of SVG icons that can be used in your html page. You can download them from this repo, and use them either inline, inside an `<img/>` tag, or any other way you would use SVG files.
35+
36+
To make the process of using these icons a bit easier, we wrote some JS that will automatically replace them for you.
37+
38+
#### Get script
39+
40+
You can either download `lunar-icons.js` or `lunar-icons.min.js` from the `./dist/` folder in this repository, or you can include them via a CDN.
41+
42+
```html
43+
<script src="../path/to/lunar-icons.min.js"></script>
44+
<!-- Or if you decide to use a CDN -->
45+
<script src="https://unpkg.com/lunar-icons/dist/lunar-icons.min.js"></script>
46+
```
47+
48+
#### Use icon
49+
50+
To use an icon, use the following code, and add the name of the icon you'd like to use in the data-icon attribute.
51+
52+
```html
53+
<i data-icon="sheild"></i>
54+
```
55+
56+
#### Replace icons
57+
58+
All `<i>` tags will be replaced by SVG on load, but any additional icons you add after the page has loaded will not be replaced. To replace them, use the following JavaScript snippet:
59+
60+
```js
61+
lunarIcons.replace()
62+
```
63+
64+
Any class or id that you add to an icon before replacing it will be kept on the replaced SVG. We will also add the `.lunar-icons` class to all SVGs.
65+
66+
## Versioning
67+
68+
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/lucasgruwez/waffle-grid/tags).
69+
70+
## Authors
71+
72+
- **Lucas Gruwez** - *Author* - [@lucasgruwez](https://github.com/lucasgruwez)
73+
74+
See also the list of [contributors](https://github.com/lucasgruwez/waffle-grid/contributors) who participated in this project.
75+
76+
## License
77+
78+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
79+
80+
Copyright &copy; 2018 @lucasgruwez All Rights Reserved.

dist/icons.json

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
{
2+
"alarm": "<circle cx=\"12\" cy=\"14\" r=\"8\"/><path d=\"M7.79 3.84a11 11 0 0 0-4.94 4.05m13.36-4.05a11 11 0 0 1 4.94 4.05M12 9v5l3 3\"/>",
3+
"alarm_add": "<circle cx=\"12\" cy=\"14\" r=\"8\"/><path d=\"M7.79 3.84a11 11 0 0 0-4.94 4.05m13.36-4.05a11 11 0 0 1 4.94 4.05M12 10v8m-4-4h8\"/>",
4+
"alarm_off": "<defs><mask id=\"cancel-alarm\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path d=\"M.75 0l24 24\" stroke=\"#000\"/></mask></defs><g mask=\"url(#cancel-alarm)\"><path d=\"M2 4l18 18\"/><circle cx=\"12\" cy=\"14\" r=\"8\"/><path d=\"M4.22 6.22a11 11 0 0 0-1.37 1.67m13.36-4.05a11 11 0 0 1 4.94 4.05\"/></g>",
5+
"align_center": "<path d=\"M4 6h16M6 10h12M4 14h16M5.5 18h13\"/>",
6+
"align_justify": "<path d=\"M4 6h16M4 10h16M4 14h16M4 18h16\"/>",
7+
"align_left": "<path d=\"M4 6h16M4 10h12M4 14h16M4 18h13\"/>",
8+
"align_right": "<path d=\"M4 6h16M8 10h12M4 14h16M7 18h13\"/>",
9+
"arrow_down": "<path d=\"M6 12l6 6 6-6m-6-6v12\"/>",
10+
"arrow_left": "<path d=\"M12 6l-6 6 6 6m-6-6h12\"/>",
11+
"arrow_right": "<path d=\"M12 6l6 6-6 6m-6-6h12\"/>",
12+
"arrow_up": "<path d=\"M6 12l6-6 6 6m-6-6v12\"/>",
13+
"battery": "<path d=\"M10 4h4M8 20h8V7H8z\"/>",
14+
"battery_low": "<path d=\"M10 4h4M8 20h8V7H8zM12 9v6m0 1v2\"/>",
15+
"bell": "<path d=\"M4 19q2 0 2-5 0-9 6-9t6 9q0 5 2 5zm6 0a2 2 0 0 0 4 0\"/>",
16+
"bell_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M4 19q2 0 2-5 0-9 6-9t6 9q0 5 2 5zm6 0a2 2 0 0 0 4 0\"/></g>",
17+
"bell_ringing": "<path d=\"M4 19q2 0 2-5 0-9 6-9t6 9q0 5 2 5zm6 0a2 2 0 0 0 4 0M5 5q-1.5 2-2.25 7M19 5q1.5 2 2.25 7\"/>",
18+
"bluetooth": "<path d=\"M7 7l10 10-5 5V2l5 5L7 17\"/>",
19+
"bluetooth_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M7 7l10 10-5 5V2l5 5L7 17\"/></g>",
20+
"book": "<path d=\"M3 6c3-1 7-1 9 0 2-1 6-1 9 0v13c-3-1-7-1-9 0-2-1-6-1-9 0zm9 12V6\"/>",
21+
"bookmark": "<path d=\"M6 2h12v20l-6-4-6 4z\"/>",
22+
"bus": "<path d=\"M5 4h14v14H5zm2 14v3H6v-3m11 0v3h1v-3M5 12h14M7 15h2m8 0h-2\"/>",
23+
"cable_car": "<path d=\"M6 11q0-2 2-2h8q2 0 2 2v7q0 2-2 2H8q-2 0-2-2zm0 5h12M12 4v12M5 5l14-2\"/>",
24+
"camera": "<path d=\"M3 7h5l2-2h4l2 2h5v12H3z\"/><circle cx=\"12\" cy=\"12.5\" r=\"3\"/>",
25+
"car": "<path d=\"M5 11l3-6h8l3 6v6H5zm1 6v2H5v-2m13 0v2h1v-2M5 11h14M7 14h2m8 0h-2\"/>",
26+
"chat": "<path d=\"M4 4h16v11H8l-4 5z\"/>",
27+
"check": "<path d=\"M4 12l5 5L20 6\"/>",
28+
"cheveron_down": "<path d=\"M6 9l6 6 6-6\"/>",
29+
"cheveron_left": "<path d=\"M15 6l-6 6 6 6\"/>",
30+
"cheveron_right": "<path d=\"M9 6l6 6-6 6\"/>",
31+
"cheveron_up": "<path d=\"M6 15l6-6 6 6\"/>",
32+
"clipboard": "<path d=\"M16 4h3v17H5V4h3m1-1v3h6V3z\"/>",
33+
"clock": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 6v6l4 4\"/>",
34+
"cloud": "<path d=\"M18 19a4 4 0 1 0 0-8 5.5 5.5 0 0 0-11-1 4.5 4.5 0 1 0 0 9z\"/>",
35+
"cloud_download": "<path d=\"M18 17a4 4 0 1 0 0-8A5.5 5.5 0 0 0 7 8a4.5 4.5 0 1 0-1.1 9H6m6-5v10m-4-4l4 4 4-4\"/>",
36+
"cloud_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M18 19a4 4 0 1 0 0-8 5.5 5.5 0 0 0-11-1 4.5 4.5 0 1 0 0 9z\"/></g>",
37+
"cloud_upload": "<path d=\"M18 17a4 4 0 1 0 0-8A5.5 5.5 0 0 0 7 8a4.5 4.5 0 1 0-1.1 9H6m6-5v10m-4-6l4-4 4 4\"/>",
38+
"code": "<path d=\"M7 7l-5 5 5 5M17 7l5 5-5 5m-8 2l6-14\"/>",
39+
"copy": "<path d=\"M8 4h10v13H8zM5 5v15h12\"/>",
40+
"copyright": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M16 9a5 5 0 1 0 0 6\"/>",
41+
"credit_card": "<path d=\"M4 6h16v12H4zm0 4h16\"/>",
42+
"crop": "<path d=\"M6 2v16h16M2 6h4m12 16v-4M8 6h10v10\"/>",
43+
"data": "<path d=\"M4 20h16V4z\"/>",
44+
"data_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M4 20h16V4z\"/></g>",
45+
"disc": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/>",
46+
"discussion": "<path d=\"M4 7Q3 7 3 8v13l4-5h7q1 0 1-1m6-12v14l-4-4H6V3z\"/>",
47+
"divide": "<path d=\"M6 12h12m-7-5h2m-2 10h2\"/>",
48+
"download": "<path d=\"M3 20h18M6 10l6 6 6-6m-6-7v13\"/>",
49+
"download_done": "<path d=\"M4 12l5 5L20 6M3 20h18\"/>",
50+
"euro": "<path d=\"M17 4c-6-1-9 3-9 8s3 9 9 8M6 10.5h8m-8 3h8\"/>",
51+
"fast_forwards": "<path d=\"M3 6v12l9-6zm9 0v12l9-6z\"/>",
52+
"fast_rewind": "<path d=\"M21 6v12l-9-6zm-9 0v12l-9-6z\"/>",
53+
"file": "<path d=\"M4 2h10l6 6v14H4z\"/>",
54+
"file_add": "<path d=\"M4 2h10l6 6v14H4zm8 17v-8m-4 4h8\"/>",
55+
"file_clear": "<path d=\"M4 2h10l6 6v14H4zm5 10l6 6m-6 0l6-6\"/>",
56+
"file_remove": "<path d=\"M4 2h10l6 6v14H4zm4 13h8\"/>",
57+
"film_camera": "<path d=\"M4 11h12v8H4zm12 3l4-3v8l-4-3\"/><circle cx=\"7\" cy=\"7\" r=\"3\"/><circle cx=\"13\" cy=\"7\" r=\"3\"/>",
58+
"filter": "<path d=\"M4 4h16l-6 8v8l-4-2v-6z\"/>",
59+
"folder": "<path d=\"M4 19h16V7h-7l-1-2H4z\"/>",
60+
"folder_add": "<path d=\"M4 19h16V7h-7l-1-2H4zm8-3v-6m-3 3h6\"/>",
61+
"folder_open": "<path d=\"M19 10V7h-7l-1-2H3v14h13M3 19l3-8h16l-3 8h-3\"/>",
62+
"folder_remove": "<path d=\"M4 19h16V7h-7l-1-2H4zm5-6h6\"/>",
63+
"forbidden": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M5 5l14 14\"/>",
64+
"fullscreen": "<path d=\"M8 4H4v4m12-4h4v4M4 16v4h4m8 0h4v-4\"/>",
65+
"game_controler": "<path d=\"M2 7h20v10H2zm3 5h6M8 9v6m6-2h2m1-2h2\"/>",
66+
"heart": "<path d=\"M19.18 12.18L12 19.36l-7.18-7.18A4.5 4.5 0 1 1 12 6.5a4.5 4.5 0 1 1 7.18 5.68z\"/>",
67+
"help": "<path d=\"M9 10a3 3 0 1 1 3 3v2m0 1v2\"/><circle cx=\"12\" cy=\"12\" r=\"10\"/>",
68+
"history": "<path d=\"M3.52 15v.3a9 9 0 1 0 2.12-9.66L3 8m6 0H3V2m9 4v6l4 4\"/>",
69+
"home": "<path d=\"M6 10v10h12V10M3 13l9-9 9 9m-11 7v-8h4v8\"/>",
70+
"hospital": "<path d=\"M9 4h6v5h5v6h-5v5H9v-5H4V9h5z\"/>",
71+
"image": "<path d=\"M4 4v16h16V4zm0 12l4-4 8 8m-5-5l5-5 4 4M8 8h2\"/>",
72+
"info": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 16v-5m0-3v2\"/>",
73+
"invisible": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M12 10a2 2 0 1 0 2 2\"/><path d=\"M4 12q8-10 16 0-8 10-16 0z\"/></g>",
74+
"justice": "<path d=\"M8 20h8zm4 0V3M5 7h2c3-2 7-2 10 0h2M3 15l2-8 2 8zm14 0l2-8 2 8z\"/>",
75+
"key": "<circle cx=\"6\" cy=\"12\" r=\"3.5\"/><path d=\"M10 12h12m0 2h-4\"/>",
76+
"lab": "<path d=\"M9 4h6l-1 2v6l5 8H5l5-8V6z\"/>",
77+
"language": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><ellipse cx=\"12\" cy=\"12\" rx=\"4\" ry=\"10\"/><path d=\"M3 8h18M3 16h18\"/>",
78+
"laptop": "<path d=\"M5 6h14v9H5zM2 18h20\"/>",
79+
"layout_fluid": "<path d=\"M2 2h8v11H2zm12 0h8v6h-8zM2 17h8v5H2zm12-5h8v10h-8z\"/>",
80+
"layout_grid": "<path d=\"M2 2h8v8H2zm12 0h8v8h-8zM2 14h8v8H2zm12 0h8v8h-8z\"/>",
81+
"library": "<path d=\"M4 4v16M8 7v13m4-14v14m4-14l4 14\"/>",
82+
"lightbulb": "<path d=\"M9 20h6m-5-3h4v-3a5.17 5.17 0 1 0-4 0z\"/>",
83+
"lightning": "<path d=\"M7 4v10h4v6l5-10h-5l2-6z\"/>",
84+
"lightning_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M7 4v10h4v6l5-10h-5l2-6z\"/></g>",
85+
"link": "<path d=\"M10 14l4-4m-3-1l3-3a1 1 0 0 1 4 4l-3 3m-6-2l-3 3a1 1 0 0 0 4 4l3-3\"/>",
86+
"link_external": "<path d=\"M12 12l8-8m-6 0h6v6m-8-6H4v16h16v-8\"/>",
87+
"list": "<path d=\"M4 8h2m2 0h12M4 12h2m2 0h12M4 16h2m2 0h12\"/>",
88+
"location": "<path d=\"M12 20l5-6a6.5 6.5 0 1 0-10 0z\"/><circle cx=\"12\" cy=\"10\" r=\"1.5\"/>",
89+
"location_add": "<path d=\"M12 20l5-6a6.5 6.5 0 1 0-10 0zM9 10h6m-3-3v6\"/>",
90+
"location_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M12 20l5-6a6.5 6.5 0 1 0-10 0z\"/></g>",
91+
"location_remove": "<path d=\"M12 20l5-6a6.5 6.5 0 1 0-10 0zM9 10h6\"/>",
92+
"lock": "<path d=\"M4 12h16v10H4zm8 3.5v3M6 11V8a6 6 0 0 1 12 0v3\"/>",
93+
"lock_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M4 12h16v10H4zm8 3.5v3M6 11V8a6 6 0 0 1 12 0v3\"/></g>",
94+
"lock_open": "<path d=\"M4 12h16v10H4zm8 3.5v3M6 8a6 6 0 0 1 12 0v3\"/>",
95+
"mail": "<path d=\"M4 6h16v12H4zm0 0l8 6 8-6\"/>",
96+
"mail_open": "<path d=\"M20 9v12H4V9m0 0l8 6 8-6-8-6z\"/>",
97+
"menu": "<path d=\"M4 6h16M4 12h16M4 18h16\"/>",
98+
"minimise": "<path d=\"M8 4v4H4m12-4v4h4M4 16h4v4m8 0v-4h4\"/>",
99+
"minus": "<path d=\"M4 12h16\"/>",
100+
"minus_circle": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M7 12h10\"/>",
101+
"money": "<path d=\"M15.5 9c0-4-7-4-7 0s7 2 7 6-7 4-7 0M12 3v3m0 15v-3\"/>",
102+
"money_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M15.5 9c0-4-7-4-7 0s7 2 7 6-7 4-7 0M12 3v3m0 15v-3\"/></g>",
103+
"monitor": "<path d=\"M4 5h16v10H4zm3 14h10m-5 0v-3\"/>",
104+
"move": "<path d=\"M6 8l-4 4 4 4m12-8l4 4-4 4M2 12h20M8 6l4-4 4 4M8 18l4 4 4-4M12 2v20\"/>",
105+
"move_h": "<path d=\"M6 8l-4 4 4 4m12-8l4 4-4 4M2 12h20\"/>",
106+
"move_v": "<path d=\"M8 6l4-4 4 4M8 18l4 4 4-4M12 2v20\"/>",
107+
"mug": "<path d=\"M5 5v12q0 2 2 2h6q2 0 2-2V5zm10 3h4v7h-4\"/>",
108+
"music": "<path d=\"M8 18V6l11-2v12M8 9l11-2\"/><circle cx=\"6\" cy=\"18\" r=\"2\"/><circle cx=\"17\" cy=\"16\" r=\"2\"/>",
109+
"pause": "<path d=\"M8 6v12m8-12v12\"/>",
110+
"person": "<circle cx=\"12\" cy=\"8.5\" r=\"4\"/><path d=\"M5 20a8 8 0 0 1 14 0\"/>",
111+
"play": "<path d=\"M7.5 6v12l9-6z\"/>",
112+
"plus": "<path d=\"M4 12h16m-8-8v16\"/>",
113+
"plus_circle": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 7v10m-5-5h10\"/>",
114+
"pound": "<path d=\"M16 8a4 4 0 0 0-8 0v6q0 6-2 6h12M6 12h6\"/>",
115+
"power": "<path d=\"M8 5.07a8 8 0 1 0 8 0M12 2v10\"/>",
116+
"recording": "<path d=\"M2 5h20v14H2zm6 9h8\"/><circle cx=\"8\" cy=\"12\" r=\"2\"/><circle cx=\"16\" cy=\"12\" r=\"2\"/>",
117+
"refresh_ccw": "<path d=\"M3.16 15a9 9 0 0 0 15.2 3.36L21 16m-6 0h6v6M20.48 9A9 9 0 0 0 5.64 5.64L3 8m6 0H3V2\"/>",
118+
"refresh_cw": "<path d=\"M3.16 9a9 9 0 0 1 15.2-3.36L21 8m-6 0h6V2M20.48 15a9 9 0 0 1-14.84 3.36L3 16m6 0H3v6\"/>",
119+
"rotate_ccw": "<path d=\"M3.52 15v.3a9 9 0 1 0 2.12-9.66L3 8m6 0H3V2\"/>",
120+
"rotate_cw": "<path d=\"M20.48 15v.3a9 9 0 1 1-2.12-9.66L21 8m-6 0h6V2\"/>",
121+
"save": "<path d=\"M4 4h12l4 4v12H4zm4 0v6h8V4\"/><circle cx=\"12\" cy=\"15\" r=\"2\"/>",
122+
"school": "<path d=\"M2 10l10-5 10 5-10 5zm20 0v9M6 12v3.5l6 3 6-3V12\"/>",
123+
"search": "<circle cx=\"15\" cy=\"9\" r=\"6\"/><path d=\"M3 21l8-8\"/>",
124+
"send": "<path d=\"M4 4l16 8-16 8 3-8zm3 8h13\"/>",
125+
"settings": "<path d=\"M14.59 2.34l.91 3.6 3.57-1.01 2.59 4.48L19 12l2.66 2.59-2.59 4.48-3.57-1.01-.91 3.6H9.41l-.91-3.6-3.57 1.01-2.59-4.48L5 12 2.34 9.41l2.59-4.48L8.5 5.94l.91-3.6z\"/><circle cx=\"12\" cy=\"12\" r=\"3\"/>",
126+
"share": "<path d=\"M16 7l-8 4m0 2l8 4\"/><circle cx=\"6\" cy=\"12\" r=\"2\"/><circle cx=\"18\" cy=\"6\" r=\"2\"/><circle cx=\"18\" cy=\"18\" r=\"2\"/>",
127+
"sheild": "<path d=\"M5 7q0 10 7 14 7-4 7-14-3 0-7-3-4 3-7 3z\"/>",
128+
"sheild_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M5 7q0 10 7 14 7-4 7-14-3 0-7-3-4 3-7 3z\"/></g>",
129+
"skip": "<path d=\"M6.5 5v14m11-13v12l-9-6z\"/>",
130+
"skip_back": "<path d=\"M17.5 5v14M6.5 6v12l9-6z\"/>",
131+
"smartphone": "<path d=\"M7 4h10v16H7zm3 13h4\"/>",
132+
"speaker": "<path d=\"M6 4h12v16H6zm5 3.5h2\"/><circle cx=\"12\" cy=\"14\" r=\"3\"/>",
133+
"star": "<path d=\"M12 4l2.35 4.76 5.26.77-3.81 3.71.9 5.23L12 16l-4.7 2.47.9-5.23-3.81-3.71 5.26-.77z\"/>",
134+
"stop": "<path d=\"M6 6h12v12H6z\"/>",
135+
"tablet": "<path d=\"M5 3h14v18H5zm5 15h4\"/>",
136+
"terminal": "<path d=\"M3 5h18v14H3zm3 3l4 4-4 4m6-1h6\"/>",
137+
"times": "<path d=\"M6 6l12 12M6 18L18 6\"/>",
138+
"times_circle": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M8 8l8 8m-8 0l8-8\"/>",
139+
"train": "<path d=\"M5 6q0-2 2-2h10q2 0 2 2v12H5zm0 6h14M7 15h2m8 0h-2m-3-3V4M8 18l-4 5m12-5l4 5M6 21h12\"/>",
140+
"trash": "<path d=\"M7 7l1 13h8l1-13M4 7h16M9 6V4h6v2\"/>",
141+
"trash_empty": "<path d=\"M7 7l1 13h8l1-13M4 7h16M9 6V4h6v2m-5 6l4 4m-4 0l4-4\"/>",
142+
"truck": "<path d=\"M3 6h12v10H9m-4 0H3V6h2m14 10h2v-4l-4-4h-2\"/><circle cx=\"7\" cy=\"16\" r=\"2\"/><circle cx=\"17\" cy=\"16\" r=\"2\"/>",
143+
"upload": "<path d=\"M3 20h18M6 10l6-6 6 6m-6-6v13\"/>",
144+
"visible": "<circle cx=\"12\" cy=\"12\" r=\"2\"/><path d=\"M4 12q8-10 16 0-8 10-16 0z\"/>",
145+
"warning": "<path d=\"M2 20h20L12 2.68zM12 9v5m0 1v2\"/>",
146+
"warning_circle": "<circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 7v7m0 1v2\"/>",
147+
"watch": "<circle cx=\"12\" cy=\"12\" r=\"6\"/><path d=\"M7.5 8L9 2h6l1.5 6m-9 8L9 22h6l1.5-6M12 8.5V12l2 2\"/>",
148+
"weights": "<path d=\"M6 12h12M6 7v10M3 9v6m15-8v10m3-8v6\"/>",
149+
"wifi": "<path d=\"M12 19L22 9A14.14 14.14 0 0 0 2 9z\"/>",
150+
"wifi_off": "<defs><mask id=\"cancel\"><rect width=\"100%\" height=\"100%\" fill=\"#fff\"/><path stroke=\"#000\" d=\"M2.75 0l24 24\"/></mask></defs><g mask=\"url(#cancel)\"><path d=\"M2 2l20 20M12 19L22 9A14.14 14.14 0 0 0 2 9z\"/></g>",
151+
"zip": "<path d=\"M4 2h10l6 6v14H4zm4 1v2m2 0v2M8 7v2m2 0v2m-2 0v2m2 0v2m-2 0v2\"/>",
152+
"zoom_in": "<circle cx=\"15\" cy=\"9\" r=\"6\"/><path d=\"M3 21l8-8m1-4h6m-3-3v6\"/>",
153+
"zoom_out": "<circle cx=\"15\" cy=\"9\" r=\"6\"/><path d=\"M3 21l8-8m1-4h6\"/>"
154+
}

0 commit comments

Comments
 (0)