From 5af811ace126297e6606a23b3889a8055ee95244 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Sat, 19 Aug 2023 20:19:55 -0700 Subject: [PATCH 1/6] Update optimize svg script --- .github/workflows/ci.yml | 14 +++++++++++++ bin/build.sh | 3 --- bin/{process-svg.js => optimize-svg.js} | 24 ++++++++--------------- bin/{process-svgs.js => optimize-svgs.js} | 6 +++--- package.json | 1 + 5 files changed, 26 insertions(+), 22 deletions(-) rename bin/{process-svg.js => optimize-svg.js} (62%) rename bin/{process-svgs.js => optimize-svgs.js} (72%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40f28452..cd70109c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,3 +27,17 @@ jobs: - name: Lint run: npm run lint + + - name: Optimize SVGs + run: | + npm run optimize + if git diff --quiet; then + echo "All SVGs are optimized ✔︎" + else + echo "The following SVGs are not optimized:" + echo + git diff --name-only + echo + echo "Please run `npm run optimize` and commit the changes" + exit 1 + fi diff --git a/bin/build.sh b/bin/build.sh index 4a4ad71a..d38f9a26 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -1,8 +1,5 @@ #!/bin/bash -# Process SVG files -# npx babel-node bin/process-svgs.js - # Create dist directory npx rimraf dist mkdir dist diff --git a/bin/process-svg.js b/bin/optimize-svg.js similarity index 62% rename from bin/process-svg.js rename to bin/optimize-svg.js index b33050f5..6ae11917 100644 --- a/bin/process-svg.js +++ b/bin/optimize-svg.js @@ -1,32 +1,24 @@ import Svgo from 'svgo'; import cheerio from 'cheerio'; -import { format } from 'prettier'; import DEFAULT_ATTRS from '../src/default-attrs.json'; /** - * Process SVG string. + * Optimize SVG string. * @param {string} svg - An SVG string. * @returns {Promise} */ -function processSvg(svg) { - return ( - optimize(svg) - .then(setAttrs) - .then(format) - // remove semicolon inserted by prettier - // because prettier thinks it's formatting JSX not HTML - .then(svg => svg.replace(/;/g, '')) - ); +function optimizeSvg(svg) { + return svgo(svg).then(setAttrs); } /** - * Optimize SVG with `svgo`. + * Run SVGO on SVG string. * @param {string} svg - An SVG string. * @returns {Promise} */ -function optimize(svg) { - const svgo = new Svgo({ +function svgo(svg) { + const s = new Svgo({ plugins: [ { convertShapeToPath: false }, { mergePaths: false }, @@ -36,7 +28,7 @@ function optimize(svg) { }); return new Promise(resolve => { - svgo.optimize(svg, ({ data }) => resolve(data)); + s.optimize(svg, ({ data }) => resolve(data)); }); } @@ -55,4 +47,4 @@ function setAttrs(svg) { return $('body').html(); } -export default processSvg; +export default optimizeSvg; diff --git a/bin/process-svgs.js b/bin/optimize-svgs.js similarity index 72% rename from bin/process-svgs.js rename to bin/optimize-svgs.js index 455ceff3..919e83c0 100644 --- a/bin/process-svgs.js +++ b/bin/optimize-svgs.js @@ -1,17 +1,17 @@ import fs from 'fs'; import path from 'path'; -import processSvg from './process-svg'; +import optimizeSvg from './optimize-svg'; const IN_DIR = path.resolve(__dirname, '../icons'); -console.log(`Processing SVGs in ${IN_DIR}...`); +console.log(`Optimizing SVGs in ${IN_DIR}...`); fs.readdirSync(IN_DIR) .filter(file => path.extname(file) === '.svg') .forEach(svgFile => { const svg = fs.readFileSync(path.join(IN_DIR, svgFile)); - processSvg(svg).then(svg => + optimizeSvg(svg).then(svg => fs.writeFileSync(path.join(IN_DIR, svgFile), svg), ); }); diff --git a/package.json b/package.json index 0bacadad..d8fa6804 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "test:coverage": "jest --coverage", "lint": "eslint .", "format": "prettier --write .", + "optimize-svgs": "babel-node bin/optimize-svgs.js", "release": "yarn build && changeset publish" }, "jest": { From 3b2d2cbd0a4593dfe487f859e1bbb4704eca94d7 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Sat, 19 Aug 2023 20:22:42 -0700 Subject: [PATCH 2/6] Update tests --- .github/workflows/ci.yml | 4 +-- .../__snapshots__/optimize-svg.test.js.snap | 10 +++++++ .../__snapshots__/process-svg.test.js.snap | 26 ------------------- ...ocess-svg.test.js => optimize-svg.test.js} | 8 +++--- 4 files changed, 16 insertions(+), 32 deletions(-) create mode 100644 bin/__tests__/__snapshots__/optimize-svg.test.js.snap delete mode 100644 bin/__tests__/__snapshots__/process-svg.test.js.snap rename bin/__tests__/{process-svg.test.js => optimize-svg.test.js} (71%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd70109c..a0561e62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - name: Optimize SVGs run: | - npm run optimize + npm run optimize-svgs if git diff --quiet; then echo "All SVGs are optimized ✔︎" else @@ -38,6 +38,6 @@ jobs: echo git diff --name-only echo - echo "Please run `npm run optimize` and commit the changes" + echo "Please run `npm run optimize-svgs` and commit the changes" exit 1 fi diff --git a/bin/__tests__/__snapshots__/optimize-svg.test.js.snap b/bin/__tests__/__snapshots__/optimize-svg.test.js.snap new file mode 100644 index 00000000..e58a4fa8 --- /dev/null +++ b/bin/__tests__/__snapshots__/optimize-svg.test.js.snap @@ -0,0 +1,10 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`optimizes SVG correctly 1`] = `""`; + +exports[`rejects when passed unparsable SVG string 1`] = ` +[Error: Error in parsing SVG: Unclosed root tag +Line: 0 +Column: 10 +Char: ] +`; diff --git a/bin/__tests__/__snapshots__/process-svg.test.js.snap b/bin/__tests__/__snapshots__/process-svg.test.js.snap deleted file mode 100644 index 75c8ebe5..00000000 --- a/bin/__tests__/__snapshots__/process-svg.test.js.snap +++ /dev/null @@ -1,26 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`processes SVG correctly 1`] = ` -" - - - -" -`; - -exports[`rejects when passed unparsable SVG string 1`] = ` -[Error: Error in parsing SVG: Unclosed root tag -Line: 0 -Column: 10 -Char: ] -`; diff --git a/bin/__tests__/process-svg.test.js b/bin/__tests__/optimize-svg.test.js similarity index 71% rename from bin/__tests__/process-svg.test.js rename to bin/__tests__/optimize-svg.test.js index 79c63ff9..ff1b9329 100644 --- a/bin/__tests__/process-svg.test.js +++ b/bin/__tests__/optimize-svg.test.js @@ -1,15 +1,15 @@ /* eslint-env jest */ -import processSvg from '../process-svg'; +import optimizeSvg from '../optimize-svg'; -test('processes SVG correctly', () => { +test('optimizes SVG correctly', () => { const SVG = 'Title'; - expect(processSvg(SVG)).resolves.toMatchSnapshot(); + expect(optimizeSvg(SVG)).resolves.toMatchSnapshot(); }); test('rejects when passed unparsable SVG string', () => { const UNPARSABLE_SVG = ' Date: Sat, 19 Aug 2023 20:24:21 -0700 Subject: [PATCH 3/6] Update error message --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0561e62..df78f855 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,6 @@ jobs: echo git diff --name-only echo - echo "Please run `npm run optimize-svgs` and commit the changes" + echo "Please run 'npm run optimize-svgs' and commit the changes" exit 1 fi From 0658531552aa7d60e4d138cfc27bcb4d21b161c9 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Sat, 19 Aug 2023 20:26:52 -0700 Subject: [PATCH 4/6] Remove extra newline --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df78f855..0a9e5a44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,6 @@ jobs: echo "All SVGs are optimized ✔︎" else echo "The following SVGs are not optimized:" - echo git diff --name-only echo echo "Please run 'npm run optimize-svgs' and commit the changes" From 582801917d00d03b7d2236bb12bb89b116780932 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Sat, 19 Aug 2023 20:28:45 -0700 Subject: [PATCH 5/6] Update test scripts --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d8fa6804..9bf1c556 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "scripts": { "setup": "./bin/setup.sh", "build": "./bin/build.sh", - "test": "jest --watch", + "test": "jest", + "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint .", "format": "prettier --write .", From 8440a9fbeb6e32d3acf2dc1d22f9432f0fec09ba Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Sat, 19 Aug 2023 20:28:58 -0700 Subject: [PATCH 6/6] Optimize svgs --- icons/activity.svg | 14 +------------- icons/airplay.svg | 15 +-------------- icons/alert-circle.svg | 16 +--------------- icons/alert-octagon.svg | 16 +--------------- icons/alert-triangle.svg | 16 +--------------- icons/align-center.svg | 17 +---------------- icons/align-justify.svg | 17 +---------------- icons/align-left.svg | 17 +---------------- icons/align-right.svg | 17 +---------------- icons/anchor.svg | 16 +--------------- icons/aperture.svg | 20 +------------------- icons/archive.svg | 16 +--------------- icons/arrow-down-circle.svg | 16 +--------------- icons/arrow-down-left.svg | 15 +-------------- icons/arrow-down-right.svg | 15 +-------------- icons/arrow-down.svg | 15 +-------------- icons/arrow-left-circle.svg | 16 +--------------- icons/arrow-left.svg | 15 +-------------- icons/arrow-right-circle.svg | 16 +--------------- icons/arrow-right.svg | 15 +-------------- icons/arrow-up-circle.svg | 16 +--------------- icons/arrow-up-left.svg | 15 +-------------- icons/arrow-up-right.svg | 15 +-------------- icons/arrow-up.svg | 15 +-------------- icons/at-sign.svg | 15 +-------------- icons/award.svg | 15 +-------------- icons/bar-chart-2.svg | 16 +--------------- icons/bar-chart.svg | 16 +--------------- icons/battery-charging.svg | 16 +--------------- icons/battery.svg | 15 +-------------- icons/bell-off.svg | 18 +----------------- icons/bell.svg | 15 +-------------- icons/bluetooth.svg | 14 +------------- icons/bold.svg | 15 +-------------- icons/book-open.svg | 15 +-------------- icons/book.svg | 15 +-------------- icons/bookmark.svg | 14 +------------- icons/box.svg | 16 +--------------- icons/briefcase.svg | 15 +-------------- icons/calendar.svg | 17 +---------------- icons/camera-off.svg | 15 +-------------- icons/camera.svg | 15 +-------------- icons/cast.svg | 15 +-------------- icons/check-circle.svg | 15 +-------------- icons/check-square.svg | 15 +-------------- icons/check.svg | 14 +------------- icons/chevron-down.svg | 14 +------------- icons/chevron-left.svg | 14 +------------- icons/chevron-right.svg | 14 +------------- icons/chevron-up.svg | 14 +------------- icons/chevrons-down.svg | 15 +-------------- icons/chevrons-left.svg | 15 +-------------- icons/chevrons-right.svg | 15 +-------------- icons/chevrons-up.svg | 15 +-------------- icons/chrome.svg | 18 +----------------- icons/circle.svg | 14 +------------- icons/clipboard.svg | 15 +-------------- icons/clock.svg | 15 +-------------- icons/cloud-drizzle.svg | 20 +------------------- icons/cloud-lightning.svg | 15 +-------------- icons/cloud-off.svg | 15 +-------------- icons/cloud-rain.svg | 17 +---------------- icons/cloud-snow.svg | 20 +------------------- icons/cloud.svg | 14 +------------- icons/code.svg | 15 +-------------- icons/codepen.svg | 18 +----------------- icons/codesandbox.svg | 19 +------------------ icons/coffee.svg | 18 +----------------- icons/columns.svg | 14 +------------- icons/command.svg | 14 +------------- icons/compass.svg | 15 +-------------- icons/copy.svg | 15 +-------------- icons/corner-down-left.svg | 15 +-------------- icons/corner-down-right.svg | 15 +-------------- icons/corner-left-down.svg | 15 +-------------- icons/corner-left-up.svg | 15 +-------------- icons/corner-right-down.svg | 15 +-------------- icons/corner-right-up.svg | 15 +-------------- icons/corner-up-left.svg | 15 +-------------- icons/corner-up-right.svg | 15 +-------------- icons/cpu.svg | 23 +---------------------- icons/credit-card.svg | 15 +-------------- icons/crop.svg | 15 +-------------- icons/crosshair.svg | 18 +----------------- icons/database.svg | 16 +--------------- icons/delete.svg | 16 +--------------- icons/disc.svg | 15 +-------------- icons/divide-circle.svg | 17 +---------------- icons/divide-square.svg | 17 +---------------- icons/divide.svg | 16 +--------------- icons/dollar-sign.svg | 15 +-------------- icons/download-cloud.svg | 16 +--------------- icons/download.svg | 16 +--------------- icons/dribbble.svg | 15 +-------------- icons/droplet.svg | 14 +------------- icons/edit-2.svg | 14 +------------- icons/edit-3.svg | 15 +-------------- icons/edit.svg | 15 +-------------- icons/external-link.svg | 16 +--------------- icons/eye-off.svg | 15 +-------------- icons/eye.svg | 15 +-------------- icons/facebook.svg | 14 +------------- icons/fast-forward.svg | 15 +-------------- icons/feather.svg | 16 +--------------- icons/figma.svg | 18 +----------------- icons/file-minus.svg | 16 +--------------- icons/file-plus.svg | 17 +---------------- icons/file-text.svg | 18 +----------------- icons/file.svg | 15 +-------------- icons/film.svg | 21 +-------------------- icons/filter.svg | 14 +------------- icons/flag.svg | 15 +-------------- icons/folder-minus.svg | 15 +-------------- icons/folder-plus.svg | 16 +--------------- icons/folder.svg | 14 +------------- icons/framer.svg | 14 +------------- icons/frown.svg | 17 +---------------- icons/gift.svg | 18 +----------------- icons/git-branch.svg | 17 +---------------- icons/git-commit.svg | 16 +--------------- icons/git-merge.svg | 16 +--------------- icons/git-pull-request.svg | 17 +---------------- icons/github.svg | 14 +------------- icons/gitlab.svg | 14 +------------- icons/globe.svg | 16 +--------------- icons/grid.svg | 17 +---------------- icons/hard-drive.svg | 17 +---------------- icons/hash.svg | 17 +---------------- icons/headphones.svg | 15 +-------------- icons/heart.svg | 14 +------------- icons/help-circle.svg | 16 +--------------- icons/hexagon.svg | 14 +------------- icons/home.svg | 15 +-------------- icons/image.svg | 16 +--------------- icons/inbox.svg | 15 +-------------- icons/info.svg | 16 +--------------- icons/instagram.svg | 16 +--------------- icons/italic.svg | 16 +--------------- icons/key.svg | 14 +------------- icons/layers.svg | 16 +--------------- icons/layout.svg | 16 +--------------- icons/life-buoy.svg | 20 +------------------- icons/link-2.svg | 15 +-------------- icons/link.svg | 15 +-------------- icons/linkedin.svg | 16 +--------------- icons/list.svg | 19 +------------------ icons/loader.svg | 21 +-------------------- icons/lock.svg | 15 +-------------- icons/log-in.svg | 16 +--------------- icons/log-out.svg | 16 +--------------- icons/mail.svg | 15 +-------------- icons/map-pin.svg | 15 +-------------- icons/map.svg | 16 +--------------- icons/maximize-2.svg | 17 +---------------- icons/maximize.svg | 14 +------------- icons/meh.svg | 17 +---------------- icons/menu.svg | 16 +--------------- icons/message-circle.svg | 14 +------------- icons/message-square.svg | 14 +------------- icons/mic-off.svg | 18 +----------------- icons/mic.svg | 17 +---------------- icons/minimize-2.svg | 17 +---------------- icons/minimize.svg | 14 +------------- icons/minus-circle.svg | 15 +-------------- icons/minus-square.svg | 15 +-------------- icons/minus.svg | 14 +------------- icons/monitor.svg | 16 +--------------- icons/moon.svg | 14 +------------- icons/more-horizontal.svg | 16 +--------------- icons/more-vertical.svg | 16 +--------------- icons/mouse-pointer.svg | 15 +-------------- icons/move.svg | 19 +------------------ icons/music.svg | 16 +--------------- icons/navigation-2.svg | 14 +------------- icons/navigation.svg | 14 +------------- icons/octagon.svg | 14 +------------- icons/package.svg | 17 +---------------- icons/paperclip.svg | 14 +------------- icons/pause-circle.svg | 16 +--------------- icons/pause.svg | 15 +-------------- icons/pen-tool.svg | 17 +---------------- icons/percent.svg | 16 +--------------- icons/phone-call.svg | 14 +------------- icons/phone-forwarded.svg | 16 +--------------- icons/phone-incoming.svg | 16 +--------------- icons/phone-missed.svg | 16 +--------------- icons/phone-off.svg | 15 +-------------- icons/phone-outgoing.svg | 16 +--------------- icons/phone.svg | 14 +------------- icons/pie-chart.svg | 15 +-------------- icons/play-circle.svg | 15 +-------------- icons/play.svg | 14 +------------- icons/plus-circle.svg | 16 +--------------- icons/plus-square.svg | 16 +--------------- icons/plus.svg | 15 +-------------- icons/pocket.svg | 15 +-------------- icons/power.svg | 15 +-------------- icons/printer.svg | 16 +--------------- icons/radio.svg | 15 +-------------- icons/refresh-ccw.svg | 16 +--------------- icons/refresh-cw.svg | 16 +--------------- icons/repeat.svg | 17 +---------------- icons/rewind.svg | 15 +-------------- icons/rotate-ccw.svg | 15 +-------------- icons/rotate-cw.svg | 15 +-------------- icons/rss.svg | 16 +--------------- icons/save.svg | 16 +--------------- icons/scissors.svg | 18 +----------------- icons/search.svg | 15 +-------------- icons/send.svg | 15 +-------------- icons/server.svg | 17 +---------------- icons/settings.svg | 15 +-------------- icons/share-2.svg | 18 +----------------- icons/share.svg | 16 +--------------- icons/shield-off.svg | 16 +--------------- icons/shield.svg | 14 +------------- icons/shopping-bag.svg | 16 +--------------- icons/shopping-cart.svg | 16 +--------------- icons/shuffle.svg | 18 +----------------- icons/sidebar.svg | 15 +-------------- icons/skip-back.svg | 15 +-------------- icons/skip-forward.svg | 15 +-------------- icons/slack.svg | 21 +-------------------- icons/slash.svg | 15 +-------------- icons/sliders.svg | 22 +--------------------- icons/smartphone.svg | 15 +-------------- icons/smile.svg | 17 +---------------- icons/speaker.svg | 16 +--------------- icons/square.svg | 14 +------------- icons/star.svg | 14 +------------- icons/stop-circle.svg | 15 +-------------- icons/sun.svg | 22 +--------------------- icons/sunrise.svg | 21 +-------------------- icons/sunset.svg | 21 +-------------------- icons/table.svg | 14 +------------- icons/tablet.svg | 15 +-------------- icons/tag.svg | 15 +-------------- icons/target.svg | 16 +--------------- icons/terminal.svg | 15 +-------------- icons/thermometer.svg | 14 +------------- icons/thumbs-down.svg | 14 +------------- icons/thumbs-up.svg | 14 +------------- icons/toggle-left.svg | 15 +-------------- icons/toggle-right.svg | 15 +-------------- icons/tool.svg | 14 +------------- icons/trash-2.svg | 17 +---------------- icons/trash.svg | 15 +-------------- icons/trello.svg | 16 +--------------- icons/trending-down.svg | 15 +-------------- icons/trending-up.svg | 15 +-------------- icons/triangle.svg | 14 +------------- icons/truck.svg | 17 +---------------- icons/tv.svg | 15 +-------------- icons/twitch.svg | 14 +------------- icons/twitter.svg | 14 +------------- icons/type.svg | 16 +--------------- icons/umbrella.svg | 14 +------------- icons/underline.svg | 15 +-------------- icons/unlock.svg | 15 +-------------- icons/upload-cloud.svg | 17 +---------------- icons/upload.svg | 16 +--------------- icons/user-check.svg | 16 +--------------- icons/user-minus.svg | 16 +--------------- icons/user-plus.svg | 17 +---------------- icons/user-x.svg | 17 +---------------- icons/user.svg | 15 +-------------- icons/users.svg | 17 +---------------- icons/video-off.svg | 15 +-------------- icons/video.svg | 15 +-------------- icons/voicemail.svg | 16 +--------------- icons/volume-1.svg | 15 +-------------- icons/volume-2.svg | 15 +-------------- icons/volume-x.svg | 16 +--------------- icons/volume.svg | 14 +------------- icons/watch.svg | 16 +--------------- icons/wifi-off.svg | 20 +------------------- icons/wifi.svg | 17 +---------------- icons/wind.svg | 14 +------------- icons/x-circle.svg | 16 +--------------- icons/x-octagon.svg | 16 +--------------- icons/x-square.svg | 16 +--------------- icons/x.svg | 15 +-------------- icons/youtube.svg | 15 +-------------- icons/zap-off.svg | 17 +---------------- icons/zap.svg | 14 +------------- icons/zoom-in.svg | 17 +---------------- icons/zoom-out.svg | 16 +--------------- 287 files changed, 287 insertions(+), 4230 deletions(-) diff --git a/icons/activity.svg b/icons/activity.svg index 2eccd9cb..f4bce750 100644 --- a/icons/activity.svg +++ b/icons/activity.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/airplay.svg b/icons/airplay.svg index efa8ec32..ce0b6bac 100644 --- a/icons/airplay.svg +++ b/icons/airplay.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/alert-circle.svg b/icons/alert-circle.svg index 57fbe36e..9d8e884e 100644 --- a/icons/alert-circle.svg +++ b/icons/alert-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/alert-octagon.svg b/icons/alert-octagon.svg index 6cb9665d..f485afcf 100644 --- a/icons/alert-octagon.svg +++ b/icons/alert-octagon.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/alert-triangle.svg b/icons/alert-triangle.svg index 79287d8d..077dd0ea 100644 --- a/icons/alert-triangle.svg +++ b/icons/alert-triangle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/align-center.svg b/icons/align-center.svg index c899360d..81c2f7d5 100644 --- a/icons/align-center.svg +++ b/icons/align-center.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/align-justify.svg b/icons/align-justify.svg index 392e1970..1d0c1eef 100644 --- a/icons/align-justify.svg +++ b/icons/align-justify.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/align-left.svg b/icons/align-left.svg index 1e925ffe..f3ed9cee 100644 --- a/icons/align-left.svg +++ b/icons/align-left.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/align-right.svg b/icons/align-right.svg index e5b72b45..45e0dafc 100644 --- a/icons/align-right.svg +++ b/icons/align-right.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/anchor.svg b/icons/anchor.svg index 696a416d..c508e7e6 100644 --- a/icons/anchor.svg +++ b/icons/anchor.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/aperture.svg b/icons/aperture.svg index 15652dad..881cfad7 100644 --- a/icons/aperture.svg +++ b/icons/aperture.svg @@ -1,19 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/icons/archive.svg b/icons/archive.svg index 978eb76b..d0d240d5 100644 --- a/icons/archive.svg +++ b/icons/archive.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/arrow-down-circle.svg b/icons/arrow-down-circle.svg index eb9f1a0e..149af078 100644 --- a/icons/arrow-down-circle.svg +++ b/icons/arrow-down-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/arrow-down-left.svg b/icons/arrow-down-left.svg index b9c6b8b7..68da9967 100644 --- a/icons/arrow-down-left.svg +++ b/icons/arrow-down-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-down-right.svg b/icons/arrow-down-right.svg index 2294d9b0..67fb3e43 100644 --- a/icons/arrow-down-right.svg +++ b/icons/arrow-down-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-down.svg b/icons/arrow-down.svg index 708e35fc..cf408c71 100644 --- a/icons/arrow-down.svg +++ b/icons/arrow-down.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-left-circle.svg b/icons/arrow-left-circle.svg index c1ba4a26..e220bb4a 100644 --- a/icons/arrow-left-circle.svg +++ b/icons/arrow-left-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/arrow-left.svg b/icons/arrow-left.svg index ce06f882..bbbd3b98 100644 --- a/icons/arrow-left.svg +++ b/icons/arrow-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-right-circle.svg b/icons/arrow-right-circle.svg index 55bec779..2c1d41d6 100644 --- a/icons/arrow-right-circle.svg +++ b/icons/arrow-right-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/arrow-right.svg b/icons/arrow-right.svg index 5c5494fe..17f8a78c 100644 --- a/icons/arrow-right.svg +++ b/icons/arrow-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-up-circle.svg b/icons/arrow-up-circle.svg index fd794fb7..d34015e4 100644 --- a/icons/arrow-up-circle.svg +++ b/icons/arrow-up-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/arrow-up-left.svg b/icons/arrow-up-left.svg index 170f9cce..9170233b 100644 --- a/icons/arrow-up-left.svg +++ b/icons/arrow-up-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-up-right.svg b/icons/arrow-up-right.svg index e2568f7e..dcdc3283 100644 --- a/icons/arrow-up-right.svg +++ b/icons/arrow-up-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/arrow-up.svg b/icons/arrow-up.svg index f1ff621b..bc78e8fd 100644 --- a/icons/arrow-up.svg +++ b/icons/arrow-up.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/at-sign.svg b/icons/at-sign.svg index 0b7fdfb3..a905267b 100644 --- a/icons/at-sign.svg +++ b/icons/at-sign.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/award.svg b/icons/award.svg index e0ed89c9..20fb61cd 100644 --- a/icons/award.svg +++ b/icons/award.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/bar-chart-2.svg b/icons/bar-chart-2.svg index 5463d306..0ba7ab28 100644 --- a/icons/bar-chart-2.svg +++ b/icons/bar-chart-2.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/bar-chart.svg b/icons/bar-chart.svg index 103ce11a..9b65990b 100644 --- a/icons/bar-chart.svg +++ b/icons/bar-chart.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/battery-charging.svg b/icons/battery-charging.svg index a05ba59a..ad37c91c 100644 --- a/icons/battery-charging.svg +++ b/icons/battery-charging.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/battery.svg b/icons/battery.svg index 96920241..0ffbc14d 100644 --- a/icons/battery.svg +++ b/icons/battery.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/bell-off.svg b/icons/bell-off.svg index 6f50c129..e09e601c 100644 --- a/icons/bell-off.svg +++ b/icons/bell-off.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/bell.svg b/icons/bell.svg index 464fce56..1d2f1b72 100644 --- a/icons/bell.svg +++ b/icons/bell.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/bluetooth.svg b/icons/bluetooth.svg index aa2e20f7..7b3b4bed 100644 --- a/icons/bluetooth.svg +++ b/icons/bluetooth.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/bold.svg b/icons/bold.svg index 42bc5f12..ae88efeb 100644 --- a/icons/bold.svg +++ b/icons/bold.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/book-open.svg b/icons/book-open.svg index c0a279d3..4fe7fef9 100644 --- a/icons/book-open.svg +++ b/icons/book-open.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/book.svg b/icons/book.svg index 3becfa4d..06a46db1 100644 --- a/icons/book.svg +++ b/icons/book.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/bookmark.svg b/icons/bookmark.svg index 2285956a..794571f5 100644 --- a/icons/bookmark.svg +++ b/icons/bookmark.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/box.svg b/icons/box.svg index eca84fc5..3405bea4 100644 --- a/icons/box.svg +++ b/icons/box.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/briefcase.svg b/icons/briefcase.svg index 4178c4e6..a1a37cce 100644 --- a/icons/briefcase.svg +++ b/icons/briefcase.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/calendar.svg b/icons/calendar.svg index c002b854..f76e8334 100644 --- a/icons/calendar.svg +++ b/icons/calendar.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/camera-off.svg b/icons/camera-off.svg index 9a3ac4d1..ee64c6fd 100644 --- a/icons/camera-off.svg +++ b/icons/camera-off.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/camera.svg b/icons/camera.svg index e64394dd..a811345b 100644 --- a/icons/camera.svg +++ b/icons/camera.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/cast.svg b/icons/cast.svg index 4ff70269..e93eaee2 100644 --- a/icons/cast.svg +++ b/icons/cast.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/check-circle.svg b/icons/check-circle.svg index 418f3002..f66d6fae 100644 --- a/icons/check-circle.svg +++ b/icons/check-circle.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/check-square.svg b/icons/check-square.svg index 7f8fe6b6..e7fdad3a 100644 --- a/icons/check-square.svg +++ b/icons/check-square.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/check.svg b/icons/check.svg index 80aaf846..d5a1c925 100644 --- a/icons/check.svg +++ b/icons/check.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/chevron-down.svg b/icons/chevron-down.svg index bda8e89f..ae614b7c 100644 --- a/icons/chevron-down.svg +++ b/icons/chevron-down.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/chevron-left.svg b/icons/chevron-left.svg index 5af88406..590ba33f 100644 --- a/icons/chevron-left.svg +++ b/icons/chevron-left.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/chevron-right.svg b/icons/chevron-right.svg index fde2d649..aac0b825 100644 --- a/icons/chevron-right.svg +++ b/icons/chevron-right.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/chevron-up.svg b/icons/chevron-up.svg index 085188cf..37e10d0f 100644 --- a/icons/chevron-up.svg +++ b/icons/chevron-up.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/chevrons-down.svg b/icons/chevrons-down.svg index fac1aef3..0b699f0e 100644 --- a/icons/chevrons-down.svg +++ b/icons/chevrons-down.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/chevrons-left.svg b/icons/chevrons-left.svg index 712f4bca..4b86cae3 100644 --- a/icons/chevrons-left.svg +++ b/icons/chevrons-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/chevrons-right.svg b/icons/chevrons-right.svg index 17942434..b6b0fdcf 100644 --- a/icons/chevrons-right.svg +++ b/icons/chevrons-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/chevrons-up.svg b/icons/chevrons-up.svg index 7e38fb5c..675164fc 100644 --- a/icons/chevrons-up.svg +++ b/icons/chevrons-up.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/chrome.svg b/icons/chrome.svg index 7b4bc1a4..3d9e1118 100644 --- a/icons/chrome.svg +++ b/icons/chrome.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/circle.svg b/icons/circle.svg index 1717bb4b..f3f98f7f 100644 --- a/icons/circle.svg +++ b/icons/circle.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/clipboard.svg b/icons/clipboard.svg index 6e733e7e..5ca4698f 100644 --- a/icons/clipboard.svg +++ b/icons/clipboard.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/clock.svg b/icons/clock.svg index 8ce25b2a..e412c454 100644 --- a/icons/clock.svg +++ b/icons/clock.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/cloud-drizzle.svg b/icons/cloud-drizzle.svg index 29229695..54a3daa7 100644 --- a/icons/cloud-drizzle.svg +++ b/icons/cloud-drizzle.svg @@ -1,19 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/icons/cloud-lightning.svg b/icons/cloud-lightning.svg index ee2e1de9..b36d6623 100644 --- a/icons/cloud-lightning.svg +++ b/icons/cloud-lightning.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/cloud-off.svg b/icons/cloud-off.svg index b28a3d9e..cf153382 100644 --- a/icons/cloud-off.svg +++ b/icons/cloud-off.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/cloud-rain.svg b/icons/cloud-rain.svg index f43c1e13..e0732d76 100644 --- a/icons/cloud-rain.svg +++ b/icons/cloud-rain.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/cloud-snow.svg b/icons/cloud-snow.svg index 97237ec6..5566a142 100644 --- a/icons/cloud-snow.svg +++ b/icons/cloud-snow.svg @@ -1,19 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/icons/cloud.svg b/icons/cloud.svg index de6faf1e..0bba192e 100644 --- a/icons/cloud.svg +++ b/icons/cloud.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/code.svg b/icons/code.svg index da0f5228..a793ffc7 100644 --- a/icons/code.svg +++ b/icons/code.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/codepen.svg b/icons/codepen.svg index 2f350f13..41c9e93c 100644 --- a/icons/codepen.svg +++ b/icons/codepen.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/codesandbox.svg b/icons/codesandbox.svg index db203afd..651578e3 100644 --- a/icons/codesandbox.svg +++ b/icons/codesandbox.svg @@ -1,18 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/icons/coffee.svg b/icons/coffee.svg index afd28a3f..7c992451 100644 --- a/icons/coffee.svg +++ b/icons/coffee.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/columns.svg b/icons/columns.svg index 456c153b..ac7c82be 100644 --- a/icons/columns.svg +++ b/icons/columns.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/command.svg b/icons/command.svg index 0817c6cd..9079925d 100644 --- a/icons/command.svg +++ b/icons/command.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/compass.svg b/icons/compass.svg index 55504902..c1d606e0 100644 --- a/icons/compass.svg +++ b/icons/compass.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/copy.svg b/icons/copy.svg index c8d49564..e7114287 100644 --- a/icons/copy.svg +++ b/icons/copy.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-down-left.svg b/icons/corner-down-left.svg index 71696a49..d82f7079 100644 --- a/icons/corner-down-left.svg +++ b/icons/corner-down-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-down-right.svg b/icons/corner-down-right.svg index dd9f7a47..5d189a4a 100644 --- a/icons/corner-down-right.svg +++ b/icons/corner-down-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-left-down.svg b/icons/corner-left-down.svg index 5c44b7d4..47924f0b 100644 --- a/icons/corner-left-down.svg +++ b/icons/corner-left-down.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-left-up.svg b/icons/corner-left-up.svg index cd752924..3c7261ec 100644 --- a/icons/corner-left-up.svg +++ b/icons/corner-left-up.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-right-down.svg b/icons/corner-right-down.svg index aa4690af..7deaecfa 100644 --- a/icons/corner-right-down.svg +++ b/icons/corner-right-down.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-right-up.svg b/icons/corner-right-up.svg index fd80c2c1..d73a752d 100644 --- a/icons/corner-right-up.svg +++ b/icons/corner-right-up.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-up-left.svg b/icons/corner-up-left.svg index 76b5bfbc..2a3c9d20 100644 --- a/icons/corner-up-left.svg +++ b/icons/corner-up-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/corner-up-right.svg b/icons/corner-up-right.svg index 755cbfd0..678d1504 100644 --- a/icons/corner-up-right.svg +++ b/icons/corner-up-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/cpu.svg b/icons/cpu.svg index 4c45b9dd..b73f0a49 100644 --- a/icons/cpu.svg +++ b/icons/cpu.svg @@ -1,22 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/icons/credit-card.svg b/icons/credit-card.svg index ef1728be..3b12d794 100644 --- a/icons/credit-card.svg +++ b/icons/credit-card.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/crop.svg b/icons/crop.svg index 33b5cd92..4c886d6b 100644 --- a/icons/crop.svg +++ b/icons/crop.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/crosshair.svg b/icons/crosshair.svg index 2c448492..2c96010f 100644 --- a/icons/crosshair.svg +++ b/icons/crosshair.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/database.svg b/icons/database.svg index 0afca6ba..cf8e4887 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/delete.svg b/icons/delete.svg index 46c79d05..3c093977 100644 --- a/icons/delete.svg +++ b/icons/delete.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/disc.svg b/icons/disc.svg index df07c009..517ebc8a 100644 --- a/icons/disc.svg +++ b/icons/disc.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/divide-circle.svg b/icons/divide-circle.svg index fc1b2aea..70f89b36 100644 --- a/icons/divide-circle.svg +++ b/icons/divide-circle.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/divide-square.svg b/icons/divide-square.svg index bec8c4ab..86007601 100644 --- a/icons/divide-square.svg +++ b/icons/divide-square.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/divide.svg b/icons/divide.svg index fc6942c4..43fbd327 100644 --- a/icons/divide.svg +++ b/icons/divide.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/dollar-sign.svg b/icons/dollar-sign.svg index de496b72..f48c686d 100644 --- a/icons/dollar-sign.svg +++ b/icons/dollar-sign.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/download-cloud.svg b/icons/download-cloud.svg index 99050fb9..da52ef90 100644 --- a/icons/download-cloud.svg +++ b/icons/download-cloud.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/download.svg b/icons/download.svg index 6865ea37..35bc1385 100644 --- a/icons/download.svg +++ b/icons/download.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/dribbble.svg b/icons/dribbble.svg index eeb34fde..95b8dde3 100644 --- a/icons/dribbble.svg +++ b/icons/dribbble.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/droplet.svg b/icons/droplet.svg index 2be25153..468adf5a 100644 --- a/icons/droplet.svg +++ b/icons/droplet.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/edit-2.svg b/icons/edit-2.svg index 5e0b0a1b..94188d7a 100644 --- a/icons/edit-2.svg +++ b/icons/edit-2.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/edit-3.svg b/icons/edit-3.svg index f52e3f91..2040e7c0 100644 --- a/icons/edit-3.svg +++ b/icons/edit-3.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/edit.svg b/icons/edit.svg index 9294758f..797446ba 100644 --- a/icons/edit.svg +++ b/icons/edit.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/external-link.svg b/icons/external-link.svg index 537b731d..84bc6051 100644 --- a/icons/external-link.svg +++ b/icons/external-link.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/eye-off.svg b/icons/eye-off.svg index 98c45f62..89ac8701 100644 --- a/icons/eye-off.svg +++ b/icons/eye-off.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/eye.svg b/icons/eye.svg index edaab72f..5fb707bb 100644 --- a/icons/eye.svg +++ b/icons/eye.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/facebook.svg b/icons/facebook.svg index 8be7109b..9e301ab8 100644 --- a/icons/facebook.svg +++ b/icons/facebook.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/fast-forward.svg b/icons/fast-forward.svg index 6c8409cf..56f2203b 100644 --- a/icons/fast-forward.svg +++ b/icons/fast-forward.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/feather.svg b/icons/feather.svg index 40d7ef8c..57a641e3 100644 --- a/icons/feather.svg +++ b/icons/feather.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/figma.svg b/icons/figma.svg index 824cbb9a..665d0d21 100644 --- a/icons/figma.svg +++ b/icons/figma.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/file-minus.svg b/icons/file-minus.svg index eb1c2806..661254fa 100644 --- a/icons/file-minus.svg +++ b/icons/file-minus.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/file-plus.svg b/icons/file-plus.svg index 24283ca1..3f8e712e 100644 --- a/icons/file-plus.svg +++ b/icons/file-plus.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/file-text.svg b/icons/file-text.svg index 6cba58c0..8784d9f3 100644 --- a/icons/file-text.svg +++ b/icons/file-text.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/file.svg b/icons/file.svg index 2858cf1f..2e2ae1d0 100644 --- a/icons/file.svg +++ b/icons/file.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/film.svg b/icons/film.svg index a9f5b154..570ea9bb 100644 --- a/icons/film.svg +++ b/icons/film.svg @@ -1,20 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/icons/filter.svg b/icons/filter.svg index adc513ca..37f96774 100644 --- a/icons/filter.svg +++ b/icons/filter.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/flag.svg b/icons/flag.svg index 8100a2ff..cf6d3263 100644 --- a/icons/flag.svg +++ b/icons/flag.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/folder-minus.svg b/icons/folder-minus.svg index 0e7f4915..ddf30dac 100644 --- a/icons/folder-minus.svg +++ b/icons/folder-minus.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/folder-plus.svg b/icons/folder-plus.svg index af1ee2fd..50b3116c 100644 --- a/icons/folder-plus.svg +++ b/icons/folder-plus.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/folder.svg b/icons/folder.svg index bc875573..3caa5114 100644 --- a/icons/folder.svg +++ b/icons/folder.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/framer.svg b/icons/framer.svg index ba746530..0193150a 100644 --- a/icons/framer.svg +++ b/icons/framer.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/frown.svg b/icons/frown.svg index 68f3560c..6a056cd8 100644 --- a/icons/frown.svg +++ b/icons/frown.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/gift.svg b/icons/gift.svg index df02c7f2..1358a1c4 100644 --- a/icons/gift.svg +++ b/icons/gift.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/git-branch.svg b/icons/git-branch.svg index 17d903f7..126c9c56 100644 --- a/icons/git-branch.svg +++ b/icons/git-branch.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/git-commit.svg b/icons/git-commit.svg index 1574fbde..12359432 100644 --- a/icons/git-commit.svg +++ b/icons/git-commit.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/git-merge.svg b/icons/git-merge.svg index 02d4dc0d..dd1952ed 100644 --- a/icons/git-merge.svg +++ b/icons/git-merge.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/git-pull-request.svg b/icons/git-pull-request.svg index cab3581c..c536ad6a 100644 --- a/icons/git-pull-request.svg +++ b/icons/git-pull-request.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/github.svg b/icons/github.svg index 9b10063d..c1aabb55 100644 --- a/icons/github.svg +++ b/icons/github.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/gitlab.svg b/icons/gitlab.svg index b3a72da9..d612b745 100644 --- a/icons/gitlab.svg +++ b/icons/gitlab.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/globe.svg b/icons/globe.svg index a9c820f5..2d3720a8 100644 --- a/icons/globe.svg +++ b/icons/globe.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/grid.svg b/icons/grid.svg index 1c0b49ae..c83cfa52 100644 --- a/icons/grid.svg +++ b/icons/grid.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/hard-drive.svg b/icons/hard-drive.svg index 3ec7fa79..376e7e80 100644 --- a/icons/hard-drive.svg +++ b/icons/hard-drive.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/hash.svg b/icons/hash.svg index 9cc4f150..a7abbe26 100644 --- a/icons/hash.svg +++ b/icons/hash.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/headphones.svg b/icons/headphones.svg index f9c1cbde..f838df90 100644 --- a/icons/headphones.svg +++ b/icons/headphones.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/heart.svg b/icons/heart.svg index 8e0b98d4..670b7f7f 100644 --- a/icons/heart.svg +++ b/icons/heart.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/help-circle.svg b/icons/help-circle.svg index dab13586..430806c0 100644 --- a/icons/help-circle.svg +++ b/icons/help-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/hexagon.svg b/icons/hexagon.svg index 522c2e31..fb5c44d3 100644 --- a/icons/hexagon.svg +++ b/icons/hexagon.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/home.svg b/icons/home.svg index 9cd8f76e..4669462a 100644 --- a/icons/home.svg +++ b/icons/home.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/image.svg b/icons/image.svg index 11751622..b9a0460c 100644 --- a/icons/image.svg +++ b/icons/image.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/inbox.svg b/icons/inbox.svg index d5472f44..aac498d3 100644 --- a/icons/inbox.svg +++ b/icons/inbox.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/info.svg b/icons/info.svg index 9fbefeba..4d99c59b 100644 --- a/icons/info.svg +++ b/icons/info.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/instagram.svg b/icons/instagram.svg index d76b4122..87fda5cd 100644 --- a/icons/instagram.svg +++ b/icons/instagram.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/italic.svg b/icons/italic.svg index 9dfd524e..f597b4f7 100644 --- a/icons/italic.svg +++ b/icons/italic.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/key.svg b/icons/key.svg index 9071f28d..38bb96b4 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/layers.svg b/icons/layers.svg index 43b32550..8cf51387 100644 --- a/icons/layers.svg +++ b/icons/layers.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/layout.svg b/icons/layout.svg index 80c50665..767eb547 100644 --- a/icons/layout.svg +++ b/icons/layout.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/life-buoy.svg b/icons/life-buoy.svg index b171b390..4cb3ebcc 100644 --- a/icons/life-buoy.svg +++ b/icons/life-buoy.svg @@ -1,19 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/icons/link-2.svg b/icons/link-2.svg index 858bc335..c0930e16 100644 --- a/icons/link-2.svg +++ b/icons/link-2.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/link.svg b/icons/link.svg index 645e746a..b47b1565 100644 --- a/icons/link.svg +++ b/icons/link.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/linkedin.svg b/icons/linkedin.svg index a5e423b0..a0feb999 100644 --- a/icons/linkedin.svg +++ b/icons/linkedin.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/list.svg b/icons/list.svg index 382b8219..38b0c412 100644 --- a/icons/list.svg +++ b/icons/list.svg @@ -1,18 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/icons/loader.svg b/icons/loader.svg index 0b4bb938..d0d59c9a 100644 --- a/icons/loader.svg +++ b/icons/loader.svg @@ -1,20 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/icons/lock.svg b/icons/lock.svg index cd6b7f63..ffe8665a 100644 --- a/icons/lock.svg +++ b/icons/lock.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/log-in.svg b/icons/log-in.svg index bffc91e1..03c46162 100644 --- a/icons/log-in.svg +++ b/icons/log-in.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/log-out.svg b/icons/log-out.svg index 4abe3402..f19790d5 100644 --- a/icons/log-out.svg +++ b/icons/log-out.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/mail.svg b/icons/mail.svg index afaa18fd..90d90174 100644 --- a/icons/mail.svg +++ b/icons/mail.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/map-pin.svg b/icons/map-pin.svg index 8f5f3201..6ccf658d 100644 --- a/icons/map-pin.svg +++ b/icons/map-pin.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/map.svg b/icons/map.svg index 8c55dccc..0eb8cd10 100644 --- a/icons/map.svg +++ b/icons/map.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/maximize-2.svg b/icons/maximize-2.svg index abfa104e..9be80550 100644 --- a/icons/maximize-2.svg +++ b/icons/maximize-2.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/maximize.svg b/icons/maximize.svg index 97a3c140..990aeb50 100644 --- a/icons/maximize.svg +++ b/icons/maximize.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/meh.svg b/icons/meh.svg index e8ac3a6a..a97ab1c6 100644 --- a/icons/meh.svg +++ b/icons/meh.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/menu.svg b/icons/menu.svg index ab23d381..f32c64bf 100644 --- a/icons/menu.svg +++ b/icons/menu.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/message-circle.svg b/icons/message-circle.svg index 0ac10445..c8b348ba 100644 --- a/icons/message-circle.svg +++ b/icons/message-circle.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/message-square.svg b/icons/message-square.svg index be1caf3c..41733191 100644 --- a/icons/message-square.svg +++ b/icons/message-square.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/mic-off.svg b/icons/mic-off.svg index b9f01962..5aa6fac9 100644 --- a/icons/mic-off.svg +++ b/icons/mic-off.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/mic.svg b/icons/mic.svg index 3f1a11a4..3ffb3aa1 100644 --- a/icons/mic.svg +++ b/icons/mic.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/minimize-2.svg b/icons/minimize-2.svg index cb6c3a80..31e33d4c 100644 --- a/icons/minimize-2.svg +++ b/icons/minimize-2.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/minimize.svg b/icons/minimize.svg index 2aab5bb4..3447f716 100644 --- a/icons/minimize.svg +++ b/icons/minimize.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/minus-circle.svg b/icons/minus-circle.svg index 92a2ed62..d732c662 100644 --- a/icons/minus-circle.svg +++ b/icons/minus-circle.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/minus-square.svg b/icons/minus-square.svg index 3d03133f..4e2ea53c 100644 --- a/icons/minus-square.svg +++ b/icons/minus-square.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/minus.svg b/icons/minus.svg index 38b1ffcd..9ffb037a 100644 --- a/icons/minus.svg +++ b/icons/minus.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/monitor.svg b/icons/monitor.svg index d983a858..74d56790 100644 --- a/icons/monitor.svg +++ b/icons/monitor.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/moon.svg b/icons/moon.svg index 50230056..32491528 100644 --- a/icons/moon.svg +++ b/icons/moon.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/more-horizontal.svg b/icons/more-horizontal.svg index 68456c39..a2d9eaab 100644 --- a/icons/more-horizontal.svg +++ b/icons/more-horizontal.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/more-vertical.svg b/icons/more-vertical.svg index 1de61600..89458bc6 100644 --- a/icons/more-vertical.svg +++ b/icons/more-vertical.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/mouse-pointer.svg b/icons/mouse-pointer.svg index ea943323..6d90c70b 100644 --- a/icons/mouse-pointer.svg +++ b/icons/mouse-pointer.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/move.svg b/icons/move.svg index 40de93c6..0ac9deed 100644 --- a/icons/move.svg +++ b/icons/move.svg @@ -1,18 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/icons/music.svg b/icons/music.svg index 0ba4d501..70c8f5e0 100644 --- a/icons/music.svg +++ b/icons/music.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/navigation-2.svg b/icons/navigation-2.svg index febc406c..5c09bb0a 100644 --- a/icons/navigation-2.svg +++ b/icons/navigation-2.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/navigation.svg b/icons/navigation.svg index b2be022d..371bfb3a 100644 --- a/icons/navigation.svg +++ b/icons/navigation.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/octagon.svg b/icons/octagon.svg index 8a550f1b..c77b32bb 100644 --- a/icons/octagon.svg +++ b/icons/octagon.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/package.svg b/icons/package.svg index a47b7b78..ae4c094f 100644 --- a/icons/package.svg +++ b/icons/package.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/paperclip.svg b/icons/paperclip.svg index fe780ebe..25b7cd81 100644 --- a/icons/paperclip.svg +++ b/icons/paperclip.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/pause-circle.svg b/icons/pause-circle.svg index 39ce681d..f3558d28 100644 --- a/icons/pause-circle.svg +++ b/icons/pause-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/pause.svg b/icons/pause.svg index 756b604b..47d0a80b 100644 --- a/icons/pause.svg +++ b/icons/pause.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/pen-tool.svg b/icons/pen-tool.svg index 45b24bbd..9126c3b8 100644 --- a/icons/pen-tool.svg +++ b/icons/pen-tool.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/percent.svg b/icons/percent.svg index 3d18ed1f..34a691d8 100644 --- a/icons/percent.svg +++ b/icons/percent.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/phone-call.svg b/icons/phone-call.svg index 7fd231d9..16676293 100644 --- a/icons/phone-call.svg +++ b/icons/phone-call.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/phone-forwarded.svg b/icons/phone-forwarded.svg index bcf3db05..5b0dcde6 100644 --- a/icons/phone-forwarded.svg +++ b/icons/phone-forwarded.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/phone-incoming.svg b/icons/phone-incoming.svg index 9bbde4a6..dacaf120 100644 --- a/icons/phone-incoming.svg +++ b/icons/phone-incoming.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/phone-missed.svg b/icons/phone-missed.svg index da522b7c..7ab28a04 100644 --- a/icons/phone-missed.svg +++ b/icons/phone-missed.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/phone-off.svg b/icons/phone-off.svg index a0a0ad9e..615d5cef 100644 --- a/icons/phone-off.svg +++ b/icons/phone-off.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/phone-outgoing.svg b/icons/phone-outgoing.svg index 107267bb..4d9a5987 100644 --- a/icons/phone-outgoing.svg +++ b/icons/phone-outgoing.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/phone.svg b/icons/phone.svg index b1972e93..7da848c2 100644 --- a/icons/phone.svg +++ b/icons/phone.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/pie-chart.svg b/icons/pie-chart.svg index f128b882..fae10e9a 100644 --- a/icons/pie-chart.svg +++ b/icons/pie-chart.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/play-circle.svg b/icons/play-circle.svg index f814cfd9..8ed76b43 100644 --- a/icons/play-circle.svg +++ b/icons/play-circle.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/play.svg b/icons/play.svg index d1e20e2f..8b6a3642 100644 --- a/icons/play.svg +++ b/icons/play.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/plus-circle.svg b/icons/plus-circle.svg index 413fb487..6b8f5488 100644 --- a/icons/plus-circle.svg +++ b/icons/plus-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/plus-square.svg b/icons/plus-square.svg index c8f4798b..b7ed53c2 100644 --- a/icons/plus-square.svg +++ b/icons/plus-square.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/plus.svg b/icons/plus.svg index 1e1b1c56..9b0b994c 100644 --- a/icons/plus.svg +++ b/icons/plus.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/pocket.svg b/icons/pocket.svg index 00376f4f..c245ab06 100644 --- a/icons/pocket.svg +++ b/icons/pocket.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/power.svg b/icons/power.svg index cc03e382..08a55318 100644 --- a/icons/power.svg +++ b/icons/power.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/printer.svg b/icons/printer.svg index 5df50aed..de060ec7 100644 --- a/icons/printer.svg +++ b/icons/printer.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/radio.svg b/icons/radio.svg index 25ddfd92..73317f51 100644 --- a/icons/radio.svg +++ b/icons/radio.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/refresh-ccw.svg b/icons/refresh-ccw.svg index 24f934c9..2d170390 100644 --- a/icons/refresh-ccw.svg +++ b/icons/refresh-ccw.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/refresh-cw.svg b/icons/refresh-cw.svg index 1773a2f8..5c51425f 100644 --- a/icons/refresh-cw.svg +++ b/icons/refresh-cw.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/repeat.svg b/icons/repeat.svg index 34268895..1f8d1fd1 100644 --- a/icons/repeat.svg +++ b/icons/repeat.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/rewind.svg b/icons/rewind.svg index 749f98d7..902cb440 100644 --- a/icons/rewind.svg +++ b/icons/rewind.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/rotate-ccw.svg b/icons/rotate-ccw.svg index df7e67da..eeac3120 100644 --- a/icons/rotate-ccw.svg +++ b/icons/rotate-ccw.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/rotate-cw.svg b/icons/rotate-cw.svg index 67562654..fdfbdea0 100644 --- a/icons/rotate-cw.svg +++ b/icons/rotate-cw.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/rss.svg b/icons/rss.svg index 3b870367..dac75528 100644 --- a/icons/rss.svg +++ b/icons/rss.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/save.svg b/icons/save.svg index ddf6bf36..0c6312dd 100644 --- a/icons/save.svg +++ b/icons/save.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/scissors.svg b/icons/scissors.svg index 1bf17740..e0a9f80f 100644 --- a/icons/scissors.svg +++ b/icons/scissors.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/search.svg b/icons/search.svg index 89a8636b..97881568 100644 --- a/icons/search.svg +++ b/icons/search.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/send.svg b/icons/send.svg index 715d37c3..af706374 100644 --- a/icons/send.svg +++ b/icons/send.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/server.svg b/icons/server.svg index b48d6934..97acb8a1 100644 --- a/icons/server.svg +++ b/icons/server.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/settings.svg b/icons/settings.svg index b4a1887c..aa787125 100644 --- a/icons/settings.svg +++ b/icons/settings.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/share-2.svg b/icons/share-2.svg index 704394f1..6b1a44fe 100644 --- a/icons/share-2.svg +++ b/icons/share-2.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/share.svg b/icons/share.svg index 69208c36..d6375cf0 100644 --- a/icons/share.svg +++ b/icons/share.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/shield-off.svg b/icons/shield-off.svg index f8e52c74..8866e09d 100644 --- a/icons/shield-off.svg +++ b/icons/shield-off.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/shield.svg b/icons/shield.svg index 343c137c..8ab1e081 100644 --- a/icons/shield.svg +++ b/icons/shield.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/shopping-bag.svg b/icons/shopping-bag.svg index dab68263..c3175017 100644 --- a/icons/shopping-bag.svg +++ b/icons/shopping-bag.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/shopping-cart.svg b/icons/shopping-cart.svg index 85d40f97..fc6c919d 100644 --- a/icons/shopping-cart.svg +++ b/icons/shopping-cart.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/shuffle.svg b/icons/shuffle.svg index a2282eb2..116e2d42 100644 --- a/icons/shuffle.svg +++ b/icons/shuffle.svg @@ -1,17 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/icons/sidebar.svg b/icons/sidebar.svg index 25f04494..7b51fc1b 100644 --- a/icons/sidebar.svg +++ b/icons/sidebar.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/skip-back.svg b/icons/skip-back.svg index 1dfebcf5..801d353d 100644 --- a/icons/skip-back.svg +++ b/icons/skip-back.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/skip-forward.svg b/icons/skip-forward.svg index dcc0b540..370afa76 100644 --- a/icons/skip-forward.svg +++ b/icons/skip-forward.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/slack.svg b/icons/slack.svg index 61fa47e4..0f1cc560 100644 --- a/icons/slack.svg +++ b/icons/slack.svg @@ -1,20 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/icons/slash.svg b/icons/slash.svg index 56f61239..b5ec77b7 100644 --- a/icons/slash.svg +++ b/icons/slash.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/sliders.svg b/icons/sliders.svg index 2edc69d9..cc9c1f6b 100644 --- a/icons/sliders.svg +++ b/icons/sliders.svg @@ -1,21 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/icons/smartphone.svg b/icons/smartphone.svg index d6865a10..cf411ead 100644 --- a/icons/smartphone.svg +++ b/icons/smartphone.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/smile.svg b/icons/smile.svg index 9716c26e..dc49a034 100644 --- a/icons/smile.svg +++ b/icons/smile.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/speaker.svg b/icons/speaker.svg index 6f6fef3c..dbcf9d49 100644 --- a/icons/speaker.svg +++ b/icons/speaker.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/square.svg b/icons/square.svg index f6ad2696..2420ee1a 100644 --- a/icons/square.svg +++ b/icons/square.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/star.svg b/icons/star.svg index 47e496c1..a64c645e 100644 --- a/icons/star.svg +++ b/icons/star.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/stop-circle.svg b/icons/stop-circle.svg index 83762389..a05da123 100644 --- a/icons/stop-circle.svg +++ b/icons/stop-circle.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/sun.svg b/icons/sun.svg index fea872c6..35893378 100644 --- a/icons/sun.svg +++ b/icons/sun.svg @@ -1,21 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/icons/sunrise.svg b/icons/sunrise.svg index 7689f4c5..c57676fc 100644 --- a/icons/sunrise.svg +++ b/icons/sunrise.svg @@ -1,20 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/icons/sunset.svg b/icons/sunset.svg index a6194169..b082d1cf 100644 --- a/icons/sunset.svg +++ b/icons/sunset.svg @@ -1,20 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/icons/table.svg b/icons/table.svg index 2c1d7f33..d4174ea6 100644 --- a/icons/table.svg +++ b/icons/table.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/tablet.svg b/icons/tablet.svg index c2c0a87d..a0e23d55 100644 --- a/icons/tablet.svg +++ b/icons/tablet.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/tag.svg b/icons/tag.svg index e8500cd6..ca460c0f 100644 --- a/icons/tag.svg +++ b/icons/tag.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/target.svg b/icons/target.svg index 260624a5..f9b884f2 100644 --- a/icons/target.svg +++ b/icons/target.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/terminal.svg b/icons/terminal.svg index fc7b7bf2..a919b138 100644 --- a/icons/terminal.svg +++ b/icons/terminal.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/thermometer.svg b/icons/thermometer.svg index 7d93e61e..fa571b5a 100644 --- a/icons/thermometer.svg +++ b/icons/thermometer.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/thumbs-down.svg b/icons/thumbs-down.svg index 818f7ae7..31fdf577 100644 --- a/icons/thumbs-down.svg +++ b/icons/thumbs-down.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/thumbs-up.svg b/icons/thumbs-up.svg index e53c9629..c78bd9e7 100644 --- a/icons/thumbs-up.svg +++ b/icons/thumbs-up.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/toggle-left.svg b/icons/toggle-left.svg index 8d7c6da6..b54a1f5f 100644 --- a/icons/toggle-left.svg +++ b/icons/toggle-left.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/toggle-right.svg b/icons/toggle-right.svg index 652658ca..1fd437da 100644 --- a/icons/toggle-right.svg +++ b/icons/toggle-right.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/tool.svg b/icons/tool.svg index 7a3c0e00..4f5cf388 100644 --- a/icons/tool.svg +++ b/icons/tool.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/trash-2.svg b/icons/trash-2.svg index f3bd2bd3..2d9e9f57 100644 --- a/icons/trash-2.svg +++ b/icons/trash-2.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/trash.svg b/icons/trash.svg index 942d13dc..8fc1c825 100644 --- a/icons/trash.svg +++ b/icons/trash.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/trello.svg b/icons/trello.svg index 3bc1b7e1..449fc98a 100644 --- a/icons/trello.svg +++ b/icons/trello.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/trending-down.svg b/icons/trending-down.svg index c12cc9e2..ce01b3c9 100644 --- a/icons/trending-down.svg +++ b/icons/trending-down.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/trending-up.svg b/icons/trending-up.svg index 79d7483a..653b9c85 100644 --- a/icons/trending-up.svg +++ b/icons/trending-up.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/triangle.svg b/icons/triangle.svg index b9bf9379..9843dbb0 100644 --- a/icons/triangle.svg +++ b/icons/triangle.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/truck.svg b/icons/truck.svg index 8cb076b4..4bba4722 100644 --- a/icons/truck.svg +++ b/icons/truck.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/tv.svg b/icons/tv.svg index cdfcfad1..d153bd41 100644 --- a/icons/tv.svg +++ b/icons/tv.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/twitch.svg b/icons/twitch.svg index e1e517c6..e95a4e69 100644 --- a/icons/twitch.svg +++ b/icons/twitch.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/twitter.svg b/icons/twitter.svg index b3f25472..e4571ff9 100644 --- a/icons/twitter.svg +++ b/icons/twitter.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/type.svg b/icons/type.svg index 6128bdd8..9fe002dd 100644 --- a/icons/type.svg +++ b/icons/type.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/umbrella.svg b/icons/umbrella.svg index f571571e..e13b63d7 100644 --- a/icons/umbrella.svg +++ b/icons/umbrella.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/underline.svg b/icons/underline.svg index ca6adadc..776bf391 100644 --- a/icons/underline.svg +++ b/icons/underline.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/unlock.svg b/icons/unlock.svg index 0e6fc788..c38e0b12 100644 --- a/icons/unlock.svg +++ b/icons/unlock.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/upload-cloud.svg b/icons/upload-cloud.svg index 4e5c299a..6f589246 100644 --- a/icons/upload-cloud.svg +++ b/icons/upload-cloud.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/upload.svg b/icons/upload.svg index 2f861e68..c7daedd6 100644 --- a/icons/upload.svg +++ b/icons/upload.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/user-check.svg b/icons/user-check.svg index 7cf8ec38..1b713a1e 100644 --- a/icons/user-check.svg +++ b/icons/user-check.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/user-minus.svg b/icons/user-minus.svg index 94558bc8..4814b2f8 100644 --- a/icons/user-minus.svg +++ b/icons/user-minus.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/user-plus.svg b/icons/user-plus.svg index f84c74b4..ba2dca1b 100644 --- a/icons/user-plus.svg +++ b/icons/user-plus.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/user-x.svg b/icons/user-x.svg index 2033c6e0..6c11aca7 100644 --- a/icons/user-x.svg +++ b/icons/user-x.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/user.svg b/icons/user.svg index f075a65f..3e96571e 100644 --- a/icons/user.svg +++ b/icons/user.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/users.svg b/icons/users.svg index eb87d02b..0f46e0d8 100644 --- a/icons/users.svg +++ b/icons/users.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/video-off.svg b/icons/video-off.svg index 3a6bf297..366ea15f 100644 --- a/icons/video-off.svg +++ b/icons/video-off.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/video.svg b/icons/video.svg index c1199e0c..9474afac 100644 --- a/icons/video.svg +++ b/icons/video.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/voicemail.svg b/icons/voicemail.svg index e3097483..7604708e 100644 --- a/icons/voicemail.svg +++ b/icons/voicemail.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/volume-1.svg b/icons/volume-1.svg index c6f9a5be..d9548e95 100644 --- a/icons/volume-1.svg +++ b/icons/volume-1.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/volume-2.svg b/icons/volume-2.svg index 6e15fa72..56627981 100644 --- a/icons/volume-2.svg +++ b/icons/volume-2.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/volume-x.svg b/icons/volume-x.svg index c7ad8b72..0d06ae7f 100644 --- a/icons/volume-x.svg +++ b/icons/volume-x.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/volume.svg b/icons/volume.svg index bdeeb834..08c8dbc6 100644 --- a/icons/volume.svg +++ b/icons/volume.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/watch.svg b/icons/watch.svg index 6a460bd2..faad3192 100644 --- a/icons/watch.svg +++ b/icons/watch.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/wifi-off.svg b/icons/wifi-off.svg index f012eec3..ea1ac0a3 100644 --- a/icons/wifi-off.svg +++ b/icons/wifi-off.svg @@ -1,19 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/icons/wifi.svg b/icons/wifi.svg index 31d4c042..73eb4b00 100644 --- a/icons/wifi.svg +++ b/icons/wifi.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/wind.svg b/icons/wind.svg index 1d14a82b..1744fdfd 100644 --- a/icons/wind.svg +++ b/icons/wind.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/x-circle.svg b/icons/x-circle.svg index 0e28b25a..ec2acbf7 100644 --- a/icons/x-circle.svg +++ b/icons/x-circle.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/x-octagon.svg b/icons/x-octagon.svg index 77c4f6e5..4c37ba1f 100644 --- a/icons/x-octagon.svg +++ b/icons/x-octagon.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/x-square.svg b/icons/x-square.svg index f343ec13..93c2f573 100644 --- a/icons/x-square.svg +++ b/icons/x-square.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file diff --git a/icons/x.svg b/icons/x.svg index 559b1167..d9213159 100644 --- a/icons/x.svg +++ b/icons/x.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/youtube.svg b/icons/youtube.svg index ee94297a..f684a92b 100644 --- a/icons/youtube.svg +++ b/icons/youtube.svg @@ -1,14 +1 @@ - - - - + \ No newline at end of file diff --git a/icons/zap-off.svg b/icons/zap-off.svg index c6dbbba9..f442af42 100644 --- a/icons/zap-off.svg +++ b/icons/zap-off.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/zap.svg b/icons/zap.svg index c5d0d354..e6e6f2bf 100644 --- a/icons/zap.svg +++ b/icons/zap.svg @@ -1,13 +1 @@ - - - + \ No newline at end of file diff --git a/icons/zoom-in.svg b/icons/zoom-in.svg index 0a151511..ff685f2c 100644 --- a/icons/zoom-in.svg +++ b/icons/zoom-in.svg @@ -1,16 +1 @@ - - - - - - + \ No newline at end of file diff --git a/icons/zoom-out.svg b/icons/zoom-out.svg index 049de6ce..46755e85 100644 --- a/icons/zoom-out.svg +++ b/icons/zoom-out.svg @@ -1,15 +1 @@ - - - - - + \ No newline at end of file