From 210c939c853204e1352b04dabc045c6202f19ec9 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 12:12:29 +0100 Subject: zip task --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 37ee789..757762e 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "optimize": "gulp optimize", "start": "bundle exec jekyll serve --watch --livereload", "build": "gulp optimize && gulp build && gulp icons-preview && gulp icons-sprite", - "png": "gulp svg-to-png" + "png": "gulp svg-to-png", + "zip": "gulp build-zip" }, "description": "", "devDependencies": { -- cgit v1.2.1 From ae85645c5ebfccbb3145f128e2202e5f5e492880 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 12:20:38 +0100 Subject: editor "active" class feature --- src/editor.html | 3 +++ src/style.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/editor.html b/src/editor.html index 6794a49..3a928f2 100644 --- a/src/editor.html +++ b/src/editor.html @@ -113,6 +113,9 @@ layout: default .on('click', '.js-icon', function (e) { var icon = $(this).attr('data-icon'); + $('.js-icon').removeClass('active'); + $(this).addClass('active'); + $('.js-icon-name').html(icon); localStorage.setItem('icon', icon); diff --git a/src/style.scss b/src/style.scss index 2ffbb47..49a1b2f 100644 --- a/src/style.scss +++ b/src/style.scss @@ -179,6 +179,10 @@ a { justify-content: center; border: 1px solid transparent; + &.active { + background: #f0f0f0; + } + @at-root a#{&}:hover { opacity: .75; } -- cgit v1.2.1 From c77eb46c33bf1edf622194ec309b703cb6bae5d2 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:05:39 +0100 Subject: changelog generator --- gulpfile.js | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 37f6b22..3ba79bd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -191,7 +191,7 @@ gulp.task('optimize', function (cb) { .replace(/\s?\/>/g, ' />') .replace(/\n\s*<(line|circle|path|polyline)/g, "\n <$1") .replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"') - .replace(/a([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7') + .replace(/a\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7') .replace(/\n\n+/g, "\n"); fs.writeFileSync(file, svgFileContent); @@ -201,7 +201,61 @@ gulp.task('optimize', function (cb) { }); }); -gulp.task('build-zip', function(cb) { +gulp.task('prepare-changelog', function(cb) { + cp.exec('git status', function(err, ret) { + let newIcons = [], modifiedIcons = [], renamedIcons = []; + + ret.replace(/new file:\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + newIcons.push(fileName); + }); + + ret.replace(/modified:\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + modifiedIcons.push(fileName); + }); + + ret.replace(/renamed:\s+src\/_icons\/([a-z1-9-]+).svg -> src\/_icons\/([a-z1-9-]+).svg/g, function (m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]); + }); + + modifiedIcons = modifiedIcons.filter( function( el ) { + return newIcons.indexOf( el ) < 0; + }); + + if(newIcons.length > 0) { + console.log(`**${newIcons.length} new icons:**\n`); + + newIcons.forEach(function(icon){ + console.log(`- \`${icon}\``); + }); + + console.log(''); + } + + if(modifiedIcons.length > 0) { + console.log(`**Fixed icons:**\n`); + + modifiedIcons.forEach(function(icon){ + console.log(`- \`${icon}\``); + }); + + console.log(''); + } + + if(renamedIcons.length > 0) { + console.log(`**Renamed icons:**\n`); + + renamedIcons.forEach(function(icon){ + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }) + } + + cb(); + }); + + +}); + +gulp.task('build-zip', function() { const version = p.version; return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg}') -- cgit v1.2.1 From fc65cd9348392ca62619be9d82d294a1c711130f Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:53:32 +0100 Subject: 14 new icons: `ad`, `building-arch`, `building-bridge-2`, `building-bridge`, `building-church`, `building-hospital`, `building-store`, `building`, `device-speaker`, `home-2`, `id`, `layout-bottombar`, `live-photo`, `template` Fixed icons: `layout-2`, `layout-columns`, `layout-navbar`, `layout-rows`, `layout-sidebar-right`, `layout-sidebar`, `layout`, `registered` Renamed icons: `ajdustments` renamed to `adjustments` --- src/_icons/ad.svg | 9 +++++++++ src/_icons/adjustments.svg | 14 ++++++++++++++ src/_icons/ajdustments.svg | 14 -------------- src/_icons/building-arch.svg | 7 +++++++ src/_icons/building-bridge-2.svg | 5 +++++ src/_icons/building-bridge.svg | 10 ++++++++++ src/_icons/building-church.svg | 9 +++++++++ src/_icons/building-hospital.svg | 9 +++++++++ src/_icons/building-store.svg | 9 +++++++++ src/_icons/building.svg | 12 ++++++++++++ src/_icons/device-speaker.svg | 7 +++++++ src/_icons/home-2.svg | 8 ++++++++ src/_icons/id.svg | 10 ++++++++++ src/_icons/layout-2.svg | 8 ++++---- src/_icons/layout-bottombar.svg | 6 ++++++ src/_icons/layout-columns.svg | 4 ++-- src/_icons/layout-navbar.svg | 4 ++-- src/_icons/layout-rows.svg | 4 ++-- src/_icons/layout-sidebar-right.svg | 4 ++-- src/_icons/layout-sidebar.svg | 4 ++-- src/_icons/layout.svg | 6 +++--- src/_icons/live-photo.svg | 7 +++++++ src/_icons/registered.svg | 2 +- src/_icons/template.svg | 10 ++++++++++ 24 files changed, 150 insertions(+), 32 deletions(-) create mode 100644 src/_icons/ad.svg create mode 100644 src/_icons/adjustments.svg delete mode 100644 src/_icons/ajdustments.svg create mode 100644 src/_icons/building-arch.svg create mode 100644 src/_icons/building-bridge-2.svg create mode 100644 src/_icons/building-bridge.svg create mode 100644 src/_icons/building-church.svg create mode 100644 src/_icons/building-hospital.svg create mode 100644 src/_icons/building-store.svg create mode 100644 src/_icons/building.svg create mode 100644 src/_icons/device-speaker.svg create mode 100644 src/_icons/home-2.svg create mode 100644 src/_icons/id.svg create mode 100644 src/_icons/layout-bottombar.svg create mode 100644 src/_icons/live-photo.svg create mode 100644 src/_icons/template.svg diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg new file mode 100644 index 0000000..576b61d --- /dev/null +++ b/src/_icons/ad.svg @@ -0,0 +1,9 @@ +--- +tags: [] +--- + + + + + + diff --git a/src/_icons/adjustments.svg b/src/_icons/adjustments.svg new file mode 100644 index 0000000..fd9d200 --- /dev/null +++ b/src/_icons/adjustments.svg @@ -0,0 +1,14 @@ +--- +tags: [equalizer, sliders, controls, settings, filter] +--- + + + + + + + + + + + diff --git a/src/_icons/ajdustments.svg b/src/_icons/ajdustments.svg deleted file mode 100644 index fd9d200..0000000 --- a/src/_icons/ajdustments.svg +++ /dev/null @@ -1,14 +0,0 @@ ---- -tags: [equalizer, sliders, controls, settings, filter] ---- - - - - - - - - - - - diff --git a/src/_icons/building-arch.svg b/src/_icons/building-arch.svg new file mode 100644 index 0000000..298eb6c --- /dev/null +++ b/src/_icons/building-arch.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/building-bridge-2.svg b/src/_icons/building-bridge-2.svg new file mode 100644 index 0000000..2ed3b4d --- /dev/null +++ b/src/_icons/building-bridge-2.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg new file mode 100644 index 0000000..88cf6b6 --- /dev/null +++ b/src/_icons/building-bridge.svg @@ -0,0 +1,10 @@ +--- +--- + + + + + + + + diff --git a/src/_icons/building-church.svg b/src/_icons/building-church.svg new file mode 100644 index 0000000..5a746f4 --- /dev/null +++ b/src/_icons/building-church.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building-hospital.svg b/src/_icons/building-hospital.svg new file mode 100644 index 0000000..cf8ab60 --- /dev/null +++ b/src/_icons/building-hospital.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building-store.svg b/src/_icons/building-store.svg new file mode 100644 index 0000000..e088d1d --- /dev/null +++ b/src/_icons/building-store.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/building.svg b/src/_icons/building.svg new file mode 100644 index 0000000..74602d4 --- /dev/null +++ b/src/_icons/building.svg @@ -0,0 +1,12 @@ +--- +--- + + + + + + + + + + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg new file mode 100644 index 0000000..3643b1e --- /dev/null +++ b/src/_icons/device-speaker.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/home-2.svg b/src/_icons/home-2.svg new file mode 100644 index 0000000..86c9576 --- /dev/null +++ b/src/_icons/home-2.svg @@ -0,0 +1,8 @@ +--- +tags: [house, dashboard, living] +--- + + + + + diff --git a/src/_icons/id.svg b/src/_icons/id.svg new file mode 100644 index 0000000..f243557 --- /dev/null +++ b/src/_icons/id.svg @@ -0,0 +1,10 @@ +--- +tags: [] +--- + + + + + + + diff --git a/src/_icons/layout-2.svg b/src/_icons/layout-2.svg index 8582366..a97139c 100644 --- a/src/_icons/layout-2.svg +++ b/src/_icons/layout-2.svg @@ -2,8 +2,8 @@ tags: [grid, columns, masonry, collage] --- - - - - + + + + diff --git a/src/_icons/layout-bottombar.svg b/src/_icons/layout-bottombar.svg new file mode 100644 index 0000000..23ddd8f --- /dev/null +++ b/src/_icons/layout-bottombar.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/layout-columns.svg b/src/_icons/layout-columns.svg index 5914ea4..c98ef78 100644 --- a/src/_icons/layout-columns.svg +++ b/src/_icons/layout-columns.svg @@ -2,6 +2,6 @@ tags: [grid, column, rows] --- - - + + diff --git a/src/_icons/layout-navbar.svg b/src/_icons/layout-navbar.svg index 983012f..54d5f9b 100644 --- a/src/_icons/layout-navbar.svg +++ b/src/_icons/layout-navbar.svg @@ -2,6 +2,6 @@ tags: [grid, row, header] --- - - + + diff --git a/src/_icons/layout-rows.svg b/src/_icons/layout-rows.svg index f900f83..7ad1570 100644 --- a/src/_icons/layout-rows.svg +++ b/src/_icons/layout-rows.svg @@ -2,6 +2,6 @@ tags: [grid, masonry, collage] --- - - + + diff --git a/src/_icons/layout-sidebar-right.svg b/src/_icons/layout-sidebar-right.svg index fb372e9..499848d 100644 --- a/src/_icons/layout-sidebar-right.svg +++ b/src/_icons/layout-sidebar-right.svg @@ -2,6 +2,6 @@ tags: [grid, aside, column, columns] --- - - + + diff --git a/src/_icons/layout-sidebar.svg b/src/_icons/layout-sidebar.svg index dcee265..8d989f6 100644 --- a/src/_icons/layout-sidebar.svg +++ b/src/_icons/layout-sidebar.svg @@ -2,6 +2,6 @@ tags: [grid, aside, column, columns] --- - - + + diff --git a/src/_icons/layout.svg b/src/_icons/layout.svg index 4606baa..ba97da4 100644 --- a/src/_icons/layout.svg +++ b/src/_icons/layout.svg @@ -2,7 +2,7 @@ tags: [grid, columns, masonry, collage] --- - - - + + + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg new file mode 100644 index 0000000..bc04fed --- /dev/null +++ b/src/_icons/live-photo.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/registered.svg b/src/_icons/registered.svg index a6fca27..b660199 100644 --- a/src/_icons/registered.svg +++ b/src/_icons/registered.svg @@ -3,5 +3,5 @@ tags: [copyright] --- - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg new file mode 100644 index 0000000..dbd6a91 --- /dev/null +++ b/src/_icons/template.svg @@ -0,0 +1,10 @@ +--- +tags: [grid, columns, masonry, collage] +--- + + + + + + + -- cgit v1.2.1 From f6eac139ef0faa372a67b7f130c25770c79bdad6 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 14:54:53 +0100 Subject: build new version --- .github/icons.png | Bin 77085 -> 80152 bytes .github/icons.svg | 688 +++++++++++++++++++++------------------ icons/ad.svg | 9 + icons/adjustments.svg | 14 + icons/ajdustments.svg | 14 - icons/building-arch.svg | 8 + icons/building-bridge-2.svg | 6 + icons/building-bridge.svg | 10 + icons/building-church.svg | 10 + icons/building-hospital.svg | 10 + icons/building-store.svg | 10 + icons/device-speaker.svg | 8 + icons/home-2.svg | 8 + icons/id.svg | 10 + icons/layout-2.svg | 8 +- icons/layout-bottombar.svg | 7 + icons/layout-columns.svg | 4 +- icons/layout-navbar.svg | 4 +- icons/layout-rows.svg | 4 +- icons/layout-sidebar-right.svg | 4 +- icons/layout-sidebar.svg | 4 +- icons/layout.svg | 6 +- icons/live-photo.svg | 8 + icons/news.svg | 2 +- icons/registered.svg | 2 +- icons/template.svg | 10 + src/_icons/ad.svg | 4 +- src/_icons/building-bridge-2.svg | 2 +- src/_icons/building-bridge.svg | 11 +- src/_icons/device-speaker.svg | 2 +- src/_icons/live-photo.svg | 2 +- src/_icons/news.svg | 2 +- src/_icons/template.svg | 6 +- tabler-sprite.svg | 2 +- 34 files changed, 527 insertions(+), 372 deletions(-) create mode 100644 icons/ad.svg create mode 100644 icons/adjustments.svg delete mode 100644 icons/ajdustments.svg create mode 100644 icons/building-arch.svg create mode 100644 icons/building-bridge-2.svg create mode 100644 icons/building-bridge.svg create mode 100644 icons/building-church.svg create mode 100644 icons/building-hospital.svg create mode 100644 icons/building-store.svg create mode 100644 icons/device-speaker.svg create mode 100644 icons/home-2.svg create mode 100644 icons/id.svg create mode 100644 icons/layout-bottombar.svg create mode 100644 icons/live-photo.svg create mode 100644 icons/template.svg diff --git a/.github/icons.png b/.github/icons.png index 37c2fd1..444edbb 100644 Binary files a/.github/icons.png and b/.github/icons.png differ diff --git a/.github/icons.svg b/.github/icons.svg index 511c9d3..eec99cc 100644 --- a/.github/icons.svg +++ b/.github/icons.svg @@ -1,7 +1,9 @@ - + - + + @@ -128,6 +130,20 @@ + + + + + + + + + + + + + + @@ -244,6 +260,8 @@ + + @@ -344,10 +362,14 @@ + + + + @@ -365,7 +387,7 @@ - + @@ -379,27 +401,31 @@ - + + + - + - + - + - + - + + + @@ -457,7 +483,7 @@ - + @@ -497,7 +523,7 @@ - + @@ -564,6 +590,8 @@ + + @@ -627,317 +655,331 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/icons/ad.svg b/icons/ad.svg new file mode 100644 index 0000000..c88d477 --- /dev/null +++ b/icons/ad.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/adjustments.svg b/icons/adjustments.svg new file mode 100644 index 0000000..0990042 --- /dev/null +++ b/icons/adjustments.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/ajdustments.svg b/icons/ajdustments.svg deleted file mode 100644 index 3d87cf6..0000000 --- a/icons/ajdustments.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons/building-arch.svg b/icons/building-arch.svg new file mode 100644 index 0000000..d0c0ed9 --- /dev/null +++ b/icons/building-arch.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/building-bridge-2.svg b/icons/building-bridge-2.svg new file mode 100644 index 0000000..6351d39 --- /dev/null +++ b/icons/building-bridge-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/building-bridge.svg b/icons/building-bridge.svg new file mode 100644 index 0000000..dde9bf5 --- /dev/null +++ b/icons/building-bridge.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-church.svg b/icons/building-church.svg new file mode 100644 index 0000000..f2c4386 --- /dev/null +++ b/icons/building-church.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-hospital.svg b/icons/building-hospital.svg new file mode 100644 index 0000000..2cd9be4 --- /dev/null +++ b/icons/building-hospital.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/building-store.svg b/icons/building-store.svg new file mode 100644 index 0000000..269cb8d --- /dev/null +++ b/icons/building-store.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/device-speaker.svg b/icons/device-speaker.svg new file mode 100644 index 0000000..9c3b481 --- /dev/null +++ b/icons/device-speaker.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/home-2.svg b/icons/home-2.svg new file mode 100644 index 0000000..28b31b0 --- /dev/null +++ b/icons/home-2.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/id.svg b/icons/id.svg new file mode 100644 index 0000000..514a560 --- /dev/null +++ b/icons/id.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/layout-2.svg b/icons/layout-2.svg index dbd3a7e..8387825 100644 --- a/icons/layout-2.svg +++ b/icons/layout-2.svg @@ -1,9 +1,9 @@ - - - - + + + + diff --git a/icons/layout-bottombar.svg b/icons/layout-bottombar.svg new file mode 100644 index 0000000..a5b0c69 --- /dev/null +++ b/icons/layout-bottombar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/layout-columns.svg b/icons/layout-columns.svg index 5455954..682f0f7 100644 --- a/icons/layout-columns.svg +++ b/icons/layout-columns.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-navbar.svg b/icons/layout-navbar.svg index 714cd78..f6e005c 100644 --- a/icons/layout-navbar.svg +++ b/icons/layout-navbar.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-rows.svg b/icons/layout-rows.svg index 19aa3da..f8bd040 100644 --- a/icons/layout-rows.svg +++ b/icons/layout-rows.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-sidebar-right.svg b/icons/layout-sidebar-right.svg index 7345ff1..8059c2b 100644 --- a/icons/layout-sidebar-right.svg +++ b/icons/layout-sidebar-right.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout-sidebar.svg b/icons/layout-sidebar.svg index b92b7fd..92a4444 100644 --- a/icons/layout-sidebar.svg +++ b/icons/layout-sidebar.svg @@ -1,7 +1,7 @@ - - + + diff --git a/icons/layout.svg b/icons/layout.svg index 5b057b0..62670d3 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,8 +1,8 @@ - - - + + + diff --git a/icons/live-photo.svg b/icons/live-photo.svg new file mode 100644 index 0000000..500ef3e --- /dev/null +++ b/icons/live-photo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/news.svg b/icons/news.svg index 5a749d9..ee41a39 100644 --- a/icons/news.svg +++ b/icons/news.svg @@ -1,6 +1,6 @@ - + diff --git a/icons/registered.svg b/icons/registered.svg index 3708c09..537a77d 100644 --- a/icons/registered.svg +++ b/icons/registered.svg @@ -1,7 +1,7 @@ - + diff --git a/icons/template.svg b/icons/template.svg new file mode 100644 index 0000000..d2261cd --- /dev/null +++ b/icons/template.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/_icons/ad.svg b/src/_icons/ad.svg index 576b61d..b2166f2 100644 --- a/src/_icons/ad.svg +++ b/src/_icons/ad.svg @@ -4,6 +4,6 @@ tags: [] - - + + diff --git a/src/_icons/building-bridge-2.svg b/src/_icons/building-bridge-2.svg index 2ed3b4d..23b8af5 100644 --- a/src/_icons/building-bridge-2.svg +++ b/src/_icons/building-bridge-2.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/building-bridge.svg b/src/_icons/building-bridge.svg index 88cf6b6..67b047b 100644 --- a/src/_icons/building-bridge.svg +++ b/src/_icons/building-bridge.svg @@ -1,10 +1,9 @@ --- --- - - - - - - + + + + + diff --git a/src/_icons/device-speaker.svg b/src/_icons/device-speaker.svg index 3643b1e..56f12ad 100644 --- a/src/_icons/device-speaker.svg +++ b/src/_icons/device-speaker.svg @@ -3,5 +3,5 @@ - + diff --git a/src/_icons/live-photo.svg b/src/_icons/live-photo.svg index bc04fed..d79dd7d 100644 --- a/src/_icons/live-photo.svg +++ b/src/_icons/live-photo.svg @@ -3,5 +3,5 @@ - + diff --git a/src/_icons/news.svg b/src/_icons/news.svg index 077d7ad..5ccabad 100644 --- a/src/_icons/news.svg +++ b/src/_icons/news.svg @@ -2,7 +2,7 @@ tags: [newspaper, article] --- - + diff --git a/src/_icons/template.svg b/src/_icons/template.svg index dbd6a91..163f1c2 100644 --- a/src/_icons/template.svg +++ b/src/_icons/template.svg @@ -4,7 +4,7 @@ tags: [grid, columns, masonry, collage] - - - + + + diff --git a/tabler-sprite.svg b/tabler-sprite.svg index 9d2618d..b80449b 100644 --- a/tabler-sprite.svg +++ b/tabler-sprite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file -- cgit v1.2.1 From 0908f417fe8cf18f6f88463eced6926c0e9d99de Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 20:02:57 +0100 Subject: 16 new icons: `alarm`, `arrow-back`, `arrow-forward`, `artboard`, `award`, `bug`, `calendar-event`, `globe`, `help`, `mug`, `palette`, `pencil`, `record-mail`, `ruler`, `scissors`, `stack` Fixed icons: `directions`, `disabled`, `disc`, `edit`, `switch-vertical` --- gulpfile.js | 41 +++++++++++++++++++++++---------- icons-png/ad.png | Bin 0 -> 3231 bytes icons-png/adjustments.png | Bin 0 -> 3210 bytes icons-png/ajdustments.png | Bin 3210 -> 0 bytes icons-png/alarm.png | Bin 0 -> 4782 bytes icons-png/arrow-back.png | Bin 0 -> 2242 bytes icons-png/arrow-forward.png | Bin 0 -> 2127 bytes icons-png/artboard.png | Bin 0 -> 2160 bytes icons-png/award.png | Bin 0 -> 3690 bytes icons-png/bug.png | Bin 0 -> 4357 bytes icons-png/building-arch.png | Bin 0 -> 2527 bytes icons-png/building-bridge-2.png | Bin 0 -> 2700 bytes icons-png/building-bridge.png | Bin 0 -> 2791 bytes icons-png/building-church.png | Bin 0 -> 2550 bytes icons-png/building-hospital.png | Bin 0 -> 2700 bytes icons-png/building-store.png | Bin 0 -> 2725 bytes icons-png/building.png | Bin 0 -> 2500 bytes icons-png/calendar-event.png | Bin 0 -> 2600 bytes icons-png/device-speaker.png | Bin 0 -> 3485 bytes icons-png/directions.png | Bin 1932 -> 2185 bytes icons-png/disabled.png | Bin 3600 -> 3627 bytes icons-png/disc.png | Bin 5544 -> 6334 bytes icons-png/edit.png | Bin 3065 -> 3169 bytes icons-png/globe.png | Bin 0 -> 4791 bytes icons-png/help.png | Bin 0 -> 5570 bytes icons-png/home-2.png | Bin 0 -> 2363 bytes icons-png/id.png | Bin 0 -> 3689 bytes icons-png/layout-2.png | Bin 4265 -> 2909 bytes icons-png/layout-bottombar.png | Bin 0 -> 1924 bytes icons-png/layout-columns.png | Bin 1979 -> 1958 bytes icons-png/layout-navbar.png | Bin 1966 -> 1925 bytes icons-png/layout-rows.png | Bin 1967 -> 1924 bytes icons-png/layout-sidebar-right.png | Bin 1983 -> 1972 bytes icons-png/layout-sidebar.png | Bin 1982 -> 1937 bytes icons-png/layout.png | Bin 3483 -> 3445 bytes icons-png/live-photo.png | Bin 0 -> 5400 bytes icons-png/mug.png | Bin 0 -> 2559 bytes icons-png/palette.png | Bin 0 -> 3875 bytes icons-png/pencil.png | Bin 0 -> 2107 bytes icons-png/record-mail.png | Bin 0 -> 1800 bytes icons-png/registered.png | Bin 5444 -> 5443 bytes icons-png/ruler.png | Bin 0 -> 2384 bytes icons-png/scissors.png | Bin 0 -> 3249 bytes icons-png/stack.png | Bin 0 -> 2173 bytes icons-png/template.png | Bin 0 -> 2769 bytes icons/activity.svg | 2 +- icons/ad.svg | 2 +- icons/adjustments.svg | 2 +- icons/alarm.svg | 9 ++++++++ icons/alert-circle.svg | 2 +- icons/alert-triangle.svg | 2 +- icons/align-center.svg | 2 +- icons/align-justified.svg | 2 +- icons/align-left.svg | 2 +- icons/align-right.svg | 2 +- icons/archive.svg | 2 +- icons/arrow-back.svg | 6 +++++ icons/arrow-bar-down.svg | 2 +- icons/arrow-bar-left.svg | 2 +- icons/arrow-bar-right.svg | 2 +- icons/arrow-bar-up.svg | 2 +- icons/arrow-down-circle.svg | 2 +- icons/arrow-down-left-circle.svg | 2 +- icons/arrow-down-left.svg | 2 +- icons/arrow-down-right-circle.svg | 2 +- icons/arrow-down-right.svg | 2 +- icons/arrow-down.svg | 2 +- icons/arrow-forward.svg | 6 +++++ icons/arrow-left-circle.svg | 2 +- icons/arrow-left.svg | 2 +- icons/arrow-narrow-down.svg | 2 +- icons/arrow-narrow-left.svg | 2 +- icons/arrow-narrow-right.svg | 2 +- icons/arrow-narrow-up.svg | 2 +- icons/arrow-right-circle.svg | 2 +- icons/arrow-right.svg | 2 +- icons/arrow-up-circle.svg | 2 +- icons/arrow-up-left-circle.svg | 2 +- icons/arrow-up-left.svg | 2 +- icons/arrow-up-right-circle.svg | 2 +- icons/arrow-up-right.svg | 2 +- icons/arrow-up.svg | 2 +- icons/arrows-diagonal-2.svg | 2 +- icons/arrows-diagonal.svg | 2 +- icons/arrows-maximize.svg | 2 +- icons/arrows-minimize.svg | 2 +- icons/artboard.svg | 14 +++++++++++ icons/at.svg | 2 +- icons/award.svg | 7 ++++++ icons/backspace.svg | 2 +- icons/ban.svg | 2 +- icons/battery-1.svg | 2 +- icons/battery-2.svg | 2 +- icons/battery-3.svg | 2 +- icons/battery-4.svg | 2 +- icons/battery-charging.svg | 2 +- icons/battery.svg | 2 +- icons/bell.svg | 2 +- icons/bike.svg | 2 +- icons/bluetooth.svg | 2 +- icons/bolt.svg | 2 +- icons/book.svg | 2 +- icons/bookmark.svg | 2 +- icons/border-all.svg | 2 +- icons/border-bottom.svg | 2 +- icons/border-horizontal.svg | 2 +- icons/border-inner.svg | 2 +- icons/border-left.svg | 2 +- icons/border-none.svg | 2 +- icons/border-outer.svg | 2 +- icons/border-right.svg | 2 +- icons/border-top.svg | 2 +- icons/border-vertical.svg | 2 +- icons/box.svg | 2 +- icons/briefcase.svg | 2 +- icons/bucket.svg | 2 +- icons/bug.svg | 14 +++++++++++ icons/building-arch.svg | 2 +- icons/building-bridge-2.svg | 2 +- icons/building-bridge.svg | 2 +- icons/building-church.svg | 2 +- icons/building-hospital.svg | 2 +- icons/building-store.svg | 2 +- icons/building.svg | 13 +++++++++++ icons/bulb-off.svg | 2 +- icons/bulb.svg | 2 +- icons/calendar-event.svg | 10 ++++++++ icons/calendar.svg | 2 +- icons/camera.svg | 2 +- icons/cash.svg | 2 +- icons/cast.svg | 2 +- icons/chart-area-line.svg | 2 +- icons/chart-area.svg | 2 +- icons/chart-bar.svg | 2 +- icons/chart-candle.svg | 2 +- icons/chart-donut.svg | 2 +- icons/chart-line.svg | 2 +- icons/chart-pie.svg | 2 +- icons/check.svg | 2 +- icons/chevron-down.svg | 2 +- icons/chevron-left.svg | 2 +- icons/chevron-right.svg | 2 +- icons/chevron-up.svg | 2 +- icons/chevrons-down.svg | 2 +- icons/chevrons-left.svg | 2 +- icons/chevrons-right.svg | 2 +- icons/chevrons-up.svg | 2 +- icons/circle-check.svg | 2 +- icons/circle-minus.svg | 2 +- icons/circle-plus.svg | 2 +- icons/circle-x.svg | 2 +- icons/circle.svg | 2 +- icons/clipboard-check.svg | 2 +- icons/clipboard-list.svg | 2 +- icons/clipboard-x.svg | 2 +- icons/clipboard.svg | 2 +- icons/clock.svg | 2 +- icons/cloud-download.svg | 2 +- icons/cloud-rain.svg | 2 +- icons/cloud-snow.svg | 2 +- icons/cloud-storm.svg | 2 +- icons/cloud-upload.svg | 2 +- icons/cloud.svg | 2 +- icons/code.svg | 2 +- icons/command.svg | 2 +- icons/compass.svg | 2 +- icons/copy.svg | 2 +- icons/copyright.svg | 2 +- icons/corner-down-left.svg | 2 +- icons/corner-down-right.svg | 2 +- icons/corner-left-down.svg | 2 +- icons/corner-left-up.svg | 2 +- icons/corner-right-down.svg | 2 +- icons/corner-right-up.svg | 2 +- icons/corner-up-left.svg | 2 +- icons/corner-up-right.svg | 2 +- icons/credit-card.svg | 2 +- icons/crop.svg | 2 +- icons/cut.svg | 2 +- icons/dashboard.svg | 2 +- icons/database.svg | 2 +- icons/device-desktop.svg | 2 +- icons/device-mobile.svg | 2 +- icons/device-speaker.svg | 2 +- icons/device-tablet.svg | 2 +- icons/device-tv.svg | 2 +- icons/directions.svg | 6 ++--- icons/disabled.svg | 4 ++-- icons/disc.svg | 6 +++-- icons/dots-circle-horizontal.svg | 2 +- icons/dots-diagonal-2.svg | 2 +- icons/dots-diagonal.svg | 2 +- icons/dots-vertical.svg | 2 +- icons/dots.svg | 2 +- icons/download.svg | 2 +- icons/droplet.svg | 2 +- icons/edit.svg | 3 ++- icons/external-link.svg | 2 +- icons/eye.svg | 2 +- icons/face-id.svg | 2 +- icons/file-check.svg | 2 +- icons/file-download.svg | 2 +- icons/file-minus.svg | 2 +- icons/file-music.svg | 2 +- icons/file-plus.svg | 2 +- icons/file-shredder.svg | 2 +- icons/file-text.svg | 2 +- icons/file-x.svg | 2 +- icons/file.svg | 2 +- icons/filter.svg | 2 +- icons/flag.svg | 2 +- icons/flip-horizontal.svg | 2 +- icons/flip-vertical.svg | 2 +- icons/floppy-disk.svg | 2 +- icons/folder-minus.svg | 2 +- icons/folder-plus.svg | 2 +- icons/folder-x.svg | 2 +- icons/folder.svg | 2 +- icons/folders.svg | 2 +- icons/frame.svg | 2 +- icons/friends.svg | 2 +- icons/gauge.svg | 2 +- icons/git-branch.svg | 2 +- icons/git-commit.svg | 2 +- icons/git-compare.svg | 2 +- icons/git-merge.svg | 2 +- icons/git-pull-request.svg | 2 +- icons/glass-full.svg | 2 +- icons/glass.svg | 2 +- icons/globe.svg | 9 ++++++++ icons/grid-dots.svg | 2 +- icons/grid.svg | 2 +- icons/hash.svg | 2 +- icons/headphones.svg | 2 +- icons/heart.svg | 2 +- icons/help.svg | 8 +++++++ icons/home-2.svg | 2 +- icons/home.svg | 2 +- icons/ice-cream.svg | 2 +- icons/id.svg | 2 +- icons/inbox.svg | 2 +- icons/info-circle.svg | 2 +- icons/info-square.svg | 2 +- icons/key.svg | 2 +- icons/layers-difference.svg | 2 +- icons/layers-intersect.svg | 2 +- icons/layers-subtract.svg | 2 +- icons/layers-union.svg | 2 +- icons/layout-2.svg | 2 +- icons/layout-align-bottom.svg | 2 +- icons/layout-align-center.svg | 2 +- icons/layout-align-left.svg | 2 +- icons/layout-align-middle.svg | 2 +- icons/layout-align-right.svg | 2 +- icons/layout-align-top.svg | 2 +- icons/layout-bottombar.svg | 2 +- icons/layout-columns.svg | 2 +- icons/layout-distribute-horizontal.svg | 2 +- icons/layout-distribute-vertical.svg | 2 +- icons/layout-navbar.svg | 2 +- icons/layout-rows.svg | 2 +- icons/layout-sidebar-right.svg | 2 +- icons/layout-sidebar.svg | 2 +- icons/layout.svg | 2 +- icons/lego.svg | 2 +- icons/lifebuoy.svg | 2 +- icons/link.svg | 2 +- icons/live-photo.svg | 2 +- icons/location.svg | 2 +- icons/lock-open.svg | 2 +- icons/lock.svg | 2 +- icons/magnet.svg | 2 +- icons/mail-opened.svg | 2 +- icons/mail.svg | 2 +- icons/man.svg | 2 +- icons/map-2.svg | 2 +- icons/map-pin.svg | 2 +- icons/map.svg | 2 +- icons/maximize.svg | 2 +- icons/menu.svg | 2 +- icons/message-2.svg | 2 +- icons/message-circle.svg | 2 +- icons/message-dots.svg | 2 +- icons/message.svg | 2 +- icons/microphone.svg | 2 +- icons/minimize.svg | 2 +- icons/minus.svg | 2 +- icons/mood-confuzed.svg | 2 +- icons/mood-happy.svg | 2 +- icons/mood-neutral.svg | 2 +- icons/mood-sad.svg | 2 +- icons/mood-smile.svg | 2 +- icons/moon.svg | 2 +- icons/mouse.svg | 2 +- icons/movie.svg | 2 +- icons/mug.svg | 7 ++++++ icons/music.svg | 2 +- icons/news.svg | 2 +- icons/notification.svg | 2 +- icons/package.svg | 2 +- icons/paint.svg | 2 +- icons/palette.svg | 9 ++++++++ icons/paperclip.svg | 2 +- icons/parking.svg | 2 +- icons/pencil.svg | 7 ++++++ icons/phone-call.svg | 2 +- icons/phone-incoming.svg | 2 +- icons/phone-outgoing.svg | 2 +- icons/phone-pause.svg | 2 +- icons/phone.svg | 2 +- icons/photo.svg | 2 +- icons/plus.svg | 2 +- icons/point.svg | 2 +- icons/power.svg | 2 +- icons/printer.svg | 2 +- icons/prompt.svg | 2 +- icons/puzzle.svg | 2 +- icons/qrcode.svg | 2 +- icons/record-mail.svg | 8 +++++++ icons/refresh.svg | 2 +- icons/registered.svg | 2 +- icons/rotate-clockwise.svg | 2 +- icons/rotate.svg | 2 +- icons/route.svg | 2 +- icons/router.svg | 2 +- icons/rss.svg | 2 +- icons/ruler.svg | 12 ++++++++++ icons/scissors.svg | 9 ++++++++ icons/search.svg | 2 +- icons/selector.svg | 2 +- icons/send.svg | 2 +- icons/server.svg | 2 +- icons/settings.svg | 2 +- icons/share.svg | 2 +- icons/shield-check.svg | 2 +- icons/shield-x.svg | 2 +- icons/shield.svg | 2 +- icons/shopping-cart.svg | 2 +- icons/sort-ascending.svg | 2 +- icons/sort-descending.svg | 2 +- icons/square-check.svg | 2 +- icons/square-minus.svg | 2 +- icons/square-plus.svg | 2 +- icons/square-x.svg | 2 +- icons/square.svg | 2 +- icons/stack.svg | 8 +++++++ icons/star.svg | 2 +- icons/sticker.svg | 2 +- icons/sun.svg | 2 +- icons/switch-horizontal.svg | 2 +- icons/switch-vertical.svg | 4 +--- icons/switch.svg | 2 +- icons/tag.svg | 2 +- icons/target.svg | 2 +- icons/temperature-celsius.svg | 2 +- icons/temperature-fahrenheit.svg | 2 +- icons/temperature.svg | 2 +- icons/template.svg | 2 +- icons/test-pipe.svg | 2 +- icons/thumb-down.svg | 2 +- icons/thumb-up.svg | 2 +- icons/ticket.svg | 2 +- icons/toggle-left.svg | 2 +- icons/toggle-right.svg | 2 +- icons/tool.svg | 2 +- icons/trash.svg | 2 +- icons/trending-down.svg | 2 +- icons/trending-up.svg | 2 +- icons/triangle.svg | 2 +- icons/trophy.svg | 2 +- icons/unlink.svg | 2 +- icons/upload.svg | 2 +- icons/urgent.svg | 2 +- icons/user-check.svg | 2 +- icons/user-minus.svg | 2 +- icons/user-plus.svg | 2 +- icons/user-x.svg | 2 +- icons/user.svg | 2 +- icons/viewfinder.svg | 2 +- icons/volume-2.svg | 2 +- icons/volume-3.svg | 2 +- icons/volume.svg | 2 +- icons/wifi.svg | 2 +- icons/woman.svg | 2 +- icons/world.svg | 2 +- icons/x.svg | 2 +- icons/zoom-in.svg | 2 +- icons/zoom-out.svg | 2 +- src/_icons/alarm.svg | 9 ++++++++ src/_icons/arrow-back.svg | 6 +++++ src/_icons/arrow-forward.svg | 6 +++++ src/_icons/artboard.svg | 13 +++++++++++ src/_icons/award.svg | 6 +++++ src/_icons/bug.svg | 13 +++++++++++ src/_icons/calendar-event.svg | 10 ++++++++ src/_icons/directions.svg | 4 ++-- src/_icons/disabled.svg | 2 +- src/_icons/disc.svg | 4 +++- src/_icons/edit.svg | 1 + src/_icons/globe.svg | 8 +++++++ src/_icons/help.svg | 7 ++++++ src/_icons/mug.svg | 6 +++++ src/_icons/palette.svg | 8 +++++++ src/_icons/pencil.svg | 6 +++++ src/_icons/record-mail.svg | 7 ++++++ src/_icons/ruler.svg | 11 +++++++++ src/_icons/scissors.svg | 8 +++++++ src/_icons/stack.svg | 7 ++++++ src/_icons/switch-vertical.svg | 2 -- src/_includes/icon.html | 2 +- 410 files changed, 657 insertions(+), 351 deletions(-) create mode 100644 icons-png/ad.png create mode 100644 icons-png/adjustments.png delete mode 100644 icons-png/ajdustments.png create mode 100644 icons-png/alarm.png create mode 100644 icons-png/arrow-back.png create mode 100644 icons-png/arrow-forward.png create mode 100644 icons-png/artboard.png create mode 100644 icons-png/award.png create mode 100644 icons-png/bug.png create mode 100644 icons-png/building-arch.png create mode 100644 icons-png/building-bridge-2.png create mode 100644 icons-png/building-bridge.png create mode 100644 icons-png/building-church.png create mode 100644 icons-png/building-hospital.png create mode 100644 icons-png/building-store.png create mode 100644 icons-png/building.png create mode 100644 icons-png/calendar-event.png create mode 100644 icons-png/device-speaker.png create mode 100644 icons-png/globe.png create mode 100644 icons-png/help.png create mode 100644 icons-png/home-2.png create mode 100644 icons-png/id.png create mode 100644 icons-png/layout-bottombar.png create mode 100644 icons-png/live-photo.png create mode 100644 icons-png/mug.png create mode 100644 icons-png/palette.png create mode 100644 icons-png/pencil.png create mode 100644 icons-png/record-mail.png create mode 100644 icons-png/ruler.png create mode 100644 icons-png/scissors.png create mode 100644 icons-png/stack.png create mode 100644 icons-png/template.png create mode 100644 icons/alarm.svg create mode 100644 icons/arrow-back.svg create mode 100644 icons/arrow-forward.svg create mode 100644 icons/artboard.svg create mode 100644 icons/award.svg create mode 100644 icons/bug.svg create mode 100644 icons/building.svg create mode 100644 icons/calendar-event.svg create mode 100644 icons/globe.svg create mode 100644 icons/help.svg create mode 100644 icons/mug.svg create mode 100644 icons/palette.svg create mode 100644 icons/pencil.svg create mode 100644 icons/record-mail.svg create mode 100644 icons/ruler.svg create mode 100644 icons/scissors.svg create mode 100644 icons/stack.svg create mode 100644 src/_icons/alarm.svg create mode 100644 src/_icons/arrow-back.svg create mode 100644 src/_icons/arrow-forward.svg create mode 100644 src/_icons/artboard.svg create mode 100644 src/_icons/award.svg create mode 100644 src/_icons/bug.svg create mode 100644 src/_icons/calendar-event.svg create mode 100644 src/_icons/globe.svg create mode 100644 src/_icons/help.svg create mode 100644 src/_icons/mug.svg create mode 100644 src/_icons/palette.svg create mode 100644 src/_icons/pencil.svg create mode 100644 src/_icons/record-mail.svg create mode 100644 src/_icons/ruler.svg create mode 100644 src/_icons/scissors.svg create mode 100644 src/_icons/stack.svg diff --git a/gulpfile.js b/gulpfile.js index 3ba79bd..5210a8d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -222,31 +222,48 @@ gulp.task('prepare-changelog', function(cb) { }); if(newIcons.length > 0) { - console.log(`**${newIcons.length} new icons:**\n`); + let str = ''; + str += `${newIcons.length} new icons: `; - newIcons.forEach(function(icon){ - console.log(`- \`${icon}\``); + newIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= newIcons.length - 1) { + str += ', ' + } }); - console.log(''); + console.log(str); } if(modifiedIcons.length > 0) { - console.log(`**Fixed icons:**\n`); + let str = ''; + str += `Fixed icons: `; + + modifiedIcons.forEach(function(icon, i){ + str += `\`${icon}\``; - modifiedIcons.forEach(function(icon){ - console.log(`- \`${icon}\``); + if((i + 1) <= modifiedIcons.length - 1) { + str += ', ' + } }); - console.log(''); + console.log(str); } if(renamedIcons.length > 0) { - console.log(`**Renamed icons:**\n`); + let str = ''; + str += `**Renamed icons: `; + + renamedIcons.forEach(function(icon, i){ + str += `\`${icon[0]}\` renamed to \`${icon[1]}\``; + + if((i + 1) <= renamedIcons.length - 1) { + str += ', ' + } + }); - renamedIcons.forEach(function(icon){ - console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); - }) + console.log(str); } cb(); diff --git a/icons-png/ad.png b/icons-png/ad.png new file mode 100644 index 0000000..23c2a8e Binary files /dev/null and b/icons-png/ad.png differ diff --git a/icons-png/adjustments.png b/icons-png/adjustments.png new file mode 100644 index 0000000..e484658 Binary files /dev/null and b/icons-png/adjustments.png differ diff --git a/icons-png/ajdustments.png b/icons-png/ajdustments.png deleted file mode 100644 index e484658..0000000 Binary files a/icons-png/ajdustments.png and /dev/null differ diff --git a/icons-png/alarm.png b/icons-png/alarm.png new file mode 100644 index 0000000..011ed13 Binary files /dev/null and b/icons-png/alarm.png differ diff --git a/icons-png/arrow-back.png b/icons-png/arrow-back.png new file mode 100644 index 0000000..a9f296a Binary files /dev/null and b/icons-png/arrow-back.png differ diff --git a/icons-png/arrow-forward.png b/icons-png/arrow-forward.png new file mode 100644 index 0000000..d8b078b Binary files /dev/null and b/icons-png/arrow-forward.png differ diff --git a/icons-png/artboard.png b/icons-png/artboard.png new file mode 100644 index 0000000..2bb3aae Binary files /dev/null and b/icons-png/artboard.png differ diff --git a/icons-png/award.png b/icons-png/award.png new file mode 100644 index 0000000..a8adf86 Binary files /dev/null and b/icons-png/award.png differ diff --git a/icons-png/bug.png b/icons-png/bug.png new file mode 100644 index 0000000..cf72a08 Binary files /dev/null and b/icons-png/bug.png differ diff --git a/icons-png/building-arch.png b/icons-png/building-arch.png new file mode 100644 index 0000000..80bb7a8 Binary files /dev/null and b/icons-png/building-arch.png differ diff --git a/icons-png/building-bridge-2.png b/icons-png/building-bridge-2.png new file mode 100644 index 0000000..6e3323e Binary files /dev/null and b/icons-png/building-bridge-2.png differ diff --git a/icons-png/building-bridge.png b/icons-png/building-bridge.png new file mode 100644 index 0000000..339fca0 Binary files /dev/null and b/icons-png/building-bridge.png differ diff --git a/icons-png/building-church.png b/icons-png/building-church.png new file mode 100644 index 0000000..d907c6f Binary files /dev/null and b/icons-png/building-church.png differ diff --git a/icons-png/building-hospital.png b/icons-png/building-hospital.png new file mode 100644 index 0000000..9cfda8d Binary files /dev/null and b/icons-png/building-hospital.png differ diff --git a/icons-png/building-store.png b/icons-png/building-store.png new file mode 100644 index 0000000..cfefd08 Binary files /dev/null and b/icons-png/building-store.png differ diff --git a/icons-png/building.png b/icons-png/building.png new file mode 100644 index 0000000..812b211 Binary files /dev/null and b/icons-png/building.png differ diff --git a/icons-png/calendar-event.png b/icons-png/calendar-event.png new file mode 100644 index 0000000..e1b2289 Binary files /dev/null and b/icons-png/calendar-event.png differ diff --git a/icons-png/device-speaker.png b/icons-png/device-speaker.png new file mode 100644 index 0000000..23fac92 Binary files /dev/null and b/icons-png/device-speaker.png differ diff --git a/icons-png/directions.png b/icons-png/directions.png index 478fa35..7548d78 100644 Binary files a/icons-png/directions.png and b/icons-png/directions.png differ diff --git a/icons-png/disabled.png b/icons-png/disabled.png index 0b09362..c59c280 100644 Binary files a/icons-png/disabled.png and b/icons-png/disabled.png differ diff --git a/icons-png/disc.png b/icons-png/disc.png index 85a1482..3e74a4b 100644 Binary files a/icons-png/disc.png and b/icons-png/disc.png differ diff --git a/icons-png/edit.png b/icons-png/edit.png index 8e6d78c..67f583d 100644 Binary files a/icons-png/edit.png and b/icons-png/edit.png differ diff --git a/icons-png/globe.png b/icons-png/globe.png new file mode 100644 index 0000000..1090c48 Binary files /dev/null and b/icons-png/globe.png differ diff --git a/icons-png/help.png b/icons-png/help.png new file mode 100644 index 0000000..ffd3cbd Binary files /dev/null and b/icons-png/help.png differ diff --git a/icons-png/home-2.png b/icons-png/home-2.png new file mode 100644 index 0000000..09c6eba Binary files /dev/null and b/icons-png/home-2.png differ diff --git a/icons-png/id.png b/icons-png/id.png new file mode 100644 index 0000000..4039fef Binary files /dev/null and b/icons-png/id.png differ diff --git a/icons-png/layout-2.png b/icons-png/layout-2.png index 46699a8..4ec5d3d 100644 Binary files a/icons-png/layout-2.png and b/icons-png/layout-2.png differ diff --git a/icons-png/layout-bottombar.png b/icons-png/layout-bottombar.png new file mode 100644 index 0000000..46a02a8 Binary files /dev/null and b/icons-png/layout-bottombar.png differ diff --git a/icons-png/layout-columns.png b/icons-png/layout-columns.png index 8af948b..165b676 100644 Binary files a/icons-png/layout-columns.png and b/icons-png/layout-columns.png differ diff --git a/icons-png/layout-navbar.png b/icons-png/layout-navbar.png index 9f112b0..b787d17 100644 Binary files a/icons-png/layout-navbar.png and b/icons-png/layout-navbar.png differ diff --git a/icons-png/layout-rows.png b/icons-png/layout-rows.png index 5eb04d3..d3dc753 100644 Binary files a/icons-png/layout-rows.png and b/icons-png/layout-rows.png differ diff --git a/icons-png/layout-sidebar-right.png b/icons-png/layout-sidebar-right.png index 52fcd01..770a056 100644 Binary files a/icons-png/layout-sidebar-right.png and b/icons-png/layout-sidebar-right.png differ diff --git a/icons-png/layout-sidebar.png b/icons-png/layout-sidebar.png index 8972715..4b2ae5c 100644 Binary files a/icons-png/layout-sidebar.png and b/icons-png/layout-sidebar.png differ diff --git a/icons-png/layout.png b/icons-png/layout.png index 954e7d5..4c0a6f8 100644 Binary files a/icons-png/layout.png and b/icons-png/layout.png differ diff --git a/icons-png/live-photo.png b/icons-png/live-photo.png new file mode 100644 index 0000000..2009a3c Binary files /dev/null and b/icons-png/live-photo.png differ diff --git a/icons-png/mug.png b/icons-png/mug.png new file mode 100644 index 0000000..e897a57 Binary files /dev/null and b/icons-png/mug.png differ diff --git a/icons-png/palette.png b/icons-png/palette.png new file mode 100644 index 0000000..2e5a13e Binary files /dev/null and b/icons-png/palette.png differ diff --git a/icons-png/pencil.png b/icons-png/pencil.png new file mode 100644 index 0000000..8d061e7 Binary files /dev/null and b/icons-png/pencil.png differ diff --git a/icons-png/record-mail.png b/icons-png/record-mail.png new file mode 100644 index 0000000..c909cea Binary files /dev/null and b/icons-png/record-mail.png differ diff --git a/icons-png/registered.png b/icons-png/registered.png index fd7b3da..6a0ba15 100644 Binary files a/icons-png/registered.png and b/icons-png/registered.png differ diff --git a/icons-png/ruler.png b/icons-png/ruler.png new file mode 100644 index 0000000..79677ba Binary files /dev/null and b/icons-png/ruler.png differ diff --git a/icons-png/scissors.png b/icons-png/scissors.png new file mode 100644 index 0000000..482ffc1 Binary files /dev/null and b/icons-png/scissors.png differ diff --git a/icons-png/stack.png b/icons-png/stack.png new file mode 100644 index 0000000..5b16335 Binary files /dev/null and b/icons-png/stack.png differ diff --git a/icons-png/template.png b/icons-png/template.png new file mode 100644 index 0000000..a344ce0 Binary files /dev/null and b/icons-png/template.png differ diff --git a/icons/activity.svg b/icons/activity.svg index 14941fe..c829adc 100644 --- a/icons/activity.svg +++ b/icons/activity.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ad.svg b/icons/ad.svg index c88d477..346fb41 100644 --- a/icons/ad.svg +++ b/icons/ad.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/adjustments.svg b/icons/adjustments.svg index 0990042..95872d6 100644 --- a/icons/adjustments.svg +++ b/icons/adjustments.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/alarm.svg b/icons/alarm.svg new file mode 100644 index 0000000..4cae4e4 --- /dev/null +++ b/icons/alarm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg index 168fdb8..767f63c 100644 --- a/icons/alert-circle.svg +++ b/icons/alert-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/alert-triangle.svg b/icons/alert-triangle.svg index 3515002..1aa5699 100644 --- a/icons/alert-triangle.svg +++ b/icons/alert-triangle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-center.svg b/icons/align-center.svg index d76b206..c17d564 100644 --- a/icons/align-center.svg +++ b/icons/align-center.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-justified.svg b/icons/align-justified.svg index cf584b4..80fe663 100644 --- a/icons/align-justified.svg +++ b/icons/align-justified.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-left.svg b/icons/align-left.svg index 3708d3a..ba91baf 100644 --- a/icons/align-left.svg +++ b/icons/align-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/align-right.svg b/icons/align-right.svg index ae716dc..77183e9 100644 --- a/icons/align-right.svg +++ b/icons/align-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/archive.svg b/icons/archive.svg index d1ee2a0..cd96cbe 100644 --- a/icons/archive.svg +++ b/icons/archive.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-back.svg b/icons/arrow-back.svg new file mode 100644 index 0000000..0f7c5f4 --- /dev/null +++ b/icons/arrow-back.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-bar-down.svg b/icons/arrow-bar-down.svg index b412e12..8ceab0a 100644 --- a/icons/arrow-bar-down.svg +++ b/icons/arrow-bar-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-left.svg b/icons/arrow-bar-left.svg index cfd41e7..79c074b 100644 --- a/icons/arrow-bar-left.svg +++ b/icons/arrow-bar-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-right.svg b/icons/arrow-bar-right.svg index b91786d..3a4820f 100644 --- a/icons/arrow-bar-right.svg +++ b/icons/arrow-bar-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-bar-up.svg b/icons/arrow-bar-up.svg index ee79783..3258c86 100644 --- a/icons/arrow-bar-up.svg +++ b/icons/arrow-bar-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-circle.svg b/icons/arrow-down-circle.svg index 6d3851c..91a94c4 100644 --- a/icons/arrow-down-circle.svg +++ b/icons/arrow-down-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-left-circle.svg b/icons/arrow-down-left-circle.svg index 7e5b0af..db8c7b3 100644 --- a/icons/arrow-down-left-circle.svg +++ b/icons/arrow-down-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-left.svg b/icons/arrow-down-left.svg index fe192dd..9ffacf5 100644 --- a/icons/arrow-down-left.svg +++ b/icons/arrow-down-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-right-circle.svg b/icons/arrow-down-right-circle.svg index 9c444b8..fc7e252 100644 --- a/icons/arrow-down-right-circle.svg +++ b/icons/arrow-down-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down-right.svg b/icons/arrow-down-right.svg index 3a366a9..ed8eefa 100644 --- a/icons/arrow-down-right.svg +++ b/icons/arrow-down-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-down.svg b/icons/arrow-down.svg index 707ff86..bcb5ba0 100644 --- a/icons/arrow-down.svg +++ b/icons/arrow-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-forward.svg b/icons/arrow-forward.svg new file mode 100644 index 0000000..b7e964c --- /dev/null +++ b/icons/arrow-forward.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/arrow-left-circle.svg b/icons/arrow-left-circle.svg index 7d9459e..8d48d31 100644 --- a/icons/arrow-left-circle.svg +++ b/icons/arrow-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-left.svg b/icons/arrow-left.svg index 6e0fd74..4f1bfc0 100644 --- a/icons/arrow-left.svg +++ b/icons/arrow-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-down.svg b/icons/arrow-narrow-down.svg index bde78ff..c8b218c 100644 --- a/icons/arrow-narrow-down.svg +++ b/icons/arrow-narrow-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-left.svg b/icons/arrow-narrow-left.svg index caafc35..c28044a 100644 --- a/icons/arrow-narrow-left.svg +++ b/icons/arrow-narrow-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-right.svg b/icons/arrow-narrow-right.svg index ce0df58..57a9b08 100644 --- a/icons/arrow-narrow-right.svg +++ b/icons/arrow-narrow-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-narrow-up.svg b/icons/arrow-narrow-up.svg index 6a92add..144a4db 100644 --- a/icons/arrow-narrow-up.svg +++ b/icons/arrow-narrow-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-right-circle.svg b/icons/arrow-right-circle.svg index 088ca6c..e3e5db0 100644 --- a/icons/arrow-right-circle.svg +++ b/icons/arrow-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg index 3dbcd7d..6ca666c 100644 --- a/icons/arrow-right.svg +++ b/icons/arrow-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-circle.svg b/icons/arrow-up-circle.svg index f133607..46fee6d 100644 --- a/icons/arrow-up-circle.svg +++ b/icons/arrow-up-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-left-circle.svg b/icons/arrow-up-left-circle.svg index 0e6e91e..1a24482 100644 --- a/icons/arrow-up-left-circle.svg +++ b/icons/arrow-up-left-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-left.svg b/icons/arrow-up-left.svg index 5d7f404..e797af2 100644 --- a/icons/arrow-up-left.svg +++ b/icons/arrow-up-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-right-circle.svg b/icons/arrow-up-right-circle.svg index 0f8218a..582f904 100644 --- a/icons/arrow-up-right-circle.svg +++ b/icons/arrow-up-right-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up-right.svg b/icons/arrow-up-right.svg index d6ab38a..cf8ebd2 100644 --- a/icons/arrow-up-right.svg +++ b/icons/arrow-up-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrow-up.svg b/icons/arrow-up.svg index 473bcc7..534f2d9 100644 --- a/icons/arrow-up.svg +++ b/icons/arrow-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-diagonal-2.svg b/icons/arrows-diagonal-2.svg index 2d5115c..86e5d78 100644 --- a/icons/arrows-diagonal-2.svg +++ b/icons/arrows-diagonal-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-diagonal.svg b/icons/arrows-diagonal.svg index d3409f2..6a69e94 100644 --- a/icons/arrows-diagonal.svg +++ b/icons/arrows-diagonal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-maximize.svg b/icons/arrows-maximize.svg index 2fcdeba..e9ad78b 100644 --- a/icons/arrows-maximize.svg +++ b/icons/arrows-maximize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/arrows-minimize.svg b/icons/arrows-minimize.svg index b709200..a81bc44 100644 --- a/icons/arrows-minimize.svg +++ b/icons/arrows-minimize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/artboard.svg b/icons/artboard.svg new file mode 100644 index 0000000..b9442f6 --- /dev/null +++ b/icons/artboard.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/at.svg b/icons/at.svg index 1b50465..8584d19 100644 --- a/icons/at.svg +++ b/icons/at.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/award.svg b/icons/award.svg new file mode 100644 index 0000000..2ef8cc3 --- /dev/null +++ b/icons/award.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/backspace.svg b/icons/backspace.svg index 8cfdb9e..a5a4b92 100644 --- a/icons/backspace.svg +++ b/icons/backspace.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ban.svg b/icons/ban.svg index 209b77e..7766abc 100644 --- a/icons/ban.svg +++ b/icons/ban.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-1.svg b/icons/battery-1.svg index bc77e6e..f738938 100644 --- a/icons/battery-1.svg +++ b/icons/battery-1.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-2.svg b/icons/battery-2.svg index 0ce07b1..fd15ace 100644 --- a/icons/battery-2.svg +++ b/icons/battery-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-3.svg b/icons/battery-3.svg index ee7b61b..8aaa3a1 100644 --- a/icons/battery-3.svg +++ b/icons/battery-3.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-4.svg b/icons/battery-4.svg index 149d30f..0a9576b 100644 --- a/icons/battery-4.svg +++ b/icons/battery-4.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery-charging.svg b/icons/battery-charging.svg index 100ea39..49df208 100644 --- a/icons/battery-charging.svg +++ b/icons/battery-charging.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/battery.svg b/icons/battery.svg index 629cbe1..53eaa24 100644 --- a/icons/battery.svg +++ b/icons/battery.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bell.svg b/icons/bell.svg index 4212ffc..49dde5d 100644 --- a/icons/bell.svg +++ b/icons/bell.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bike.svg b/icons/bike.svg index c1fda39..2fe4b2b 100644 --- a/icons/bike.svg +++ b/icons/bike.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bluetooth.svg b/icons/bluetooth.svg index 70371b9..a563026 100644 --- a/icons/bluetooth.svg +++ b/icons/bluetooth.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bolt.svg b/icons/bolt.svg index 35c052b..f8e34b9 100644 --- a/icons/bolt.svg +++ b/icons/bolt.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/book.svg b/icons/book.svg index fd96a5e..92e7c2f 100644 --- a/icons/book.svg +++ b/icons/book.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bookmark.svg b/icons/bookmark.svg index df084ff..8d3bda2 100644 --- a/icons/bookmark.svg +++ b/icons/bookmark.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-all.svg b/icons/border-all.svg index 5901e4f..6969872 100644 --- a/icons/border-all.svg +++ b/icons/border-all.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-bottom.svg b/icons/border-bottom.svg index 5d552b1..f9907e3 100644 --- a/icons/border-bottom.svg +++ b/icons/border-bottom.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-horizontal.svg b/icons/border-horizontal.svg index 62e40ae..f3c9a58 100644 --- a/icons/border-horizontal.svg +++ b/icons/border-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-inner.svg b/icons/border-inner.svg index 0baa18c..87ced69 100644 --- a/icons/border-inner.svg +++ b/icons/border-inner.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-left.svg b/icons/border-left.svg index 6f36277..e82bba1 100644 --- a/icons/border-left.svg +++ b/icons/border-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-none.svg b/icons/border-none.svg index 5cf4c1d..ec7b0b2 100644 --- a/icons/border-none.svg +++ b/icons/border-none.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-outer.svg b/icons/border-outer.svg index 46ce1b3..da3ed48 100644 --- a/icons/border-outer.svg +++ b/icons/border-outer.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-right.svg b/icons/border-right.svg index 2132cf1..261d36c 100644 --- a/icons/border-right.svg +++ b/icons/border-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-top.svg b/icons/border-top.svg index e7bf72c..4b88977 100644 --- a/icons/border-top.svg +++ b/icons/border-top.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/border-vertical.svg b/icons/border-vertical.svg index 9f116d5..6b5d793 100644 --- a/icons/border-vertical.svg +++ b/icons/border-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/box.svg b/icons/box.svg index 2738f56..a97bcd8 100644 --- a/icons/box.svg +++ b/icons/box.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/briefcase.svg b/icons/briefcase.svg index 163829a..491c242 100644 --- a/icons/briefcase.svg +++ b/icons/briefcase.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bucket.svg b/icons/bucket.svg index befb320..66d8938 100644 --- a/icons/bucket.svg +++ b/icons/bucket.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bug.svg b/icons/bug.svg new file mode 100644 index 0000000..a653cee --- /dev/null +++ b/icons/bug.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/building-arch.svg b/icons/building-arch.svg index d0c0ed9..5fdef60 100644 --- a/icons/building-arch.svg +++ b/icons/building-arch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-bridge-2.svg b/icons/building-bridge-2.svg index 6351d39..c5e63b8 100644 --- a/icons/building-bridge-2.svg +++ b/icons/building-bridge-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-bridge.svg b/icons/building-bridge.svg index dde9bf5..7f128f4 100644 --- a/icons/building-bridge.svg +++ b/icons/building-bridge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-church.svg b/icons/building-church.svg index f2c4386..91d1a00 100644 --- a/icons/building-church.svg +++ b/icons/building-church.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-hospital.svg b/icons/building-hospital.svg index 2cd9be4..a054f9e 100644 --- a/icons/building-hospital.svg +++ b/icons/building-hospital.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building-store.svg b/icons/building-store.svg index 269cb8d..c2e9b1a 100644 --- a/icons/building-store.svg +++ b/icons/building-store.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/building.svg b/icons/building.svg new file mode 100644 index 0000000..3b44144 --- /dev/null +++ b/icons/building.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/bulb-off.svg b/icons/bulb-off.svg index 01397a8..b68e8a0 100644 --- a/icons/bulb-off.svg +++ b/icons/bulb-off.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/bulb.svg b/icons/bulb.svg index 11774db..148f9be 100644 --- a/icons/bulb.svg +++ b/icons/bulb.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/calendar-event.svg b/icons/calendar-event.svg new file mode 100644 index 0000000..94a3aea --- /dev/null +++ b/icons/calendar-event.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/calendar.svg b/icons/calendar.svg index 2ea5b6d..51e8ce1 100644 --- a/icons/calendar.svg +++ b/icons/calendar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/camera.svg b/icons/camera.svg index cd9a529..c30590f 100644 --- a/icons/camera.svg +++ b/icons/camera.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cash.svg b/icons/cash.svg index f441c44..e34cdd4 100644 --- a/icons/cash.svg +++ b/icons/cash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cast.svg b/icons/cast.svg index 9b84d9e..4f21c81 100644 --- a/icons/cast.svg +++ b/icons/cast.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-area-line.svg b/icons/chart-area-line.svg index 5ac83ac..f4e289d 100644 --- a/icons/chart-area-line.svg +++ b/icons/chart-area-line.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-area.svg b/icons/chart-area.svg index 182d21a..22f0b1d 100644 --- a/icons/chart-area.svg +++ b/icons/chart-area.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-bar.svg b/icons/chart-bar.svg index 7ddfa87..ea482f0 100644 --- a/icons/chart-bar.svg +++ b/icons/chart-bar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-candle.svg b/icons/chart-candle.svg index 86d4fc5..7767819 100644 --- a/icons/chart-candle.svg +++ b/icons/chart-candle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-donut.svg b/icons/chart-donut.svg index 6766538..d78a969 100644 --- a/icons/chart-donut.svg +++ b/icons/chart-donut.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-line.svg b/icons/chart-line.svg index 2454de0..2e6bebc 100644 --- a/icons/chart-line.svg +++ b/icons/chart-line.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chart-pie.svg b/icons/chart-pie.svg index d704d21..a3968d3 100644 --- a/icons/chart-pie.svg +++ b/icons/chart-pie.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/check.svg b/icons/check.svg index 6acbe60..17d4915 100644 --- a/icons/check.svg +++ b/icons/check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-down.svg b/icons/chevron-down.svg index 89b3be3..5bce4ce 100644 --- a/icons/chevron-down.svg +++ b/icons/chevron-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-left.svg b/icons/chevron-left.svg index fb79df7..ee52db4 100644 --- a/icons/chevron-left.svg +++ b/icons/chevron-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-right.svg b/icons/chevron-right.svg index a8d47d9..ee80023 100644 --- a/icons/chevron-right.svg +++ b/icons/chevron-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevron-up.svg b/icons/chevron-up.svg index b437e81..081ff5a 100644 --- a/icons/chevron-up.svg +++ b/icons/chevron-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-down.svg b/icons/chevrons-down.svg index 99434ea..bb83188 100644 --- a/icons/chevrons-down.svg +++ b/icons/chevrons-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-left.svg b/icons/chevrons-left.svg index e4a8bfc..494e3ce 100644 --- a/icons/chevrons-left.svg +++ b/icons/chevrons-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-right.svg b/icons/chevrons-right.svg index 47b0e1e..a54255b 100644 --- a/icons/chevrons-right.svg +++ b/icons/chevrons-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/chevrons-up.svg b/icons/chevrons-up.svg index cd18357..8b781ea 100644 --- a/icons/chevrons-up.svg +++ b/icons/chevrons-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-check.svg b/icons/circle-check.svg index 1757b2f..1beaa6a 100644 --- a/icons/circle-check.svg +++ b/icons/circle-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-minus.svg b/icons/circle-minus.svg index 08083cd..53c454c 100644 --- a/icons/circle-minus.svg +++ b/icons/circle-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-plus.svg b/icons/circle-plus.svg index f83ecc8..3c1451e 100644 --- a/icons/circle-plus.svg +++ b/icons/circle-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle-x.svg b/icons/circle-x.svg index d9c4b52..2e40313 100644 --- a/icons/circle-x.svg +++ b/icons/circle-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/circle.svg b/icons/circle.svg index c9c6420..f40422c 100644 --- a/icons/circle.svg +++ b/icons/circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-check.svg b/icons/clipboard-check.svg index b432478..88ef1c9 100644 --- a/icons/clipboard-check.svg +++ b/icons/clipboard-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-list.svg b/icons/clipboard-list.svg index 807ab76..65ccc16 100644 --- a/icons/clipboard-list.svg +++ b/icons/clipboard-list.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard-x.svg b/icons/clipboard-x.svg index 5300e5b..89293c9 100644 --- a/icons/clipboard-x.svg +++ b/icons/clipboard-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clipboard.svg b/icons/clipboard.svg index 8607e2e..5c245a3 100644 --- a/icons/clipboard.svg +++ b/icons/clipboard.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/clock.svg b/icons/clock.svg index 93fa64c..96e7a56 100644 --- a/icons/clock.svg +++ b/icons/clock.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-download.svg b/icons/cloud-download.svg index bbd94ae..a7cff6f 100644 --- a/icons/cloud-download.svg +++ b/icons/cloud-download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-rain.svg b/icons/cloud-rain.svg index fad1de1..e823a38 100644 --- a/icons/cloud-rain.svg +++ b/icons/cloud-rain.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-snow.svg b/icons/cloud-snow.svg index 6b8071b..07d6fcd 100644 --- a/icons/cloud-snow.svg +++ b/icons/cloud-snow.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-storm.svg b/icons/cloud-storm.svg index 2cdbbfc..351f30b 100644 --- a/icons/cloud-storm.svg +++ b/icons/cloud-storm.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud-upload.svg b/icons/cloud-upload.svg index ed2392a..06de329 100644 --- a/icons/cloud-upload.svg +++ b/icons/cloud-upload.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cloud.svg b/icons/cloud.svg index 14ebc78..495a5b6 100644 --- a/icons/cloud.svg +++ b/icons/cloud.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/code.svg b/icons/code.svg index fda8d31..98f4409 100644 --- a/icons/code.svg +++ b/icons/code.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/command.svg b/icons/command.svg index d93ed39..4c22086 100644 --- a/icons/command.svg +++ b/icons/command.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/compass.svg b/icons/compass.svg index abd8508..46a11d3 100644 --- a/icons/compass.svg +++ b/icons/compass.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/copy.svg b/icons/copy.svg index c6e7dca..e1d3529 100644 --- a/icons/copy.svg +++ b/icons/copy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/copyright.svg b/icons/copyright.svg index c1c0df1..2ac45ff 100644 --- a/icons/copyright.svg +++ b/icons/copyright.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-down-left.svg b/icons/corner-down-left.svg index b42b4e7..ad2f217 100644 --- a/icons/corner-down-left.svg +++ b/icons/corner-down-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-down-right.svg b/icons/corner-down-right.svg index d72d376..4380e00 100644 --- a/icons/corner-down-right.svg +++ b/icons/corner-down-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-left-down.svg b/icons/corner-left-down.svg index 446c047..c69c7ba 100644 --- a/icons/corner-left-down.svg +++ b/icons/corner-left-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-left-up.svg b/icons/corner-left-up.svg index a677b7f..e852ad4 100644 --- a/icons/corner-left-up.svg +++ b/icons/corner-left-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-right-down.svg b/icons/corner-right-down.svg index 6078ecb..978e9c6 100644 --- a/icons/corner-right-down.svg +++ b/icons/corner-right-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-right-up.svg b/icons/corner-right-up.svg index 7b2ab51..d468802 100644 --- a/icons/corner-right-up.svg +++ b/icons/corner-right-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-up-left.svg b/icons/corner-up-left.svg index d72fa59..2c10ab4 100644 --- a/icons/corner-up-left.svg +++ b/icons/corner-up-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/corner-up-right.svg b/icons/corner-up-right.svg index 426c15a..3193746 100644 --- a/icons/corner-up-right.svg +++ b/icons/corner-up-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/credit-card.svg b/icons/credit-card.svg index 8ab0992..9740ad9 100644 --- a/icons/credit-card.svg +++ b/icons/credit-card.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/crop.svg b/icons/crop.svg index 862432d..3811ddf 100644 --- a/icons/crop.svg +++ b/icons/crop.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/cut.svg b/icons/cut.svg index 593ee6f..7bbf891 100644 --- a/icons/cut.svg +++ b/icons/cut.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dashboard.svg b/icons/dashboard.svg index 2a6ad27..aed151f 100644 --- a/icons/dashboard.svg +++ b/icons/dashboard.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/database.svg b/icons/database.svg index f47f9a9..7702af5 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-desktop.svg b/icons/device-desktop.svg index e94bcc4..2ccbe93 100644 --- a/icons/device-desktop.svg +++ b/icons/device-desktop.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-mobile.svg b/icons/device-mobile.svg index 3fff2d5..d58020a 100644 --- a/icons/device-mobile.svg +++ b/icons/device-mobile.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-speaker.svg b/icons/device-speaker.svg index 9c3b481..ce622a2 100644 --- a/icons/device-speaker.svg +++ b/icons/device-speaker.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-tablet.svg b/icons/device-tablet.svg index 08aa548..b420680 100644 --- a/icons/device-tablet.svg +++ b/icons/device-tablet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/device-tv.svg b/icons/device-tv.svg index 4ec7a4b..3c5ab37 100644 --- a/icons/device-tv.svg +++ b/icons/device-tv.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/directions.svg b/icons/directions.svg index e542758..f0cdda2 100644 --- a/icons/directions.svg +++ b/icons/directions.svg @@ -1,7 +1,7 @@ - - - + + + diff --git a/icons/disabled.svg b/icons/disabled.svg index b64fed0..e2bb9b0 100644 --- a/icons/disabled.svg +++ b/icons/disabled.svg @@ -1,9 +1,9 @@ - + - + diff --git a/icons/disc.svg b/icons/disc.svg index 77b34d9..7997833 100644 --- a/icons/disc.svg +++ b/icons/disc.svg @@ -1,7 +1,9 @@ - - + + + + diff --git a/icons/dots-circle-horizontal.svg b/icons/dots-circle-horizontal.svg index 28166de..5ab45bf 100644 --- a/icons/dots-circle-horizontal.svg +++ b/icons/dots-circle-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-diagonal-2.svg b/icons/dots-diagonal-2.svg index a55640b..5232ffc 100644 --- a/icons/dots-diagonal-2.svg +++ b/icons/dots-diagonal-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-diagonal.svg b/icons/dots-diagonal.svg index a7fb663..8a727f4 100644 --- a/icons/dots-diagonal.svg +++ b/icons/dots-diagonal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots-vertical.svg b/icons/dots-vertical.svg index aacb6c8..3957ed2 100644 --- a/icons/dots-vertical.svg +++ b/icons/dots-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/dots.svg b/icons/dots.svg index 05fb457..14ed015 100644 --- a/icons/dots.svg +++ b/icons/dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/download.svg b/icons/download.svg index 71dc32b..082cc98 100644 --- a/icons/download.svg +++ b/icons/download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/droplet.svg b/icons/droplet.svg index 6f45559..b78f454 100644 --- a/icons/droplet.svg +++ b/icons/droplet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/edit.svg b/icons/edit.svg index 7c2b287..a10a683 100644 --- a/icons/edit.svg +++ b/icons/edit.svg @@ -1,7 +1,8 @@ - + + diff --git a/icons/external-link.svg b/icons/external-link.svg index f75cb44..2983d54 100644 --- a/icons/external-link.svg +++ b/icons/external-link.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/eye.svg b/icons/eye.svg index 912ecd0..8d34f87 100644 --- a/icons/eye.svg +++ b/icons/eye.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/face-id.svg b/icons/face-id.svg index 14663e6..d021232 100644 --- a/icons/face-id.svg +++ b/icons/face-id.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-check.svg b/icons/file-check.svg index a9fb06e..f0db44a 100644 --- a/icons/file-check.svg +++ b/icons/file-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-download.svg b/icons/file-download.svg index 3567cc7..18c3003 100644 --- a/icons/file-download.svg +++ b/icons/file-download.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-minus.svg b/icons/file-minus.svg index 25cbcdb..1f529fb 100644 --- a/icons/file-minus.svg +++ b/icons/file-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-music.svg b/icons/file-music.svg index 1ada3a2..3ecfdae 100644 --- a/icons/file-music.svg +++ b/icons/file-music.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-plus.svg b/icons/file-plus.svg index 1d5af6c..686cbd7 100644 --- a/icons/file-plus.svg +++ b/icons/file-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-shredder.svg b/icons/file-shredder.svg index c6452ad..65c0b0f 100644 --- a/icons/file-shredder.svg +++ b/icons/file-shredder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-text.svg b/icons/file-text.svg index 6542bf7..fbb78a5 100644 --- a/icons/file-text.svg +++ b/icons/file-text.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file-x.svg b/icons/file-x.svg index 454054e..b9e2883 100644 --- a/icons/file-x.svg +++ b/icons/file-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/file.svg b/icons/file.svg index de403a6..f68a92a 100644 --- a/icons/file.svg +++ b/icons/file.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/filter.svg b/icons/filter.svg index a33e6e1..4b587cb 100644 --- a/icons/filter.svg +++ b/icons/filter.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flag.svg b/icons/flag.svg index 80adb6d..6470546 100644 --- a/icons/flag.svg +++ b/icons/flag.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flip-horizontal.svg b/icons/flip-horizontal.svg index 7db98db..b9a2221 100644 --- a/icons/flip-horizontal.svg +++ b/icons/flip-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/flip-vertical.svg b/icons/flip-vertical.svg index 5480528..1b68648 100644 --- a/icons/flip-vertical.svg +++ b/icons/flip-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/floppy-disk.svg b/icons/floppy-disk.svg index ee2c37d..a3ae268 100644 --- a/icons/floppy-disk.svg +++ b/icons/floppy-disk.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-minus.svg b/icons/folder-minus.svg index b3cd387..0f9da2d 100644 --- a/icons/folder-minus.svg +++ b/icons/folder-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-plus.svg b/icons/folder-plus.svg index f059d55..9f71ec6 100644 --- a/icons/folder-plus.svg +++ b/icons/folder-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder-x.svg b/icons/folder-x.svg index b988441..b3099e9 100644 --- a/icons/folder-x.svg +++ b/icons/folder-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folder.svg b/icons/folder.svg index 9f14ef1..1eac3a3 100644 --- a/icons/folder.svg +++ b/icons/folder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/folders.svg b/icons/folders.svg index 50f316f..37e8681 100644 --- a/icons/folders.svg +++ b/icons/folders.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/frame.svg b/icons/frame.svg index 60b6ae8..a2ad508 100644 --- a/icons/frame.svg +++ b/icons/frame.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/friends.svg b/icons/friends.svg index f5dc5c6..e4e0e2d 100644 --- a/icons/friends.svg +++ b/icons/friends.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/gauge.svg b/icons/gauge.svg index 72b6650..83f480e 100644 --- a/icons/gauge.svg +++ b/icons/gauge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-branch.svg b/icons/git-branch.svg index 80a91fd..7ce296b 100644 --- a/icons/git-branch.svg +++ b/icons/git-branch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-commit.svg b/icons/git-commit.svg index f90b1f0..2e568a2 100644 --- a/icons/git-commit.svg +++ b/icons/git-commit.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-compare.svg b/icons/git-compare.svg index 63fdee0..2edffdd 100644 --- a/icons/git-compare.svg +++ b/icons/git-compare.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-merge.svg b/icons/git-merge.svg index d7f5553..2cf8496 100644 --- a/icons/git-merge.svg +++ b/icons/git-merge.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/git-pull-request.svg b/icons/git-pull-request.svg index 9414d87..3e3d690 100644 --- a/icons/git-pull-request.svg +++ b/icons/git-pull-request.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/glass-full.svg b/icons/glass-full.svg index 14a656f..c5a58fb 100644 --- a/icons/glass-full.svg +++ b/icons/glass-full.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/glass.svg b/icons/glass.svg index 27bf5c9..b1999aa 100644 --- a/icons/glass.svg +++ b/icons/glass.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/globe.svg b/icons/globe.svg new file mode 100644 index 0000000..fa9b56f --- /dev/null +++ b/icons/globe.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/grid-dots.svg b/icons/grid-dots.svg index 3db22a6..88fb1aa 100644 --- a/icons/grid-dots.svg +++ b/icons/grid-dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/grid.svg b/icons/grid.svg index 0944304..fc76f85 100644 --- a/icons/grid.svg +++ b/icons/grid.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/hash.svg b/icons/hash.svg index 5e81974..e00ab1d 100644 --- a/icons/hash.svg +++ b/icons/hash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/headphones.svg b/icons/headphones.svg index 1c9147e..f1f2f57 100644 --- a/icons/headphones.svg +++ b/icons/headphones.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/heart.svg b/icons/heart.svg index 0a1589d..dd177d1 100644 --- a/icons/heart.svg +++ b/icons/heart.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/help.svg b/icons/help.svg new file mode 100644 index 0000000..cf8c315 --- /dev/null +++ b/icons/help.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/home-2.svg b/icons/home-2.svg index 28b31b0..3dafb62 100644 --- a/icons/home-2.svg +++ b/icons/home-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/home.svg b/icons/home.svg index cb62d1f..ed5fd53 100644 --- a/icons/home.svg +++ b/icons/home.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ice-cream.svg b/icons/ice-cream.svg index b50bbd1..622f359 100644 --- a/icons/ice-cream.svg +++ b/icons/ice-cream.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/id.svg b/icons/id.svg index 514a560..d309a0a 100644 --- a/icons/id.svg +++ b/icons/id.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/inbox.svg b/icons/inbox.svg index 66b59e4..e8f4969 100644 --- a/icons/inbox.svg +++ b/icons/inbox.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/info-circle.svg b/icons/info-circle.svg index f5bfb0a..1ca2800 100644 --- a/icons/info-circle.svg +++ b/icons/info-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/info-square.svg b/icons/info-square.svg index 35c0cf3..096b420 100644 --- a/icons/info-square.svg +++ b/icons/info-square.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/key.svg b/icons/key.svg index 7987ebb..9af6dd1 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-difference.svg b/icons/layers-difference.svg index 2018752..9f92368 100644 --- a/icons/layers-difference.svg +++ b/icons/layers-difference.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-intersect.svg b/icons/layers-intersect.svg index cf693ed..85d6b22 100644 --- a/icons/layers-intersect.svg +++ b/icons/layers-intersect.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-subtract.svg b/icons/layers-subtract.svg index 2877cb3..05ae73b 100644 --- a/icons/layers-subtract.svg +++ b/icons/layers-subtract.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layers-union.svg b/icons/layers-union.svg index c075b53..825bea2 100644 --- a/icons/layers-union.svg +++ b/icons/layers-union.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-2.svg b/icons/layout-2.svg index 8387825..e1a9f84 100644 --- a/icons/layout-2.svg +++ b/icons/layout-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-bottom.svg b/icons/layout-align-bottom.svg index 85932c3..414e190 100644 --- a/icons/layout-align-bottom.svg +++ b/icons/layout-align-bottom.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-center.svg b/icons/layout-align-center.svg index d508e5b..cee0865 100644 --- a/icons/layout-align-center.svg +++ b/icons/layout-align-center.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-left.svg b/icons/layout-align-left.svg index 340229c..7b0fe52 100644 --- a/icons/layout-align-left.svg +++ b/icons/layout-align-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-middle.svg b/icons/layout-align-middle.svg index 58b5d07..379ebb4 100644 --- a/icons/layout-align-middle.svg +++ b/icons/layout-align-middle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-right.svg b/icons/layout-align-right.svg index 1268973..9c5feb8 100644 --- a/icons/layout-align-right.svg +++ b/icons/layout-align-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-align-top.svg b/icons/layout-align-top.svg index e3d65ee..cf7c85f 100644 --- a/icons/layout-align-top.svg +++ b/icons/layout-align-top.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-bottombar.svg b/icons/layout-bottombar.svg index a5b0c69..913be46 100644 --- a/icons/layout-bottombar.svg +++ b/icons/layout-bottombar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-columns.svg b/icons/layout-columns.svg index 682f0f7..b8423c3 100644 --- a/icons/layout-columns.svg +++ b/icons/layout-columns.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-distribute-horizontal.svg b/icons/layout-distribute-horizontal.svg index 1f02567..b6b0f91 100644 --- a/icons/layout-distribute-horizontal.svg +++ b/icons/layout-distribute-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-distribute-vertical.svg b/icons/layout-distribute-vertical.svg index d5117a5..e3c4ae2 100644 --- a/icons/layout-distribute-vertical.svg +++ b/icons/layout-distribute-vertical.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-navbar.svg b/icons/layout-navbar.svg index f6e005c..5c6dd95 100644 --- a/icons/layout-navbar.svg +++ b/icons/layout-navbar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-rows.svg b/icons/layout-rows.svg index f8bd040..936b67e 100644 --- a/icons/layout-rows.svg +++ b/icons/layout-rows.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-sidebar-right.svg b/icons/layout-sidebar-right.svg index 8059c2b..ef11f26 100644 --- a/icons/layout-sidebar-right.svg +++ b/icons/layout-sidebar-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout-sidebar.svg b/icons/layout-sidebar.svg index 92a4444..ea4e910 100644 --- a/icons/layout-sidebar.svg +++ b/icons/layout-sidebar.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/layout.svg b/icons/layout.svg index 62670d3..f10f223 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lego.svg b/icons/lego.svg index 7cca061..e0024a2 100644 --- a/icons/lego.svg +++ b/icons/lego.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lifebuoy.svg b/icons/lifebuoy.svg index bb66a03..0ba4727 100644 --- a/icons/lifebuoy.svg +++ b/icons/lifebuoy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/link.svg b/icons/link.svg index 31ea6fb..3c87803 100644 --- a/icons/link.svg +++ b/icons/link.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/live-photo.svg b/icons/live-photo.svg index 500ef3e..dc1fe8d 100644 --- a/icons/live-photo.svg +++ b/icons/live-photo.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/location.svg b/icons/location.svg index fbdda41..e06cbad 100644 --- a/icons/location.svg +++ b/icons/location.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lock-open.svg b/icons/lock-open.svg index 2273a49..df96766 100644 --- a/icons/lock-open.svg +++ b/icons/lock-open.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/lock.svg b/icons/lock.svg index fa3e5b7..a613057 100644 --- a/icons/lock.svg +++ b/icons/lock.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/magnet.svg b/icons/magnet.svg index 3910016..f31bcbd 100644 --- a/icons/magnet.svg +++ b/icons/magnet.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mail-opened.svg b/icons/mail-opened.svg index 0e27657..545324d 100644 --- a/icons/mail-opened.svg +++ b/icons/mail-opened.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mail.svg b/icons/mail.svg index 63c9a2a..2c12e55 100644 --- a/icons/mail.svg +++ b/icons/mail.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/man.svg b/icons/man.svg index 78434d7..c1fab07 100644 --- a/icons/man.svg +++ b/icons/man.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map-2.svg b/icons/map-2.svg index 5cb3538..eb5e36c 100644 --- a/icons/map-2.svg +++ b/icons/map-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map-pin.svg b/icons/map-pin.svg index f2d4672..97a3b3b 100644 --- a/icons/map-pin.svg +++ b/icons/map-pin.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/map.svg b/icons/map.svg index 6c3e73b..dc0319d 100644 --- a/icons/map.svg +++ b/icons/map.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/maximize.svg b/icons/maximize.svg index 0d5cdf7..8d97bab 100644 --- a/icons/maximize.svg +++ b/icons/maximize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/menu.svg b/icons/menu.svg index a73b775..0b56006 100644 --- a/icons/menu.svg +++ b/icons/menu.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-2.svg b/icons/message-2.svg index 2b50375..91173eb 100644 --- a/icons/message-2.svg +++ b/icons/message-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-circle.svg b/icons/message-circle.svg index 7caa0d7..21c242b 100644 --- a/icons/message-circle.svg +++ b/icons/message-circle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message-dots.svg b/icons/message-dots.svg index f3bd7a0..8452a92 100644 --- a/icons/message-dots.svg +++ b/icons/message-dots.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/message.svg b/icons/message.svg index c520bd8..283ad73 100644 --- a/icons/message.svg +++ b/icons/message.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/microphone.svg b/icons/microphone.svg index 28f65f7..d8a6b7c 100644 --- a/icons/microphone.svg +++ b/icons/microphone.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/minimize.svg b/icons/minimize.svg index b589cfe..245e201 100644 --- a/icons/minimize.svg +++ b/icons/minimize.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/minus.svg b/icons/minus.svg index c6a2873..137cce2 100644 --- a/icons/minus.svg +++ b/icons/minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-confuzed.svg b/icons/mood-confuzed.svg index 5f50095..ad1f6e8 100644 --- a/icons/mood-confuzed.svg +++ b/icons/mood-confuzed.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-happy.svg b/icons/mood-happy.svg index a84260a..850ee3d 100644 --- a/icons/mood-happy.svg +++ b/icons/mood-happy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-neutral.svg b/icons/mood-neutral.svg index d2134bb..3bdccbb 100644 --- a/icons/mood-neutral.svg +++ b/icons/mood-neutral.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-sad.svg b/icons/mood-sad.svg index 74c5b01..a8f6c12 100644 --- a/icons/mood-sad.svg +++ b/icons/mood-sad.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mood-smile.svg b/icons/mood-smile.svg index 2b14570..899ffd2 100644 --- a/icons/mood-smile.svg +++ b/icons/mood-smile.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/moon.svg b/icons/moon.svg index 7692e65..2aea02b 100644 --- a/icons/moon.svg +++ b/icons/moon.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mouse.svg b/icons/mouse.svg index 645e885..770a6e8 100644 --- a/icons/mouse.svg +++ b/icons/mouse.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/movie.svg b/icons/movie.svg index f68963f..528e440 100644 --- a/icons/movie.svg +++ b/icons/movie.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/mug.svg b/icons/mug.svg new file mode 100644 index 0000000..108143a --- /dev/null +++ b/icons/mug.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/music.svg b/icons/music.svg index 0d0577c..29cca2f 100644 --- a/icons/music.svg +++ b/icons/music.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/news.svg b/icons/news.svg index ee41a39..02c5f9f 100644 --- a/icons/news.svg +++ b/icons/news.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/notification.svg b/icons/notification.svg index 9bca8fc..118443f 100644 --- a/icons/notification.svg +++ b/icons/notification.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/package.svg b/icons/package.svg index 730673b..38edae2 100644 --- a/icons/package.svg +++ b/icons/package.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/paint.svg b/icons/paint.svg index ef0542c..53a5250 100644 --- a/icons/paint.svg +++ b/icons/paint.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/palette.svg b/icons/palette.svg new file mode 100644 index 0000000..d5bcc66 --- /dev/null +++ b/icons/palette.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/paperclip.svg b/icons/paperclip.svg index b995ac2..2d0c10a 100644 --- a/icons/paperclip.svg +++ b/icons/paperclip.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/parking.svg b/icons/parking.svg index e3bf27b..fb10f61 100644 --- a/icons/parking.svg +++ b/icons/parking.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/pencil.svg b/icons/pencil.svg new file mode 100644 index 0000000..e714973 --- /dev/null +++ b/icons/pencil.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/phone-call.svg b/icons/phone-call.svg index 8924b60..8add59c 100644 --- a/icons/phone-call.svg +++ b/icons/phone-call.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-incoming.svg b/icons/phone-incoming.svg index c26f1be..82480b9 100644 --- a/icons/phone-incoming.svg +++ b/icons/phone-incoming.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-outgoing.svg b/icons/phone-outgoing.svg index 40095d4..078e708 100644 --- a/icons/phone-outgoing.svg +++ b/icons/phone-outgoing.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone-pause.svg b/icons/phone-pause.svg index 02426fa..c3de0f6 100644 --- a/icons/phone-pause.svg +++ b/icons/phone-pause.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/phone.svg b/icons/phone.svg index c0aff95..65ed9b0 100644 --- a/icons/phone.svg +++ b/icons/phone.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/photo.svg b/icons/photo.svg index 4fd71a1..1bc21c5 100644 --- a/icons/photo.svg +++ b/icons/photo.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/plus.svg b/icons/plus.svg index a04c43d..ccd07cd 100644 --- a/icons/plus.svg +++ b/icons/plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/point.svg b/icons/point.svg index a7c45aa..fce2a56 100644 --- a/icons/point.svg +++ b/icons/point.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/power.svg b/icons/power.svg index 138764a..e2476a1 100644 --- a/icons/power.svg +++ b/icons/power.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/printer.svg b/icons/printer.svg index 6702739..7c79c94 100644 --- a/icons/printer.svg +++ b/icons/printer.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/prompt.svg b/icons/prompt.svg index 55b63f1..a3b3ff1 100644 --- a/icons/prompt.svg +++ b/icons/prompt.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/puzzle.svg b/icons/puzzle.svg index 58d1275..1dc4cdc 100644 --- a/icons/puzzle.svg +++ b/icons/puzzle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/qrcode.svg b/icons/qrcode.svg index 46a5adf..2371174 100644 --- a/icons/qrcode.svg +++ b/icons/qrcode.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/record-mail.svg b/icons/record-mail.svg new file mode 100644 index 0000000..cf93a4a --- /dev/null +++ b/icons/record-mail.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/refresh.svg b/icons/refresh.svg index 28ad85b..2e583b2 100644 --- a/icons/refresh.svg +++ b/icons/refresh.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/registered.svg b/icons/registered.svg index 537a77d..03ecaeb 100644 --- a/icons/registered.svg +++ b/icons/registered.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rotate-clockwise.svg b/icons/rotate-clockwise.svg index 1442947..f95c2cb 100644 --- a/icons/rotate-clockwise.svg +++ b/icons/rotate-clockwise.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rotate.svg b/icons/rotate.svg index 9e6cc02..b806a99 100644 --- a/icons/rotate.svg +++ b/icons/rotate.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/route.svg b/icons/route.svg index 60f3634..229447d 100644 --- a/icons/route.svg +++ b/icons/route.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/router.svg b/icons/router.svg index dda9280..9eb9c79 100644 --- a/icons/router.svg +++ b/icons/router.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/rss.svg b/icons/rss.svg index 6801e72..b92ea8f 100644 --- a/icons/rss.svg +++ b/icons/rss.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ruler.svg b/icons/ruler.svg new file mode 100644 index 0000000..3365c78 --- /dev/null +++ b/icons/ruler.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/scissors.svg b/icons/scissors.svg new file mode 100644 index 0000000..7fcb0a8 --- /dev/null +++ b/icons/scissors.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/search.svg b/icons/search.svg index c504fa4..a0b0ddc 100644 --- a/icons/search.svg +++ b/icons/search.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/selector.svg b/icons/selector.svg index 989514c..c31651f 100644 --- a/icons/selector.svg +++ b/icons/selector.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/send.svg b/icons/send.svg index 3666b9f..0a313fa 100644 --- a/icons/send.svg +++ b/icons/send.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/server.svg b/icons/server.svg index 3885325..683ebc5 100644 --- a/icons/server.svg +++ b/icons/server.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/settings.svg b/icons/settings.svg index 518097c..d3ed7d2 100644 --- a/icons/settings.svg +++ b/icons/settings.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/share.svg b/icons/share.svg index e48f3b2..ed92cf8 100644 --- a/icons/share.svg +++ b/icons/share.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield-check.svg b/icons/shield-check.svg index d2f6f6e..dd119a7 100644 --- a/icons/shield-check.svg +++ b/icons/shield-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield-x.svg b/icons/shield-x.svg index dd29d14..6aa32b8 100644 --- a/icons/shield-x.svg +++ b/icons/shield-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shield.svg b/icons/shield.svg index faf4426..068ad5e 100644 --- a/icons/shield.svg +++ b/icons/shield.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/shopping-cart.svg b/icons/shopping-cart.svg index c462113..1c22eb0 100644 --- a/icons/shopping-cart.svg +++ b/icons/shopping-cart.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sort-ascending.svg b/icons/sort-ascending.svg index 9954e7d..c17b26e 100644 --- a/icons/sort-ascending.svg +++ b/icons/sort-ascending.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sort-descending.svg b/icons/sort-descending.svg index 8edc340..d665208 100644 --- a/icons/sort-descending.svg +++ b/icons/sort-descending.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-check.svg b/icons/square-check.svg index 764ce0f..9542ac8 100644 --- a/icons/square-check.svg +++ b/icons/square-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-minus.svg b/icons/square-minus.svg index b36dff7..d5c1aff 100644 --- a/icons/square-minus.svg +++ b/icons/square-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-plus.svg b/icons/square-plus.svg index b197213..e23234c 100644 --- a/icons/square-plus.svg +++ b/icons/square-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square-x.svg b/icons/square-x.svg index 4c3b3da..cb6a394 100644 --- a/icons/square-x.svg +++ b/icons/square-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/square.svg b/icons/square.svg index 3ad3e79..698c564 100644 --- a/icons/square.svg +++ b/icons/square.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/stack.svg b/icons/stack.svg new file mode 100644 index 0000000..11fc913 --- /dev/null +++ b/icons/stack.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/star.svg b/icons/star.svg index 940843b..fe0f148 100644 --- a/icons/star.svg +++ b/icons/star.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sticker.svg b/icons/sticker.svg index 888d349..d6dd8f1 100644 --- a/icons/sticker.svg +++ b/icons/sticker.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/sun.svg b/icons/sun.svg index 5c59dd9..8c33225 100644 --- a/icons/sun.svg +++ b/icons/sun.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/switch-horizontal.svg b/icons/switch-horizontal.svg index ff5be40..b3a3785 100644 --- a/icons/switch-horizontal.svg +++ b/icons/switch-horizontal.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/switch-vertical.svg b/icons/switch-vertical.svg index 480ecb1..edd039c 100644 --- a/icons/switch-vertical.svg +++ b/icons/switch-vertical.svg @@ -1,11 +1,9 @@ - - + - diff --git a/icons/switch.svg b/icons/switch.svg index a88a645..751bb69 100644 --- a/icons/switch.svg +++ b/icons/switch.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/tag.svg b/icons/tag.svg index eb64221..ef7a63d 100644 --- a/icons/tag.svg +++ b/icons/tag.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/target.svg b/icons/target.svg index 11d2a7e..597e49a 100644 --- a/icons/target.svg +++ b/icons/target.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature-celsius.svg b/icons/temperature-celsius.svg index d20093e..2e33e16 100644 --- a/icons/temperature-celsius.svg +++ b/icons/temperature-celsius.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature-fahrenheit.svg b/icons/temperature-fahrenheit.svg index 1842f8f..4d047ef 100644 --- a/icons/temperature-fahrenheit.svg +++ b/icons/temperature-fahrenheit.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/temperature.svg b/icons/temperature.svg index 35ad86a..a9a7bc9 100644 --- a/icons/temperature.svg +++ b/icons/temperature.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/template.svg b/icons/template.svg index d2261cd..85002e8 100644 --- a/icons/template.svg +++ b/icons/template.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/test-pipe.svg b/icons/test-pipe.svg index d0d763f..fdc2834 100644 --- a/icons/test-pipe.svg +++ b/icons/test-pipe.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/thumb-down.svg b/icons/thumb-down.svg index 306f2be..761220c 100644 --- a/icons/thumb-down.svg +++ b/icons/thumb-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/thumb-up.svg b/icons/thumb-up.svg index c1f050a..8c66637 100644 --- a/icons/thumb-up.svg +++ b/icons/thumb-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/ticket.svg b/icons/ticket.svg index 08f7cab..3c1b4d9 100644 --- a/icons/ticket.svg +++ b/icons/ticket.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/toggle-left.svg b/icons/toggle-left.svg index 26f40b4..c3048d4 100644 --- a/icons/toggle-left.svg +++ b/icons/toggle-left.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/toggle-right.svg b/icons/toggle-right.svg index b54fd0b..d3edd63 100644 --- a/icons/toggle-right.svg +++ b/icons/toggle-right.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/tool.svg b/icons/tool.svg index df9dfa0..34ffa6d 100644 --- a/icons/tool.svg +++ b/icons/tool.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trash.svg b/icons/trash.svg index 658d619..16ed6a6 100644 --- a/icons/trash.svg +++ b/icons/trash.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trending-down.svg b/icons/trending-down.svg index f3d3345..ef252f8 100644 --- a/icons/trending-down.svg +++ b/icons/trending-down.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trending-up.svg b/icons/trending-up.svg index 931d32e..aa7c863 100644 --- a/icons/trending-up.svg +++ b/icons/trending-up.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/triangle.svg b/icons/triangle.svg index 9b9b7e3..2671334 100644 --- a/icons/triangle.svg +++ b/icons/triangle.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/trophy.svg b/icons/trophy.svg index 458747e..c7faaa6 100644 --- a/icons/trophy.svg +++ b/icons/trophy.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/unlink.svg b/icons/unlink.svg index 25cc6f0..63d8857 100644 --- a/icons/unlink.svg +++ b/icons/unlink.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/upload.svg b/icons/upload.svg index bfea0cb..603d275 100644 --- a/icons/upload.svg +++ b/icons/upload.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/urgent.svg b/icons/urgent.svg index 9c7acdd..c3c9649 100644 --- a/icons/urgent.svg +++ b/icons/urgent.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-check.svg b/icons/user-check.svg index 99eb85d..67752a0 100644 --- a/icons/user-check.svg +++ b/icons/user-check.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-minus.svg b/icons/user-minus.svg index 5787c4c..0461dd4 100644 --- a/icons/user-minus.svg +++ b/icons/user-minus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-plus.svg b/icons/user-plus.svg index d525d7e..07a9fe1 100644 --- a/icons/user-plus.svg +++ b/icons/user-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user-x.svg b/icons/user-x.svg index ddd3139..4252d79 100644 --- a/icons/user-x.svg +++ b/icons/user-x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/user.svg b/icons/user.svg index e8e2ce6..b5f7ca6 100644 --- a/icons/user.svg +++ b/icons/user.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/viewfinder.svg b/icons/viewfinder.svg index a3b8ca0..3fddece 100644 --- a/icons/viewfinder.svg +++ b/icons/viewfinder.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume-2.svg b/icons/volume-2.svg index c236c91..b6af3b4 100644 --- a/icons/volume-2.svg +++ b/icons/volume-2.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume-3.svg b/icons/volume-3.svg index 5e07f03..3292afa 100644 --- a/icons/volume-3.svg +++ b/icons/volume-3.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/volume.svg b/icons/volume.svg index d500f85..b239794 100644 --- a/icons/volume.svg +++ b/icons/volume.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/wifi.svg b/icons/wifi.svg index 69050b1..d847597 100644 --- a/icons/wifi.svg +++ b/icons/wifi.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/woman.svg b/icons/woman.svg index a2cc950..bb14e06 100644 --- a/icons/woman.svg +++ b/icons/woman.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/world.svg b/icons/world.svg index a7e0ed9..c342988 100644 --- a/icons/world.svg +++ b/icons/world.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/x.svg b/icons/x.svg index cc76801..ff7f017 100644 --- a/icons/x.svg +++ b/icons/x.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/zoom-in.svg b/icons/zoom-in.svg index 227cfd6..deae9fa 100644 --- a/icons/zoom-in.svg +++ b/icons/zoom-in.svg @@ -1,5 +1,5 @@ - + diff --git a/icons/zoom-out.svg b/icons/zoom-out.svg index 9c05ac9..a5e702c 100644 --- a/icons/zoom-out.svg +++ b/icons/zoom-out.svg @@ -1,5 +1,5 @@ - + diff --git a/src/_icons/alarm.svg b/src/_icons/alarm.svg new file mode 100644 index 0000000..4b7996b --- /dev/null +++ b/src/_icons/alarm.svg @@ -0,0 +1,9 @@ +--- +tags: [time, watch, clock] +--- + + + + + + diff --git a/src/_icons/arrow-back.svg b/src/_icons/arrow-back.svg new file mode 100644 index 0000000..dab9f27 --- /dev/null +++ b/src/_icons/arrow-back.svg @@ -0,0 +1,6 @@ +--- +tags: [] +--- + + + diff --git a/src/_icons/arrow-forward.svg b/src/_icons/arrow-forward.svg new file mode 100644 index 0000000..34c5e1d --- /dev/null +++ b/src/_icons/arrow-forward.svg @@ -0,0 +1,6 @@ +--- +tags: [] +--- + + + diff --git a/src/_icons/artboard.svg b/src/_icons/artboard.svg new file mode 100644 index 0000000..ebf7104 --- /dev/null +++ b/src/_icons/artboard.svg @@ -0,0 +1,13 @@ +--- +--- + + + + + + + + + + + diff --git a/src/_icons/award.svg b/src/_icons/award.svg new file mode 100644 index 0000000..3f488f3 --- /dev/null +++ b/src/_icons/award.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/bug.svg b/src/_icons/bug.svg new file mode 100644 index 0000000..9bf0b4f --- /dev/null +++ b/src/_icons/bug.svg @@ -0,0 +1,13 @@ +--- +--- + + + + + + + + + + + diff --git a/src/_icons/calendar-event.svg b/src/_icons/calendar-event.svg new file mode 100644 index 0000000..4aa8cee --- /dev/null +++ b/src/_icons/calendar-event.svg @@ -0,0 +1,10 @@ +--- +tags: [date, day, plan, schedule, agenda] +--- + + + + + + + diff --git a/src/_icons/directions.svg b/src/_icons/directions.svg index 4021d8b..9cb450d 100644 --- a/src/_icons/directions.svg +++ b/src/_icons/directions.svg @@ -2,8 +2,8 @@ tags: [travel, navigation, discover] --- - - + + diff --git a/src/_icons/disabled.svg b/src/_icons/disabled.svg index fd9c72a..157aa3e 100644 --- a/src/_icons/disabled.svg +++ b/src/_icons/disabled.svg @@ -5,5 +5,5 @@ tags: [wheelchair] - + diff --git a/src/_icons/disc.svg b/src/_icons/disc.svg index a87332b..f09c7b0 100644 --- a/src/_icons/disc.svg +++ b/src/_icons/disc.svg @@ -2,6 +2,8 @@ tags: [cd, music, album] --- - + + + diff --git a/src/_icons/edit.svg b/src/_icons/edit.svg index 1bc8b10..caf3023 100644 --- a/src/_icons/edit.svg +++ b/src/_icons/edit.svg @@ -4,4 +4,5 @@ tags: [pencil, change] + diff --git a/src/_icons/globe.svg b/src/_icons/globe.svg new file mode 100644 index 0000000..49ab576 --- /dev/null +++ b/src/_icons/globe.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/help.svg b/src/_icons/help.svg new file mode 100644 index 0000000..2a1cb0a --- /dev/null +++ b/src/_icons/help.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/mug.svg b/src/_icons/mug.svg new file mode 100644 index 0000000..1525619 --- /dev/null +++ b/src/_icons/mug.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg new file mode 100644 index 0000000..14f09d0 --- /dev/null +++ b/src/_icons/palette.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/pencil.svg b/src/_icons/pencil.svg new file mode 100644 index 0000000..9ace377 --- /dev/null +++ b/src/_icons/pencil.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/_icons/record-mail.svg b/src/_icons/record-mail.svg new file mode 100644 index 0000000..8ee5886 --- /dev/null +++ b/src/_icons/record-mail.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/ruler.svg b/src/_icons/ruler.svg new file mode 100644 index 0000000..847a84f --- /dev/null +++ b/src/_icons/ruler.svg @@ -0,0 +1,11 @@ +--- +--- + + + + + + + + + diff --git a/src/_icons/scissors.svg b/src/_icons/scissors.svg new file mode 100644 index 0000000..583197c --- /dev/null +++ b/src/_icons/scissors.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/stack.svg b/src/_icons/stack.svg new file mode 100644 index 0000000..554507e --- /dev/null +++ b/src/_icons/stack.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/switch-vertical.svg b/src/_icons/switch-vertical.svg index 165cd54..1c4b7a4 100644 --- a/src/_icons/switch-vertical.svg +++ b/src/_icons/switch-vertical.svg @@ -2,10 +2,8 @@ tags: [toggle, up, down, arrows] --- - - diff --git a/src/_includes/icon.html b/src/_includes/icon.html index 25ec600..39b96aa 100644 --- a/src/_includes/icon.html +++ b/src/_includes/icon.html @@ -1,2 +1,2 @@ {% assign stroke = include.stroke | default: 2 %}{% assign width = 24 %}{% assign name = include.name %}{% assign icon = site.icons | where: "slug", name | first %}{% capture replace-to %} - {% endcapture %}{% assign content = icon.content | replace: '', replace-to %}{{ content }} + {% endcapture %}{% assign content = icon.content | replace: '', replace-to %}{{ content }} -- cgit v1.2.1 From 92e5bd3b957b3accfe4d3656f6fed1e65412192b Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 21 Mar 2020 22:14:34 +0100 Subject: diff changelog --- gulpfile.js | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 66 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5210a8d..4e01a03 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -201,7 +201,7 @@ gulp.task('optimize', function (cb) { }); }); -gulp.task('prepare-changelog', function(cb) { +gulp.task('changelog-commit', function(cb) { cp.exec('git status', function(err, ret) { let newIcons = [], modifiedIcons = [], renamedIcons = []; @@ -234,6 +234,7 @@ gulp.task('prepare-changelog', function(cb) { }); console.log(str); + console.log(''); } if(modifiedIcons.length > 0) { @@ -249,27 +250,85 @@ gulp.task('prepare-changelog', function(cb) { }); console.log(str); + console.log(''); } if(renamedIcons.length > 0) { - let str = ''; - str += `**Renamed icons: `; + console.log(`**Renamed icons: `); renamedIcons.forEach(function(icon, i){ - str += `\`${icon[0]}\` renamed to \`${icon[1]}\``; + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }); + } + + cb(); + }); +}); + +gulp.task('changelog-diff', function(cb) { + const version = p.version; + cp.exec(`git diff v${version} HEAD --name-status`, function(err, ret) { + + let newIcons = [], modifiedIcons = [], renamedIcons = []; + + ret.replace(/A\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + newIcons.push(fileName); + }); + + ret.replace(/M\s+src\/_icons\/([a-z1-9-]+)\.svg/g, function (m, fileName) { + modifiedIcons.push(fileName); + }); + + ret.replace(/R[0-9]+\s+src\/_icons\/([a-z1-9-]+)\.svg\s+src\/_icons\/([a-z1-9-]+).svg/g, function (m, fileNameBefore, fileNameAfter) { + renamedIcons.push([fileNameBefore, fileNameAfter]); + }); + + modifiedIcons = modifiedIcons.filter( function( el ) { + return newIcons.indexOf( el ) < 0; + }); + + if(newIcons.length > 0) { + let str = ''; + str += `${newIcons.length} new icons: `; - if((i + 1) <= renamedIcons.length - 1) { + newIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + + if((i + 1) <= newIcons.length - 1) { str += ', ' } }); console.log(str); + console.log(''); } - cb(); - }); + if(modifiedIcons.length > 0) { + let str = ''; + str += `Fixed icons: `; + modifiedIcons.forEach(function(icon, i){ + str += `\`${icon}\``; + if((i + 1) <= modifiedIcons.length - 1) { + str += ', ' + } + }); + + console.log(str); + console.log(''); + } + + if(renamedIcons.length > 0) { + console.log(`**Renamed icons: `); + + renamedIcons.forEach(function(icon, i){ + console.log(`- \`${icon[0]}\` renamed to \`${icon[1]}\``); + }); + } + + cb(); + }); }); gulp.task('build-zip', function() { -- cgit v1.2.1