├── .gitignore ├── pe-icon-7-stroke ├── fonts │ ├── Pe-icon-7-stroke.eot │ ├── Pe-icon-7-stroke.ttf │ └── Pe-icon-7-stroke.woff ├── scss │ ├── pe-icon-7-stroke.scss │ ├── _core.scss │ └── _path.scss └── svg │ ├── play.svg │ ├── angle-down.svg │ ├── angle-up.svg │ ├── angle-left.svg │ ├── angle-right.svg │ ├── filter.svg │ ├── monitor.svg │ ├── close.svg │ ├── file.svg │ ├── gleam.svg │ ├── graph3.svg │ ├── paper-plane.svg │ ├── photo-gallery.svg │ ├── airplay.svg │ ├── chat.svg │ ├── next.svg │ ├── graph2.svg │ ├── crop.svg │ ├── download.svg │ ├── upload.svg │ ├── bluetooth.svg │ ├── prev.svg │ ├── study.svg │ ├── albums.svg │ ├── lock.svg │ ├── unlock.svg │ ├── back.svg │ ├── box2.svg │ ├── star.svg │ ├── repeat.svg │ ├── drawer.svg │ ├── portfolio.svg │ ├── ribbon.svg │ ├── copy-file.svg │ ├── network.svg │ ├── refresh.svg │ ├── diamond.svg │ ├── exapnd2.svg │ ├── menu.svg │ ├── male.svg │ ├── gym.svg │ ├── mail.svg │ ├── shopbag.svg │ ├── clock.svg │ ├── culture.svg │ ├── less.svg │ ├── search.svg │ ├── attention.svg │ ├── map.svg │ ├── browser.svg │ ├── home.svg │ ├── power.svg │ ├── leaf.svg │ ├── hammer.svg │ ├── plus.svg │ ├── shuffle.svg │ ├── angle-down-circle.svg │ ├── angle-right-circle.svg │ ├── angle-up-circle.svg │ ├── angle-left-circle.svg │ ├── bottom-arrow.svg │ ├── wine.svg │ ├── up-arrow.svg │ ├── hourglass.svg │ ├── notebook.svg │ ├── right-arrow.svg │ ├── diskette.svg │ ├── left-arrow.svg │ ├── note.svg │ ├── magnet.svg │ ├── pendrive.svg │ ├── shield.svg │ ├── mute.svg │ ├── next-2.svg │ ├── back-2.svg │ ├── moon.svg │ ├── close-circle.svg │ ├── expand1.svg │ ├── video.svg │ ├── volume2.svg │ ├── way.svg │ ├── ticket.svg │ ├── folder.svg │ ├── female.svg │ ├── like.svg │ ├── bell.svg │ ├── drop.svg │ ├── photo.svg │ ├── voicemail.svg │ ├── phone.svg │ ├── switch.svg │ ├── refresh-2.svg │ ├── map-2.svg │ ├── box1.svg │ ├── film.svg │ ├── mouse.svg │ ├── mail-open.svg │ ├── key.svg │ ├── anchor.svg │ ├── check.svg │ ├── coffee.svg │ ├── micro.svg │ ├── info.svg │ ├── battery.svg │ ├── lintern.svg │ ├── graph.svg │ ├── music.svg │ ├── map-marker.svg │ ├── flag.svg │ ├── stopwatch.svg │ ├── eyedropper.svg │ ├── speaker.svg │ ├── arc.svg │ ├── display1.svg │ ├── wallet.svg │ ├── note2.svg │ ├── timer.svg │ ├── cart.svg │ ├── door-lock.svg │ ├── musiclist.svg │ ├── display2.svg │ ├── headphones.svg │ ├── magic-wand.svg │ ├── paint.svg │ ├── junk.svg │ ├── print.svg │ ├── wristwatch.svg │ ├── compass.svg │ ├── safe.svg │ ├── bookmarks.svg │ ├── cloud.svg │ ├── news-paper.svg │ ├── trash.svg │ ├── link.svg │ ├── pin.svg │ ├── cup.svg │ ├── gift.svg │ ├── help1.svg │ ├── credit.svg │ ├── server.svg │ ├── paperclip.svg │ ├── plug.svg │ ├── world.svg │ ├── plane.svg │ ├── glasses.svg │ ├── ball.svg │ ├── usb.svg │ ├── medal.svg │ ├── album.svg │ ├── date.svg │ ├── loop.svg │ ├── more.svg │ ├── cloud-download.svg │ ├── cloud-upload.svg │ ├── look.svg │ ├── rocket.svg │ ├── smile.svg │ ├── volume.svg │ ├── comment.svg │ ├── signal.svg │ ├── cash.svg │ ├── edit.svg │ ├── paint-bucket.svg │ ├── umbrella.svg │ ├── alarm.svg │ ├── share.svg │ ├── mail-open-file.svg │ ├── sun.svg │ ├── light.svg │ ├── target.svg │ ├── refresh-cloud.svg │ ├── pen.svg │ ├── volume1.svg │ ├── bicycle.svg │ ├── camera.svg │ ├── user-female.svg │ ├── calculator.svg │ ├── like2.svg │ ├── call.svg │ ├── graph1.svg │ ├── car.svg │ ├── helm.svg │ ├── plugin.svg │ ├── vector.svg │ ├── scissors.svg │ ├── help2.svg │ ├── config.svg │ ├── settings.svg │ ├── tools.svg │ ├── bandaid.svg │ ├── user.svg │ ├── joy.svg │ └── add-user.svg ├── bower.json ├── package.json └── gulpfile.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olimsaidov/pixeden-stroke-7-icon/HEAD/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olimsaidov/pixeden-stroke-7-icon/HEAD/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olimsaidov/pixeden-stroke-7-icon/HEAD/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /pe-icon-7-stroke/scss/pe-icon-7-stroke.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensing: http://www.pixeden.com/icon-fonts/stroke-7-icon-font-set 3 | */ 4 | 5 | @import "variables"; 6 | @import "path"; 7 | @import "core"; 8 | @import "helper"; 9 | @import "icons"; 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/scss/_core.scss: -------------------------------------------------------------------------------- 1 | [class^="#{$font-prefix}-"], [class*=" #{$font-prefix}-"] { 2 | display: inline-block; 3 | font-family: 'Pe-icon-7-stroke'; 4 | speak: none; 5 | font-style: normal; 6 | font-weight: normal; 7 | font-variant: normal; 8 | text-transform: none; 9 | line-height: 1; 10 | 11 | /* Better Font Rendering =========== */ 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/scss/_path.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Pe-icon-7-stroke'; 3 | src:url('#{$pe-7s-font-path}/Pe-icon-7-stroke.eot?d7yf1v'); 4 | src:url('#{$pe-7s-font-path}/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'), 5 | url('#{$pe-7s-font-path}/Pe-icon-7-stroke.woff?d7yf1v') format('woff'), 6 | url('#{$pe-7s-font-path}/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'), 7 | url('#{$pe-7s-font-path}/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/gleam.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/graph3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/paper-plane.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/photo-gallery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pixeden-stroke-7-icon", 3 | "version": "1.2.3", 4 | "main": "pe-icon-7-stroke/dist/pe-icon-7-stroke.css", 5 | "authors": [ 6 | "pixeden.com" 7 | ], 8 | "keywords": [ 9 | "pixeden", 10 | "icon", 11 | "font", 12 | "thin", 13 | "vector", 14 | "retina", 15 | "stroke", 16 | "pixeden", 17 | "ios7", 18 | "pack", 19 | "svg" 20 | ], 21 | "homepage": "http://www.pixeden.com/icon-fonts/stroke-7-icon-font-set", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "bower_components", 26 | "test", 27 | "tests" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/airplay.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/chat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/graph2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/crop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/prev.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/study.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/albums.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/box2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/repeat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/drawer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/portfolio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/ribbon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/copy-file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/network.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/exapnd2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/male.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/gym.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/mail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/shopbag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/culture.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/less.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/attention.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/map.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/browser.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/leaf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/hammer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/shuffle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-down-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-right-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-up-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/angle-left-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bottom-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/wine.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/up-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/hourglass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/notebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/right-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/diskette.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/left-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/note.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/magnet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/pendrive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/mute.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/next-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/back-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/moon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/close-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/expand1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/volume2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/way.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/ticket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/like.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bell.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/drop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/photo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/voicemail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/phone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/switch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/refresh-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/map-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/box1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/film.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/mouse.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/mail-open.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/key.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/coffee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/micro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pixeden-stroke-7-icon", 3 | "version": "1.2.3", 4 | "main": "pe-icon-7-stroke/dist/pe-icon-7-stroke.css", 5 | "description": "This is a complete set of 202 thin stroke icons inspired by iOS 7. Those retina ready icons have a very modern style that will beautifully complement any project.", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/olimsaidov/pixeden-stroke-7-icon" 9 | }, 10 | "keywords": [ 11 | "icon", 12 | "pixeden" 13 | ], 14 | "bugs": { 15 | "url": "https://github.com/olimsaidov/pixeden-stroke-7-icon/issues" 16 | }, 17 | "homepage": "http://www.pixeden.com/icon-fonts/stroke-7-icon-font-set", 18 | "devDependencies": { 19 | "gulp": "^3.8.11", 20 | "gulp-autoprefixer": "^2.3.0", 21 | "gulp-minify-css": "^1.1.1", 22 | "gulp-plumber": "^1.0.1", 23 | "gulp-rename": "^1.2.2", 24 | "gulp-sass": "^1.3.2", 25 | "del": "^1.2.0", 26 | "gulp-load-plugins": "^0.10.0" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/battery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/lintern.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/graph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/map-marker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/stopwatch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/eyedropper.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/speaker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/arc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/display1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/wallet.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/note2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/timer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/door-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/musiclist.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/display2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/headphones.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/magic-wand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/paint.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/junk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/wristwatch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/compass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/safe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bookmarks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/news-paper.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/pin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cup.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/gift.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/help1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/credit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/server.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/paperclip.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/plug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/world.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/plane.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/glasses.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/ball.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/usb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/medal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/album.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/date.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/loop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/more.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cloud-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cloud-upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/look.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/rocket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/smile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/volume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/signal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/cash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/paint-bucket.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/umbrella.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/alarm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'); 2 | var plugins = require('gulp-load-plugins')(); 3 | var del = require('del'); 4 | var path = { 5 | assets: 'pe-icon-7-stroke', 6 | get sass() { 7 | return this.assets + '/scss' 8 | }, 9 | get css() { 10 | return this.assets + '/css' 11 | }, 12 | get dist() { 13 | return this.assets + '/dist' 14 | } 15 | }; 16 | var fontName = 'pe-icon-7-stroke'; 17 | 18 | gulp.task('clean', function(cb) { 19 | del([path.dist], cb); 20 | }); 21 | 22 | gulp.task('sass', function() { 23 | return gulp.src(path.sass + '/' + fontName + '.scss') 24 | .pipe(plugins.plumber()) 25 | .pipe(plugins.sass()) 26 | .pipe(plugins.autoprefixer( 27 | [ 'last 15 versions', '> 1%', 'ie 8', 'ie 7' ], 28 | { cascade: true } 29 | )) 30 | .pipe(gulp.dest(path.dist)); 31 | }); 32 | 33 | gulp.task('minify-css', ['sass'], function() { 34 | return gulp.src(path.dist + '/' + fontName + '.css') 35 | .pipe(plugins.plumber()) 36 | .pipe(plugins.rename({ suffix: '.min'} )) 37 | .pipe(plugins.minifyCss()) 38 | .pipe(gulp.dest(path.dist)); 39 | }); 40 | 41 | gulp.task('build', ['sass', 'minify-css'], function() { 42 | 43 | }); 44 | 45 | gulp.task('watch', function() { 46 | gulp.watch( 47 | [path.sass + '/*.scss'], 48 | ['sass'] 49 | ); 50 | }); 51 | 52 | gulp.task('default', ['build'], function() { 53 | 54 | }); 55 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/mail-open-file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/sun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/refresh-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/pen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/volume1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bicycle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/user-female.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/calculator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/like2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/call.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/graph1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/car.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/helm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/plugin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/vector.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/scissors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/help2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/config.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/settings.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/tools.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/bandaid.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/joy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pe-icon-7-stroke/svg/add-user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------