├── .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|minimize 8 | ---|--- 9 | 10 | ```html 11 | 12 | 13 | 14 | ``` 15 | 16 | Try it on [jsbin.com](http://jsbin.com/qafexet/edit?html,output) 17 | 18 | minimize|compass 19 | ---|--- 20 | 21 | ```html 22 | 23 | 24 | 25 | 26 | ``` 27 | 28 | Try it on [jsbin.com](http://jsbin.com/zepaqov/edit?html,output) 29 | 30 | terminal|terminal 31 | ---|--- 32 | 33 | ```html 34 | 35 | 36 | 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 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dist/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dist/terminal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | --------------------------------------------------------------------------------