├── .gitignore
├── README.md
├── dist
├── compass.svg
├── minimize.svg
└── terminal.svg
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | *.log
3 | .DS_Store
4 | yarn.lock
5 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # tiny-svg-icons
2 |
3 | This is an addtion to [bytesize-icons](https://github.com/danklammer/bytesize-icons), and this is also my personal practice. I will make at least one new icon each week.
4 |
5 | ## Icons
6 |
7 |
|minimize
8 | ---|---
9 |
10 | ```html
11 |
14 | ```
15 |
16 | Try it on [jsbin.com](http://jsbin.com/qafexet/edit?html,output)
17 |
18 |
|compass
19 | ---|---
20 |
21 | ```html
22 |
26 | ```
27 |
28 | Try it on [jsbin.com](http://jsbin.com/zepaqov/edit?html,output)
29 |
30 |
|terminal
31 | ---|---
32 |
33 | ```html
34 |
37 | ```
38 |
39 | Try it on [jsbin.com](https://jsbin.com/tubequs/edit?html,output)
40 |
41 | ## License
42 |
43 | [MIT](https://egoist.mit-license.org/) © [EGOIST](https://github.com/egoist)
44 |
--------------------------------------------------------------------------------
/dist/compass.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/dist/minimize.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/dist/terminal.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "devDependencies": {},
4 | "name": "tiny-svg-icons",
5 | "version": "1.0.0",
6 | "main": "index.js",
7 | "repository": {
8 | "url": "git@github.com:egoist/tiny-svg-icons.git",
9 | "type": "git"
10 | },
11 | "scripts": {
12 | "toc": "markdown-toc -i README.md"
13 | },
14 | "author": "EGOIST <0x142857@gmail.com>",
15 | "license": "MIT"
16 | }
17 |
--------------------------------------------------------------------------------