diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index df06d5f6bd..7c4e425e7c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,6 +14,7 @@ Glad you're here and interested in expanding this project 🎉 In order to make - [Icons for color themes](#icons-for-color-themes) - [Unique assignment to file and folder names](#icon-assignments) - [Create icon packs](#icon-packs) + - [Designing Pixel Perfect Icons](#pixel-perfect-icons) - [Add translations](#add-translations) - [Update API](#update-api) @@ -81,7 +82,7 @@ Continue reading [here](#design-folder-icons) to find out about colors for the f When designing folder icons there are also a few points to consider. A folder icon always consists of two icons - the folder in the background and a motive in the foreground: - + For the motive, only colors from the second row in the [color palette](https://pkief.com/material-color-converter/) are allowed. For the background choose a slightly darker hue (mostly in rows 4-6 in the palette). @@ -91,7 +92,7 @@ This uniform color selection makes the folder icons look more consistent and fit | ✅ | ❌ | | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------- | -| | | +| | |

Icon spacing

@@ -208,6 +209,62 @@ To create an icon pack, the following steps have to be completed: 3. Adjust [package.json](package.json) under `configuration.properties.material-icon-theme.activeIconPack` 4. Use the icon pack inside the [fileIcons.ts](src/icons/fileIcons.ts),[folderIcons.ts](src/icons/folderIcons.ts) or [languageIcons.ts](src/icons/languageIcons.ts) files in the `enabledFor` attribute +

Designing Pixel-Perfect Icons

+ +At 100% zoom, VS Code displays icons at 16x16 pixels. This means that ideally, the icons should be designed in a way that they look good at this size. + +A known issue is that the icons can appear blurry after resizing them, even to the point where they are no longer easily recognizable, depending on the case. + +To avoid blurry icons, it is recommended to design them using a 16x16 grid and trying to align the edges of the icon to it. This will help ensure that the icons look sharp and clear, even at smaller sizes. + + + +

Tips for Designing Pixel-Perfect Icons

+ +The following are some tips to help you design nice and sharp-looking icons. These tips are not rules but rather guidelines to help you achieve the best results possible: + +- **Use a grid**: This is the most important tip. Try to use a 16x16 grid to design the icons and snap the edges of the icon to the grid. Blurriness is often caused by misalignment of the edges and vertices, resulting in the icon trying to fit a pixel in between two pixels. As this is physically impossible, the engine will create two pixels with different opacity to simulate the in-between pixel, causing the blurriness. When a path is aligned to the grid, each pixel will be a solid color, and the icon will look sharp. + + The following example illustrates an icon with its paths aligned to a 16x16 grid: + + + + On the other hand, this other example illustrates an icon with its paths not aligned to a 16x16 grid: + + + + Here is a comparison of both icons rendered at 16px: + + + + As you can see, the misaligned icon (left) has blurry edges with "ghost pixels" that attempt to simulate "half a pixel". Additionally, the suitcase motif in it is slightly harder to recognize. On the other hand, the aligned icon (right) looks sharper and clearer. + + So, even though the difference between the two icons was subtle, the impact on the final result is quite significant. + +- **Decimals are not your friends**: Related to the previous tip, when designing icons, it's important to try to avoid using decimal values for the positions of the vertices. This is because, as previously mentioned, pixels are square, and there's no such thing as a fractionated pixel. If you keep the vertices aligned to the grid, it will be easier to avoid decimal coordinates. In short, try to keep the vertices on whole numbers. + +- **Sometimes less is more**: Detail is valuable, but attempting to incorporate too much detail in 16 pixels or less can pose a significant challenge. It might even be counterproductive, resulting in an icon that is difficult to recognize. Icons are primarily about communicating a concept. To effectively communicate a concept, it must be easily recognizable. + + Let's consider the following example: + + + + The icon is visually appealing, but it has some issues: the trunk, the tail and the negative space separating the ear from the body are too thin. Additionally, the eye is too small, and the shapes, in general, are somewhat complex. While this icon would look great if rendered at 24, 32, or 64 pixels, at 16 pixels, we lack sufficient resolution to effectively convey the concept. + + Now, let's explore a minimalistic approach to communicating the same concept: + + | Concept | Result | + | ------------------------------------------------------------------- | --------------------------------------------------------------------- | + | | | + + Indeed, the minimalistic version may lack the level of detail present in the first icon, particularly when viewed at a larger size. However, on the other hand, we are still effectively communicating the concept. It's unmistakably an elephant. Furthermore, all edges and paths are aligned to the grid. + + Now, let's examine both icons when rendered at 16px: + + + +- **Curves vs straight lines**: Let's face it, pixels are square, there's nothing we can do about it. And since pixels are square, drawing a curve actually involves drawing a series of... squares. Consequently, when rendering a curve, we're essentially asking the display to render a fraction of a pixel, which is impossible. As a result, curves tend to appear blurry. This is normal. However, it's perfectly fine to use curves, circles, and rounded edges in your icons. Just keep in mind these limitations if you're wondering why your icon doesn't look as sharp as you'd like. + ## Add translations This project offers translations into different languages. If you notice an error here, please help to fix it. You can do this as follows: diff --git a/icons/abap.svg b/icons/abap.svg index a0346562e4..5d07cef4ed 100644 --- a/icons/abap.svg +++ b/icons/abap.svg @@ -1,3 +1,3 @@ - - + + diff --git a/icons/actionscript.svg b/icons/actionscript.svg index c770fa3430..972148cae9 100644 --- a/icons/actionscript.svg +++ b/icons/actionscript.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/android.svg b/icons/android.svg index b13ac0aa4e..a6f7b11da7 100644 --- a/icons/android.svg +++ b/icons/android.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/apiblueprint.svg b/icons/apiblueprint.svg index 23e9324432..e565d7787c 100644 --- a/icons/apiblueprint.svg +++ b/icons/apiblueprint.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/apollo.svg b/icons/apollo.svg index a42c6237b1..83985b4b4b 100644 --- a/icons/apollo.svg +++ b/icons/apollo.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/applescript.svg b/icons/applescript.svg index ad9933b29c..af2a9714b2 100644 --- a/icons/applescript.svg +++ b/icons/applescript.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/apps-script.svg b/icons/apps-script.svg index 021d917ab5..39a87509a7 100644 --- a/icons/apps-script.svg +++ b/icons/apps-script.svg @@ -1 +1,8 @@ - + + + + + + + + diff --git a/icons/arduino.svg b/icons/arduino.svg index 031cdeca42..6d82a28086 100644 --- a/icons/arduino.svg +++ b/icons/arduino.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/asciidoc.svg b/icons/asciidoc.svg index 192c24d46e..baad22bbaa 100644 --- a/icons/asciidoc.svg +++ b/icons/asciidoc.svg @@ -1,8 +1,8 @@ - - - - - - + + + + + + diff --git a/icons/assembly.svg b/icons/assembly.svg index f0041522bd..d721946e49 100644 --- a/icons/assembly.svg +++ b/icons/assembly.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/astro.svg b/icons/astro.svg index 2507c12bf9..00316a22fd 100644 --- a/icons/astro.svg +++ b/icons/astro.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/audio.svg b/icons/audio.svg index b5f0f8fe4c..34917819c1 100644 --- a/icons/audio.svg +++ b/icons/audio.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/autohotkey.svg b/icons/autohotkey.svg index 0d4f486b1a..f2576efa88 100644 --- a/icons/autohotkey.svg +++ b/icons/autohotkey.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/azure-pipelines.svg b/icons/azure-pipelines.svg index a1b50816af..c39954cfdb 100644 --- a/icons/azure-pipelines.svg +++ b/icons/azure-pipelines.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/azure.svg b/icons/azure.svg index e9a4d5246b..2d10b143d9 100644 --- a/icons/azure.svg +++ b/icons/azure.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/ballerina.svg b/icons/ballerina.svg index 0ee468764d..a05347b807 100644 --- a/icons/ballerina.svg +++ b/icons/ballerina.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/bucklescript.svg b/icons/bucklescript.svg index 8f13f98d6a..59c8dcca27 100644 --- a/icons/bucklescript.svg +++ b/icons/bucklescript.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/buildkite.svg b/icons/buildkite.svg index 1fdd05d08c..13eecb3b63 100644 --- a/icons/buildkite.svg +++ b/icons/buildkite.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/bun.svg b/icons/bun.svg index b4663d7e8d..cac8961df2 100644 --- a/icons/bun.svg +++ b/icons/bun.svg @@ -1,2 +1,15 @@ - -Bun Logo + + + + + + + + + + + + + + + diff --git a/icons/bun_light.svg b/icons/bun_light.svg index 40b73219d4..19c4e4421e 100644 --- a/icons/bun_light.svg +++ b/icons/bun_light.svg @@ -1,2 +1,14 @@ - -Bun Logo + + + + + + + + + + + + + + diff --git a/icons/c.svg b/icons/c.svg index 42c0d1ef09..3949b8a45b 100644 --- a/icons/c.svg +++ b/icons/c.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/icons/caddy.svg b/icons/caddy.svg index c651440030..baf0a9989a 100644 --- a/icons/caddy.svg +++ b/icons/caddy.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/cadence.svg b/icons/cadence.svg index 392f8ff978..254bc0454a 100644 --- a/icons/cadence.svg +++ b/icons/cadence.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/cake.svg b/icons/cake.svg index 6c09c992f6..b32acb61e1 100644 --- a/icons/cake.svg +++ b/icons/cake.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/certificate.svg b/icons/certificate.svg index fc7806a585..d17c2bef07 100644 --- a/icons/certificate.svg +++ b/icons/certificate.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/changelog.svg b/icons/changelog.svg index 9fa93f38de..88ec1b244c 100644 --- a/icons/changelog.svg +++ b/icons/changelog.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/chess.svg b/icons/chess.svg index 8847d6cfeb..a96a5d072f 100644 --- a/icons/chess.svg +++ b/icons/chess.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/chess_light.svg b/icons/chess_light.svg index 110f8f4fe1..de5d789854 100644 --- a/icons/chess_light.svg +++ b/icons/chess_light.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/chrome.svg b/icons/chrome.svg index 74c45133ee..e09339bd2c 100644 --- a/icons/chrome.svg +++ b/icons/chrome.svg @@ -1,3 +1,3 @@ - - + + diff --git a/icons/circleci.svg b/icons/circleci.svg index 118861bfde..7d64c9dae5 100644 --- a/icons/circleci.svg +++ b/icons/circleci.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/circleci_light.svg b/icons/circleci_light.svg index d82b2033cc..eb68c50fcb 100644 --- a/icons/circleci_light.svg +++ b/icons/circleci_light.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/cobol.svg b/icons/cobol.svg index 0168a48d78..690f18b794 100644 --- a/icons/cobol.svg +++ b/icons/cobol.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/coffee.svg b/icons/coffee.svg index d9e751fa3c..ffe8d09593 100644 --- a/icons/coffee.svg +++ b/icons/coffee.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/coldfusion.svg b/icons/coldfusion.svg index 04d70f9706..d921ab0f6e 100644 --- a/icons/coldfusion.svg +++ b/icons/coldfusion.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/command.svg b/icons/command.svg index 8d08f2ddbc..8ae16ac31b 100644 --- a/icons/command.svg +++ b/icons/command.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/conduct.svg b/icons/conduct.svg index c6a869b9a0..7a0476283d 100644 --- a/icons/conduct.svg +++ b/icons/conduct.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/console.svg b/icons/console.svg index 1689c935b5..1a896a6ce7 100644 --- a/icons/console.svg +++ b/icons/console.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/contributing.svg b/icons/contributing.svg index 18ac914607..31104da2e6 100644 --- a/icons/contributing.svg +++ b/icons/contributing.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/cpp.svg b/icons/cpp.svg index c2c3d5b33b..19befcc828 100644 --- a/icons/cpp.svg +++ b/icons/cpp.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons/craco.svg b/icons/craco.svg index b98084192b..4dfb17cc4e 100644 --- a/icons/craco.svg +++ b/icons/craco.svg @@ -1,45 +1,12 @@ - - - - + + + + + + + + + + + + diff --git a/icons/credits.svg b/icons/credits.svg index 5930136529..732efe265b 100644 --- a/icons/credits.svg +++ b/icons/credits.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/csharp.svg b/icons/csharp.svg index 7c7f5bbbe4..84e3aa97fe 100644 --- a/icons/csharp.svg +++ b/icons/csharp.svg @@ -1,4 +1,7 @@ - - - + + + + + + diff --git a/icons/css-map.svg b/icons/css-map.svg index daa820bc48..7840262a2f 100644 --- a/icons/css-map.svg +++ b/icons/css-map.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/css.svg b/icons/css.svg index 6eb82d6db4..ca153d224a 100644 --- a/icons/css.svg +++ b/icons/css.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/cuda.svg b/icons/cuda.svg index adc818598d..025f1ab895 100644 --- a/icons/cuda.svg +++ b/icons/cuda.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/d.svg b/icons/d.svg index e7e99be48e..ee59eceba0 100644 --- a/icons/d.svg +++ b/icons/d.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/dart.svg b/icons/dart.svg index 77ec4d2809..c1e3eeea32 100644 --- a/icons/dart.svg +++ b/icons/dart.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/dart_generated.svg b/icons/dart_generated.svg index ad69501106..5d2bb361f8 100644 --- a/icons/dart_generated.svg +++ b/icons/dart_generated.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/database.svg b/icons/database.svg index 8b8e28538a..cdeb9b40c4 100644 --- a/icons/database.svg +++ b/icons/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/denizenscript.svg b/icons/denizenscript.svg index ab2598adbe..ef6a811d07 100644 --- a/icons/denizenscript.svg +++ b/icons/denizenscript.svg @@ -1 +1,7 @@ -D \ No newline at end of file + + + + + + + diff --git a/icons/deno.svg b/icons/deno.svg index c19ad4b083..93de9e6c97 100644 --- a/icons/deno.svg +++ b/icons/deno.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/deno_light.svg b/icons/deno_light.svg index ed3d104757..c435b3f468 100644 --- a/icons/deno_light.svg +++ b/icons/deno_light.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/dependabot.svg b/icons/dependabot.svg index d3a57b506b..44da3f9fe5 100644 --- a/icons/dependabot.svg +++ b/icons/dependabot.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/diff.svg b/icons/diff.svg index 45662c0781..ef444c4497 100644 --- a/icons/diff.svg +++ b/icons/diff.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/disc.svg b/icons/disc.svg index 5492d13daf..32bef68380 100644 --- a/icons/disc.svg +++ b/icons/disc.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/django.svg b/icons/django.svg index aa7b4facf2..b4b7153cee 100644 --- a/icons/django.svg +++ b/icons/django.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/dll.svg b/icons/dll.svg index 76a900f5b4..55a97910b2 100644 --- a/icons/dll.svg +++ b/icons/dll.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/docker.svg b/icons/docker.svg index 5d02710052..7d97773bd1 100644 --- a/icons/docker.svg +++ b/icons/docker.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/document.svg b/icons/document.svg index 1be76a4e48..853adf5e2d 100644 --- a/icons/document.svg +++ b/icons/document.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/drawio.svg b/icons/drawio.svg index 0e754248d9..ceaac74770 100644 --- a/icons/drawio.svg +++ b/icons/drawio.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/email.svg b/icons/email.svg index 1b046d0e5a..36271f9a59 100644 --- a/icons/email.svg +++ b/icons/email.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/eslint.svg b/icons/eslint.svg index ae63dd87b4..ee41e0fe84 100644 --- a/icons/eslint.svg +++ b/icons/eslint.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/exe.svg b/icons/exe.svg index d7b98e24d4..cbce8cf2e8 100644 --- a/icons/exe.svg +++ b/icons/exe.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/favicon.svg b/icons/favicon.svg index 432aabf34f..f4bd662b76 100644 --- a/icons/favicon.svg +++ b/icons/favicon.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/figma.svg b/icons/figma.svg index 9beccf71c3..0d6aee47a9 100644 --- a/icons/figma.svg +++ b/icons/figma.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-admin-open.svg b/icons/folder-admin-open.svg index c27d4e77b4..5cb7fe7ffb 100644 --- a/icons/folder-admin-open.svg +++ b/icons/folder-admin-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-admin.svg b/icons/folder-admin.svg index fe5d06c217..dd472dc586 100644 --- a/icons/folder-admin.svg +++ b/icons/folder-admin.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-android-open.svg b/icons/folder-android-open.svg index 38f74e2d18..0f9e5315da 100644 --- a/icons/folder-android-open.svg +++ b/icons/folder-android-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-android.svg b/icons/folder-android.svg index 6b5323d6fe..dd688bfd03 100644 --- a/icons/folder-android.svg +++ b/icons/folder-android.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-angular-open.svg b/icons/folder-angular-open.svg index 77a3605709..940173144a 100644 --- a/icons/folder-angular-open.svg +++ b/icons/folder-angular-open.svg @@ -1 +1,10 @@ - + + + + + + + + + + diff --git a/icons/folder-angular.svg b/icons/folder-angular.svg index 26e2069ec2..d4ebe8504c 100644 --- a/icons/folder-angular.svg +++ b/icons/folder-angular.svg @@ -1 +1,10 @@ - + + + + + + + + + + diff --git a/icons/folder-animation-open.svg b/icons/folder-animation-open.svg index 97c3401a6e..d4442ea892 100644 --- a/icons/folder-animation-open.svg +++ b/icons/folder-animation-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-animation.svg b/icons/folder-animation.svg index 1292fd46ea..e7a87b6f3b 100644 --- a/icons/folder-animation.svg +++ b/icons/folder-animation.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ansible-open.svg b/icons/folder-ansible-open.svg index 8a13697b1b..66129c7752 100644 --- a/icons/folder-ansible-open.svg +++ b/icons/folder-ansible-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-ansible.svg b/icons/folder-ansible.svg index 6e8ac87de1..67cc3414e7 100644 --- a/icons/folder-ansible.svg +++ b/icons/folder-ansible.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-api-open.svg b/icons/folder-api-open.svg index 8626503233..c824301b0a 100644 --- a/icons/folder-api-open.svg +++ b/icons/folder-api-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-api.svg b/icons/folder-api.svg index 54b78dc6d8..0c7e240c7a 100644 --- a/icons/folder-api.svg +++ b/icons/folder-api.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-apollo-open.svg b/icons/folder-apollo-open.svg index aea3109cba..00bdfc526f 100644 --- a/icons/folder-apollo-open.svg +++ b/icons/folder-apollo-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-apollo.svg b/icons/folder-apollo.svg index be01767e22..c57f162e81 100644 --- a/icons/folder-apollo.svg +++ b/icons/folder-apollo.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-app-open.svg b/icons/folder-app-open.svg index 4480a9fe40..4a04e5933c 100644 --- a/icons/folder-app-open.svg +++ b/icons/folder-app-open.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/icons/folder-app.svg b/icons/folder-app.svg index 72b9882c88..e571fcc070 100644 --- a/icons/folder-app.svg +++ b/icons/folder-app.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/icons/folder-archive-open.svg b/icons/folder-archive-open.svg index 920e846193..63c1f498e0 100644 --- a/icons/folder-archive-open.svg +++ b/icons/folder-archive-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-archive.svg b/icons/folder-archive.svg index ba7f21f7e9..092aec6b4c 100644 --- a/icons/folder-archive.svg +++ b/icons/folder-archive.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-audio-open.svg b/icons/folder-audio-open.svg index 872e1ecfc3..97bc972156 100644 --- a/icons/folder-audio-open.svg +++ b/icons/folder-audio-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-audio.svg b/icons/folder-audio.svg index 737aba1e6b..feb75bd091 100644 --- a/icons/folder-audio.svg +++ b/icons/folder-audio.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-aurelia-open.svg b/icons/folder-aurelia-open.svg index 0072ce2773..78aa7495ae 100644 --- a/icons/folder-aurelia-open.svg +++ b/icons/folder-aurelia-open.svg @@ -1 +1,46 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-aurelia.svg b/icons/folder-aurelia.svg index 36a1f6c00f..9b9a32143f 100644 --- a/icons/folder-aurelia.svg +++ b/icons/folder-aurelia.svg @@ -1 +1,46 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-aws-open.svg b/icons/folder-aws-open.svg index 5a7fee71f9..72326d3f45 100644 --- a/icons/folder-aws-open.svg +++ b/icons/folder-aws-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-aws.svg b/icons/folder-aws.svg index 740e090981..519308b1c1 100644 --- a/icons/folder-aws.svg +++ b/icons/folder-aws.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-azure-pipelines-open.svg b/icons/folder-azure-pipelines-open.svg index 71e463eb54..7f3a420b75 100644 --- a/icons/folder-azure-pipelines-open.svg +++ b/icons/folder-azure-pipelines-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-azure-pipelines.svg b/icons/folder-azure-pipelines.svg index 77868d3b16..4946ec1249 100644 --- a/icons/folder-azure-pipelines.svg +++ b/icons/folder-azure-pipelines.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-base-open.svg b/icons/folder-base-open.svg index c20a6eae48..b8568583bb 100644 --- a/icons/folder-base-open.svg +++ b/icons/folder-base-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-base.svg b/icons/folder-base.svg index f93527ea81..0ddeff0fb0 100644 --- a/icons/folder-base.svg +++ b/icons/folder-base.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-batch-open.svg b/icons/folder-batch-open.svg index 698cb34ace..8fd5c70bef 100644 --- a/icons/folder-batch-open.svg +++ b/icons/folder-batch-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-batch.svg b/icons/folder-batch.svg index 4a57811598..fa276dae72 100644 --- a/icons/folder-batch.svg +++ b/icons/folder-batch.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-benchmark-open.svg b/icons/folder-benchmark-open.svg index db60b02b51..133cd20457 100644 --- a/icons/folder-benchmark-open.svg +++ b/icons/folder-benchmark-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-benchmark.svg b/icons/folder-benchmark.svg index e580ce1daf..cf2c92121c 100644 --- a/icons/folder-benchmark.svg +++ b/icons/folder-benchmark.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-bower-open.svg b/icons/folder-bower-open.svg index 1c7c230d52..6aaa90a2c7 100644 --- a/icons/folder-bower-open.svg +++ b/icons/folder-bower-open.svg @@ -1 +1,16 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + diff --git a/icons/folder-bower.svg b/icons/folder-bower.svg index 30d7ecd705..502378fa9a 100644 --- a/icons/folder-bower.svg +++ b/icons/folder-bower.svg @@ -1 +1,16 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + diff --git a/icons/folder-buildkite-open.svg b/icons/folder-buildkite-open.svg index 0dc9b26f0a..a76a2e8d70 100644 --- a/icons/folder-buildkite-open.svg +++ b/icons/folder-buildkite-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-buildkite.svg b/icons/folder-buildkite.svg index 55b4b72c42..6221ad841b 100644 --- a/icons/folder-buildkite.svg +++ b/icons/folder-buildkite.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-cart-open.svg b/icons/folder-cart-open.svg index dc201ce131..84fa4dcf54 100644 --- a/icons/folder-cart-open.svg +++ b/icons/folder-cart-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-cart.svg b/icons/folder-cart.svg index f1f0c520f5..362b31aa49 100644 --- a/icons/folder-cart.svg +++ b/icons/folder-cart.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-changesets-open.svg b/icons/folder-changesets-open.svg index 795ec7eb1a..ca6eda72a3 100644 --- a/icons/folder-changesets-open.svg +++ b/icons/folder-changesets-open.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-changesets.svg b/icons/folder-changesets.svg index 531502766c..f8db1a9cb8 100644 --- a/icons/folder-changesets.svg +++ b/icons/folder-changesets.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-ci-open.svg b/icons/folder-ci-open.svg index aaafd9d75d..0881991bd4 100644 --- a/icons/folder-ci-open.svg +++ b/icons/folder-ci-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ci.svg b/icons/folder-ci.svg index 9000de1890..ff26f66c83 100644 --- a/icons/folder-ci.svg +++ b/icons/folder-ci.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-circleci-open.svg b/icons/folder-circleci-open.svg index a1cedbb3fc..43748cc673 100644 --- a/icons/folder-circleci-open.svg +++ b/icons/folder-circleci-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-circleci.svg b/icons/folder-circleci.svg index def0893331..6228f577b9 100644 --- a/icons/folder-circleci.svg +++ b/icons/folder-circleci.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-class-open.svg b/icons/folder-class-open.svg index 76f885db74..e5156c5816 100644 --- a/icons/folder-class-open.svg +++ b/icons/folder-class-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-class.svg b/icons/folder-class.svg index a929b725a0..57325a12ee 100644 --- a/icons/folder-class.svg +++ b/icons/folder-class.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-client-open.svg b/icons/folder-client-open.svg index 03524c356d..5488f39303 100644 --- a/icons/folder-client-open.svg +++ b/icons/folder-client-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-client.svg b/icons/folder-client.svg index a7d96a6d90..235963467b 100644 --- a/icons/folder-client.svg +++ b/icons/folder-client.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-cluster-open.svg b/icons/folder-cluster-open.svg index 8ff361f1e0..56f28b3f3b 100644 --- a/icons/folder-cluster-open.svg +++ b/icons/folder-cluster-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-cluster.svg b/icons/folder-cluster.svg index fdcf7c8627..030d95ae48 100644 --- a/icons/folder-cluster.svg +++ b/icons/folder-cluster.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-cobol-open.svg b/icons/folder-cobol-open.svg index 908d39f646..fccab3bbfb 100644 --- a/icons/folder-cobol-open.svg +++ b/icons/folder-cobol-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-cobol.svg b/icons/folder-cobol.svg index 143f580f50..b025417ad6 100644 --- a/icons/folder-cobol.svg +++ b/icons/folder-cobol.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-command-open.svg b/icons/folder-command-open.svg index 17436ab392..2776e73d7d 100644 --- a/icons/folder-command-open.svg +++ b/icons/folder-command-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-command.svg b/icons/folder-command.svg index f2eccef5db..628b8aba92 100644 --- a/icons/folder-command.svg +++ b/icons/folder-command.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-components-open.svg b/icons/folder-components-open.svg index 5fb1fe66be..71379f3d1d 100644 --- a/icons/folder-components-open.svg +++ b/icons/folder-components-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-components.svg b/icons/folder-components.svg index d813b8d53e..ee0609eee2 100644 --- a/icons/folder-components.svg +++ b/icons/folder-components.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-config-open.svg b/icons/folder-config-open.svg index 369788cb7c..8bf497688e 100644 --- a/icons/folder-config-open.svg +++ b/icons/folder-config-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-config.svg b/icons/folder-config.svg index df9b5978d4..2fe11abf02 100644 --- a/icons/folder-config.svg +++ b/icons/folder-config.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-connection-open.svg b/icons/folder-connection-open.svg index 3951ee0b79..95646ad84a 100644 --- a/icons/folder-connection-open.svg +++ b/icons/folder-connection-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-connection.svg b/icons/folder-connection.svg index d724c73ee5..42d306bf82 100644 --- a/icons/folder-connection.svg +++ b/icons/folder-connection.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-constant-open.svg b/icons/folder-constant-open.svg index 76fe930acf..2ebf05da24 100644 --- a/icons/folder-constant-open.svg +++ b/icons/folder-constant-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-constant.svg b/icons/folder-constant.svg index 8c1fb90e09..f74322675f 100644 --- a/icons/folder-constant.svg +++ b/icons/folder-constant.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-container-open.svg b/icons/folder-container-open.svg index 3605b9102d..388b5048d0 100644 --- a/icons/folder-container-open.svg +++ b/icons/folder-container-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-container.svg b/icons/folder-container.svg index 3a4def367d..db6d262bba 100644 --- a/icons/folder-container.svg +++ b/icons/folder-container.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-content-open.svg b/icons/folder-content-open.svg index 312527e2b7..9f1b0bceee 100644 --- a/icons/folder-content-open.svg +++ b/icons/folder-content-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-content.svg b/icons/folder-content.svg index f51fbec886..612ed935d7 100644 --- a/icons/folder-content.svg +++ b/icons/folder-content.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-context-open.svg b/icons/folder-context-open.svg index fc7b49d5df..574df59504 100644 --- a/icons/folder-context-open.svg +++ b/icons/folder-context-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-context.svg b/icons/folder-context.svg index 91d7c1affc..4c2e3d275f 100644 --- a/icons/folder-context.svg +++ b/icons/folder-context.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-contract-open.svg b/icons/folder-contract-open.svg index e8de5f5d1b..5e7a5cfe37 100644 --- a/icons/folder-contract-open.svg +++ b/icons/folder-contract-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-contract.svg b/icons/folder-contract.svg index e29bdc9e03..8fa51c80b2 100644 --- a/icons/folder-contract.svg +++ b/icons/folder-contract.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-controller-open.svg b/icons/folder-controller-open.svg index 76f594208a..dfb88319b3 100644 --- a/icons/folder-controller-open.svg +++ b/icons/folder-controller-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-controller.svg b/icons/folder-controller.svg index 6220019773..3f2e0be24f 100644 --- a/icons/folder-controller.svg +++ b/icons/folder-controller.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-core-open.svg b/icons/folder-core-open.svg index ade3c93167..634c20aed6 100644 --- a/icons/folder-core-open.svg +++ b/icons/folder-core-open.svg @@ -1 +1,22 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-core.svg b/icons/folder-core.svg index 0a29dac579..dd27321113 100644 --- a/icons/folder-core.svg +++ b/icons/folder-core.svg @@ -1 +1,22 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-coverage-open.svg b/icons/folder-coverage-open.svg index ab8e645b7d..154f434baa 100644 --- a/icons/folder-coverage-open.svg +++ b/icons/folder-coverage-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-coverage.svg b/icons/folder-coverage.svg index fa498accf2..6be2a57496 100644 --- a/icons/folder-coverage.svg +++ b/icons/folder-coverage.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-css-open.svg b/icons/folder-css-open.svg index 16380d7a7f..7c47c50857 100644 --- a/icons/folder-css-open.svg +++ b/icons/folder-css-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-css.svg b/icons/folder-css.svg index d458b972ec..c3ea7246be 100644 --- a/icons/folder-css.svg +++ b/icons/folder-css.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-custom-open.svg b/icons/folder-custom-open.svg index 239be06933..24aea22946 100644 --- a/icons/folder-custom-open.svg +++ b/icons/folder-custom-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-custom.svg b/icons/folder-custom.svg index cb625a9aa0..df195fa942 100644 --- a/icons/folder-custom.svg +++ b/icons/folder-custom.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-cypress-open.svg b/icons/folder-cypress-open.svg index 3d39b4c43d..65269a3948 100644 --- a/icons/folder-cypress-open.svg +++ b/icons/folder-cypress-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-cypress.svg b/icons/folder-cypress.svg index 6f20384594..63f3755f29 100644 --- a/icons/folder-cypress.svg +++ b/icons/folder-cypress.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-database-open.svg b/icons/folder-database-open.svg index f0d4bdafd1..734ca2381d 100644 --- a/icons/folder-database-open.svg +++ b/icons/folder-database-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-database.svg b/icons/folder-database.svg index c94982d0a0..cd8ad98a2a 100644 --- a/icons/folder-database.svg +++ b/icons/folder-database.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-debug-open.svg b/icons/folder-debug-open.svg index 6dab939f7e..646c04d6fd 100644 --- a/icons/folder-debug-open.svg +++ b/icons/folder-debug-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-debug.svg b/icons/folder-debug.svg index 3c28955bde..75989677c4 100644 --- a/icons/folder-debug.svg +++ b/icons/folder-debug.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-decorators-open.svg b/icons/folder-decorators-open.svg index a9757d784c..1daec65538 100644 --- a/icons/folder-decorators-open.svg +++ b/icons/folder-decorators-open.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-decorators.svg b/icons/folder-decorators.svg index 7b0d9523be..750f57def9 100644 --- a/icons/folder-decorators.svg +++ b/icons/folder-decorators.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-delta-open.svg b/icons/folder-delta-open.svg index 67867b0638..20612cd50a 100644 --- a/icons/folder-delta-open.svg +++ b/icons/folder-delta-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-delta.svg b/icons/folder-delta.svg index c102e4464e..91c59308c2 100644 --- a/icons/folder-delta.svg +++ b/icons/folder-delta.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-dist-open.svg b/icons/folder-dist-open.svg index 606b96ef28..8be9909628 100644 --- a/icons/folder-dist-open.svg +++ b/icons/folder-dist-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-dist.svg b/icons/folder-dist.svg index 24677dd498..a833cee71b 100644 --- a/icons/folder-dist.svg +++ b/icons/folder-dist.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-docker-open.svg b/icons/folder-docker-open.svg index af22ea09f8..7c4a93be11 100644 --- a/icons/folder-docker-open.svg +++ b/icons/folder-docker-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-docker.svg b/icons/folder-docker.svg index f98503b275..5a51082c0d 100644 --- a/icons/folder-docker.svg +++ b/icons/folder-docker.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-docs-open.svg b/icons/folder-docs-open.svg index 333b570e0f..8b704da97f 100644 --- a/icons/folder-docs-open.svg +++ b/icons/folder-docs-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-docs.svg b/icons/folder-docs.svg index 05243641a4..bb458c3e3f 100644 --- a/icons/folder-docs.svg +++ b/icons/folder-docs.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-download-open.svg b/icons/folder-download-open.svg index 1ae0d1c349..ecc2c3bd2a 100644 --- a/icons/folder-download-open.svg +++ b/icons/folder-download-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-download.svg b/icons/folder-download.svg index e1eef482e8..8606207990 100644 --- a/icons/folder-download.svg +++ b/icons/folder-download.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-dump-open.svg b/icons/folder-dump-open.svg index b9c8ad9d35..df6bc554f8 100644 --- a/icons/folder-dump-open.svg +++ b/icons/folder-dump-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-dump.svg b/icons/folder-dump.svg index 5438dbd34e..a5b7e3643b 100644 --- a/icons/folder-dump.svg +++ b/icons/folder-dump.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-enum-open.svg b/icons/folder-enum-open.svg index 8fdbd0d82b..607d5539bb 100644 --- a/icons/folder-enum-open.svg +++ b/icons/folder-enum-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-enum.svg b/icons/folder-enum.svg index 108508616a..d58a01134c 100644 --- a/icons/folder-enum.svg +++ b/icons/folder-enum.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-environment-open.svg b/icons/folder-environment-open.svg index f31b8ce08f..05b684fee3 100644 --- a/icons/folder-environment-open.svg +++ b/icons/folder-environment-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-environment.svg b/icons/folder-environment.svg index 9ed44a358d..900fd44862 100644 --- a/icons/folder-environment.svg +++ b/icons/folder-environment.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-error-open.svg b/icons/folder-error-open.svg index 27186fc633..8e27b533b9 100644 --- a/icons/folder-error-open.svg +++ b/icons/folder-error-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-error.svg b/icons/folder-error.svg index 0a6e8eb3a8..2c14d8ba8e 100644 --- a/icons/folder-error.svg +++ b/icons/folder-error.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-event-open.svg b/icons/folder-event-open.svg index 30999f6ca9..04887b6fc9 100644 --- a/icons/folder-event-open.svg +++ b/icons/folder-event-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-event.svg b/icons/folder-event.svg index 44db4eb0f4..d7041a241e 100644 --- a/icons/folder-event.svg +++ b/icons/folder-event.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-examples-open.svg b/icons/folder-examples-open.svg index 8fad71747e..935552e24a 100644 --- a/icons/folder-examples-open.svg +++ b/icons/folder-examples-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-examples.svg b/icons/folder-examples.svg index cb70f7e1fc..835ae2c0f8 100644 --- a/icons/folder-examples.svg +++ b/icons/folder-examples.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-expo-open.svg b/icons/folder-expo-open.svg index ce862c0d94..ce3aba4af1 100644 --- a/icons/folder-expo-open.svg +++ b/icons/folder-expo-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-expo.svg b/icons/folder-expo.svg index 38cc6a5dc1..c307e3a254 100644 --- a/icons/folder-expo.svg +++ b/icons/folder-expo.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-export-open.svg b/icons/folder-export-open.svg index 55f9c8bd89..18c52f4529 100644 --- a/icons/folder-export-open.svg +++ b/icons/folder-export-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-export.svg b/icons/folder-export.svg index 9d11ed882a..ddee468f82 100644 --- a/icons/folder-export.svg +++ b/icons/folder-export.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-fastlane-open.svg b/icons/folder-fastlane-open.svg index 9adc5208f2..dd51ecdd7d 100644 --- a/icons/folder-fastlane-open.svg +++ b/icons/folder-fastlane-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-fastlane.svg b/icons/folder-fastlane.svg index bffe477644..6f295666e6 100644 --- a/icons/folder-fastlane.svg +++ b/icons/folder-fastlane.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-firebase-open.svg b/icons/folder-firebase-open.svg index c07bd0afd5..eb7a0636a1 100644 --- a/icons/folder-firebase-open.svg +++ b/icons/folder-firebase-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-firebase.svg b/icons/folder-firebase.svg index 67c7352580..4d7773f4e9 100644 --- a/icons/folder-firebase.svg +++ b/icons/folder-firebase.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-flow-open.svg b/icons/folder-flow-open.svg index 73a76d807b..5e4f222ce3 100644 --- a/icons/folder-flow-open.svg +++ b/icons/folder-flow-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-flow.svg b/icons/folder-flow.svg index 742db73497..00be3effe3 100644 --- a/icons/folder-flow.svg +++ b/icons/folder-flow.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-font-open.svg b/icons/folder-font-open.svg index b7a202d12c..d2d1867525 100644 --- a/icons/folder-font-open.svg +++ b/icons/folder-font-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-font.svg b/icons/folder-font.svg index bc98f4aca3..f16e3d4d04 100644 --- a/icons/folder-font.svg +++ b/icons/folder-font.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-functions-open.svg b/icons/folder-functions-open.svg index 59a41e138c..3092e35e9e 100644 --- a/icons/folder-functions-open.svg +++ b/icons/folder-functions-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-functions.svg b/icons/folder-functions.svg index 9c04ff2ca2..927eaf0790 100644 --- a/icons/folder-functions.svg +++ b/icons/folder-functions.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-gamemaker-open.svg b/icons/folder-gamemaker-open.svg index 081753be5a..04bebdc44c 100644 --- a/icons/folder-gamemaker-open.svg +++ b/icons/folder-gamemaker-open.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-gamemaker.svg b/icons/folder-gamemaker.svg index 4a18d32ed9..bf2686877e 100644 --- a/icons/folder-gamemaker.svg +++ b/icons/folder-gamemaker.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-generator-open.svg b/icons/folder-generator-open.svg index f53c955446..101648cb44 100644 --- a/icons/folder-generator-open.svg +++ b/icons/folder-generator-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-generator.svg b/icons/folder-generator.svg index baaef6b803..eb9e93c572 100644 --- a/icons/folder-generator.svg +++ b/icons/folder-generator.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-git-open.svg b/icons/folder-git-open.svg index 26def43125..54510dbe3f 100644 --- a/icons/folder-git-open.svg +++ b/icons/folder-git-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-git.svg b/icons/folder-git.svg index 4977492da6..a7d1054685 100644 --- a/icons/folder-git.svg +++ b/icons/folder-git.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-github-open.svg b/icons/folder-github-open.svg index 4e60cf1f7c..c0859b44cb 100644 --- a/icons/folder-github-open.svg +++ b/icons/folder-github-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-github.svg b/icons/folder-github.svg index 6371a45cfa..f80ed32556 100644 --- a/icons/folder-github.svg +++ b/icons/folder-github.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-gitlab-open.svg b/icons/folder-gitlab-open.svg index 983f65c275..da0c559e32 100644 --- a/icons/folder-gitlab-open.svg +++ b/icons/folder-gitlab-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-gitlab.svg b/icons/folder-gitlab.svg index e974edd00d..ce26697dc5 100644 --- a/icons/folder-gitlab.svg +++ b/icons/folder-gitlab.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-global-open.svg b/icons/folder-global-open.svg index d0506c7860..dc93dbdc8d 100644 --- a/icons/folder-global-open.svg +++ b/icons/folder-global-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-global.svg b/icons/folder-global.svg index 260f6a71a2..13b7692cc2 100644 --- a/icons/folder-global.svg +++ b/icons/folder-global.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-godot-open.svg b/icons/folder-godot-open.svg index f2ed217d8a..8ca98ce010 100644 --- a/icons/folder-godot-open.svg +++ b/icons/folder-godot-open.svg @@ -1,2 +1,7 @@ - - + + + + + + + diff --git a/icons/folder-godot.svg b/icons/folder-godot.svg index 2630842765..d1bd307d47 100644 --- a/icons/folder-godot.svg +++ b/icons/folder-godot.svg @@ -1,8 +1,7 @@ - - - - - - - + + + + + + diff --git a/icons/folder-gradle-open.svg b/icons/folder-gradle-open.svg index 4718d78c83..a6aae37fa1 100644 --- a/icons/folder-gradle-open.svg +++ b/icons/folder-gradle-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-gradle.svg b/icons/folder-gradle.svg index f12a50c03e..2c19ae9570 100644 --- a/icons/folder-gradle.svg +++ b/icons/folder-gradle.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-graphql-open.svg b/icons/folder-graphql-open.svg index 60da86a1d0..f4caa220fc 100644 --- a/icons/folder-graphql-open.svg +++ b/icons/folder-graphql-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-graphql.svg b/icons/folder-graphql.svg index fbb5e7514c..adf80fabd4 100644 --- a/icons/folder-graphql.svg +++ b/icons/folder-graphql.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-guard-open.svg b/icons/folder-guard-open.svg index 4db3ba8264..10598f5f84 100644 --- a/icons/folder-guard-open.svg +++ b/icons/folder-guard-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-guard.svg b/icons/folder-guard.svg index d8af2265e9..a7837dd9a9 100644 --- a/icons/folder-guard.svg +++ b/icons/folder-guard.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-gulp-open.svg b/icons/folder-gulp-open.svg index 18fdc9054a..883959788a 100644 --- a/icons/folder-gulp-open.svg +++ b/icons/folder-gulp-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-gulp.svg b/icons/folder-gulp.svg index 0634fe1093..9a61c5e6df 100644 --- a/icons/folder-gulp.svg +++ b/icons/folder-gulp.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-helper-open.svg b/icons/folder-helper-open.svg index ebe629a030..3e544ca199 100644 --- a/icons/folder-helper-open.svg +++ b/icons/folder-helper-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-helper.svg b/icons/folder-helper.svg index 2d3937a2fc..3b3a4192e7 100644 --- a/icons/folder-helper.svg +++ b/icons/folder-helper.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-home-open.svg b/icons/folder-home-open.svg index 13b993e2af..2c8c1b62ce 100644 --- a/icons/folder-home-open.svg +++ b/icons/folder-home-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-home.svg b/icons/folder-home.svg index 2658c4a9a9..494e4e354b 100644 --- a/icons/folder-home.svg +++ b/icons/folder-home.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-hook-open.svg b/icons/folder-hook-open.svg index 8cd454a63c..4f673a58ac 100644 --- a/icons/folder-hook-open.svg +++ b/icons/folder-hook-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-hook.svg b/icons/folder-hook.svg index cf3ef932e5..8614af6e77 100644 --- a/icons/folder-hook.svg +++ b/icons/folder-hook.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-husky-open.svg b/icons/folder-husky-open.svg index 7c1888b25a..70165aa505 100644 --- a/icons/folder-husky-open.svg +++ b/icons/folder-husky-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-husky.svg b/icons/folder-husky.svg index d212d19d21..b3db111ca9 100644 --- a/icons/folder-husky.svg +++ b/icons/folder-husky.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-i18n-open.svg b/icons/folder-i18n-open.svg index 784137e5fe..5eb149a6f2 100644 --- a/icons/folder-i18n-open.svg +++ b/icons/folder-i18n-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-i18n.svg b/icons/folder-i18n.svg index bde4f45dd1..a1d09cd6bc 100644 --- a/icons/folder-i18n.svg +++ b/icons/folder-i18n.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-images-open.svg b/icons/folder-images-open.svg index 4fb34fc497..6ac26502bc 100644 --- a/icons/folder-images-open.svg +++ b/icons/folder-images-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-images.svg b/icons/folder-images.svg index e0cebe1e81..6e2370f626 100644 --- a/icons/folder-images.svg +++ b/icons/folder-images.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-import-open.svg b/icons/folder-import-open.svg index 4f264abd22..3786c0b2d1 100644 --- a/icons/folder-import-open.svg +++ b/icons/folder-import-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-import.svg b/icons/folder-import.svg index eadd24056f..7ee5a64f82 100644 --- a/icons/folder-import.svg +++ b/icons/folder-import.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-include-open.svg b/icons/folder-include-open.svg index d3e1717bf9..226092cebf 100644 --- a/icons/folder-include-open.svg +++ b/icons/folder-include-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-include.svg b/icons/folder-include.svg index 1ac129030b..34b7588fac 100644 --- a/icons/folder-include.svg +++ b/icons/folder-include.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-intellij-open.svg b/icons/folder-intellij-open.svg index 18b45a6abf..a2fa93082d 100644 --- a/icons/folder-intellij-open.svg +++ b/icons/folder-intellij-open.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-intellij-open_light.svg b/icons/folder-intellij-open_light.svg index f877ae6116..168a38bcd0 100644 --- a/icons/folder-intellij-open_light.svg +++ b/icons/folder-intellij-open_light.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-intellij.svg b/icons/folder-intellij.svg index 2620843d83..7956aa7fb6 100644 --- a/icons/folder-intellij.svg +++ b/icons/folder-intellij.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-intellij_light.svg b/icons/folder-intellij_light.svg index 6d241277d1..e940482b85 100644 --- a/icons/folder-intellij_light.svg +++ b/icons/folder-intellij_light.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/folder-interface-open.svg b/icons/folder-interface-open.svg index 38083b1abd..e13cc536c2 100644 --- a/icons/folder-interface-open.svg +++ b/icons/folder-interface-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-interface.svg b/icons/folder-interface.svg index 286a555626..1f547669d2 100644 --- a/icons/folder-interface.svg +++ b/icons/folder-interface.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ios-open.svg b/icons/folder-ios-open.svg index e11b973ae3..d986b9608d 100644 --- a/icons/folder-ios-open.svg +++ b/icons/folder-ios-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-ios.svg b/icons/folder-ios.svg index dc5cf848f8..df9ba7d3d6 100644 --- a/icons/folder-ios.svg +++ b/icons/folder-ios.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-java-open.svg b/icons/folder-java-open.svg index 8c5fcf39d0..aa80fddf81 100644 --- a/icons/folder-java-open.svg +++ b/icons/folder-java-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-java.svg b/icons/folder-java.svg index 801812c7e4..50c6c9d9f5 100644 --- a/icons/folder-java.svg +++ b/icons/folder-java.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-javascript-open.svg b/icons/folder-javascript-open.svg index 5bbdf1e8b0..8e5aa8a298 100644 --- a/icons/folder-javascript-open.svg +++ b/icons/folder-javascript-open.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/folder-javascript.svg b/icons/folder-javascript.svg index 3a31ff843c..e1b839bc35 100644 --- a/icons/folder-javascript.svg +++ b/icons/folder-javascript.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/folder-jinja-open.svg b/icons/folder-jinja-open.svg index 24beb96509..edb00c3b12 100644 --- a/icons/folder-jinja-open.svg +++ b/icons/folder-jinja-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-jinja-open_light.svg b/icons/folder-jinja-open_light.svg index dc82d7adae..092b250e31 100644 --- a/icons/folder-jinja-open_light.svg +++ b/icons/folder-jinja-open_light.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-jinja.svg b/icons/folder-jinja.svg index b9a87702da..051175169d 100644 --- a/icons/folder-jinja.svg +++ b/icons/folder-jinja.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-jinja_light.svg b/icons/folder-jinja_light.svg index 1fecddfc39..b734dffb69 100644 --- a/icons/folder-jinja_light.svg +++ b/icons/folder-jinja_light.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-job-open.svg b/icons/folder-job-open.svg index 3272041732..84e131dc77 100644 --- a/icons/folder-job-open.svg +++ b/icons/folder-job-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-job.svg b/icons/folder-job.svg index cbb946da9f..0e25f91c1b 100644 --- a/icons/folder-job.svg +++ b/icons/folder-job.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-json-open.svg b/icons/folder-json-open.svg index e7905dd1da..6f9170964d 100644 --- a/icons/folder-json-open.svg +++ b/icons/folder-json-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-json.svg b/icons/folder-json.svg index 470aaf3629..51bd149d64 100644 --- a/icons/folder-json.svg +++ b/icons/folder-json.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-keys-open.svg b/icons/folder-keys-open.svg index a8695c49f0..3f168f460b 100644 --- a/icons/folder-keys-open.svg +++ b/icons/folder-keys-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-keys.svg b/icons/folder-keys.svg index 3018c93cbd..7068a201b9 100644 --- a/icons/folder-keys.svg +++ b/icons/folder-keys.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-kubernetes-open.svg b/icons/folder-kubernetes-open.svg index 7e85ea58f1..56ee7cd963 100644 --- a/icons/folder-kubernetes-open.svg +++ b/icons/folder-kubernetes-open.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-kubernetes.svg b/icons/folder-kubernetes.svg index fa7c7eb32f..f2b0339122 100644 --- a/icons/folder-kubernetes.svg +++ b/icons/folder-kubernetes.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-layout-open.svg b/icons/folder-layout-open.svg index def5f5292b..baf54d4ca0 100644 --- a/icons/folder-layout-open.svg +++ b/icons/folder-layout-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-layout.svg b/icons/folder-layout.svg index 2fe296f811..474d974d60 100644 --- a/icons/folder-layout.svg +++ b/icons/folder-layout.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-less-open.svg b/icons/folder-less-open.svg index de940dfa65..8ddeb6b431 100644 --- a/icons/folder-less-open.svg +++ b/icons/folder-less-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-less.svg b/icons/folder-less.svg index b031c37e88..005be5361e 100644 --- a/icons/folder-less.svg +++ b/icons/folder-less.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-lib-open.svg b/icons/folder-lib-open.svg index 5e336706b6..67ba25cfc2 100644 --- a/icons/folder-lib-open.svg +++ b/icons/folder-lib-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-lib.svg b/icons/folder-lib.svg index 6cb7b78d30..83b192c3e3 100644 --- a/icons/folder-lib.svg +++ b/icons/folder-lib.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-linux-open.svg b/icons/folder-linux-open.svg index 595e9932fa..417ae8f36e 100644 --- a/icons/folder-linux-open.svg +++ b/icons/folder-linux-open.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-linux.svg b/icons/folder-linux.svg index 967c9eab02..4030ebed0a 100644 --- a/icons/folder-linux.svg +++ b/icons/folder-linux.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-log-open.svg b/icons/folder-log-open.svg index 29bd94ac93..a46c3b81ef 100644 --- a/icons/folder-log-open.svg +++ b/icons/folder-log-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-log.svg b/icons/folder-log.svg index 5f9c261111..ce844bed15 100644 --- a/icons/folder-log.svg +++ b/icons/folder-log.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-lottie-open.svg b/icons/folder-lottie-open.svg index 85a4ad4460..22f33069e9 100644 --- a/icons/folder-lottie-open.svg +++ b/icons/folder-lottie-open.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-lottie.svg b/icons/folder-lottie.svg index e543b8e311..1fbc74fd51 100644 --- a/icons/folder-lottie.svg +++ b/icons/folder-lottie.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-lua-open.svg b/icons/folder-lua-open.svg index f3311ae181..c5202ca3e9 100644 --- a/icons/folder-lua-open.svg +++ b/icons/folder-lua-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-lua.svg b/icons/folder-lua.svg index 627a79db5a..4f2af41457 100644 --- a/icons/folder-lua.svg +++ b/icons/folder-lua.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-macos-open.svg b/icons/folder-macos-open.svg index 5f2f438998..b711d80b43 100644 --- a/icons/folder-macos-open.svg +++ b/icons/folder-macos-open.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-macos.svg b/icons/folder-macos.svg index 45ff353a2f..da5e9fe974 100644 --- a/icons/folder-macos.svg +++ b/icons/folder-macos.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-mail-open.svg b/icons/folder-mail-open.svg index 36a4916a2c..3c86962e61 100644 --- a/icons/folder-mail-open.svg +++ b/icons/folder-mail-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-mail.svg b/icons/folder-mail.svg index 17b508a331..ada85e58b8 100644 --- a/icons/folder-mail.svg +++ b/icons/folder-mail.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-mappings-open.svg b/icons/folder-mappings-open.svg index f2ed89527e..d917c73d53 100644 --- a/icons/folder-mappings-open.svg +++ b/icons/folder-mappings-open.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/folder-mappings.svg b/icons/folder-mappings.svg index f946086cce..a775db7692 100644 --- a/icons/folder-mappings.svg +++ b/icons/folder-mappings.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/folder-markdown-open.svg b/icons/folder-markdown-open.svg index 8956311d61..9f38addbb8 100644 --- a/icons/folder-markdown-open.svg +++ b/icons/folder-markdown-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-markdown.svg b/icons/folder-markdown.svg index 3db696e0e2..242e2dad2f 100644 --- a/icons/folder-markdown.svg +++ b/icons/folder-markdown.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-mercurial-open.svg b/icons/folder-mercurial-open.svg index d374e459af..87ac705a74 100644 --- a/icons/folder-mercurial-open.svg +++ b/icons/folder-mercurial-open.svg @@ -1,5 +1,8 @@ - - - - - + + + + + + + + diff --git a/icons/folder-mercurial.svg b/icons/folder-mercurial.svg index a4f1aa9f0c..175aed87a2 100644 --- a/icons/folder-mercurial.svg +++ b/icons/folder-mercurial.svg @@ -1,2 +1,8 @@ - - + + + + + + + + diff --git a/icons/folder-messages-open.svg b/icons/folder-messages-open.svg index 1cf463d23e..a9959156b7 100644 --- a/icons/folder-messages-open.svg +++ b/icons/folder-messages-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-messages.svg b/icons/folder-messages.svg index 5c1a50e3f3..833e29f84c 100644 --- a/icons/folder-messages.svg +++ b/icons/folder-messages.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-meta-open.svg b/icons/folder-meta-open.svg index 5bc37086b8..fa17eab04d 100644 --- a/icons/folder-meta-open.svg +++ b/icons/folder-meta-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-meta.svg b/icons/folder-meta.svg index cf8e344f53..58d61013b4 100644 --- a/icons/folder-meta.svg +++ b/icons/folder-meta.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-middleware-open.svg b/icons/folder-middleware-open.svg index ca5d4494e5..4cbc22365e 100644 --- a/icons/folder-middleware-open.svg +++ b/icons/folder-middleware-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-middleware.svg b/icons/folder-middleware.svg index efcdaddb7d..685ee11c94 100644 --- a/icons/folder-middleware.svg +++ b/icons/folder-middleware.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-mjml-open.svg b/icons/folder-mjml-open.svg index 9f6180e70b..db88d648a5 100644 --- a/icons/folder-mjml-open.svg +++ b/icons/folder-mjml-open.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/folder-mjml.svg b/icons/folder-mjml.svg index b5ab5e1baa..fc43f22602 100644 --- a/icons/folder-mjml.svg +++ b/icons/folder-mjml.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/folder-mobile-open.svg b/icons/folder-mobile-open.svg index dbaf81a901..601d98a250 100644 --- a/icons/folder-mobile-open.svg +++ b/icons/folder-mobile-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-mobile.svg b/icons/folder-mobile.svg index 9f0db3cdd0..bd85418631 100644 --- a/icons/folder-mobile.svg +++ b/icons/folder-mobile.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-mock-open.svg b/icons/folder-mock-open.svg index 97af6aaeeb..3b9765b091 100644 --- a/icons/folder-mock-open.svg +++ b/icons/folder-mock-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-mock.svg b/icons/folder-mock.svg index ea6493ea6c..e5baf6468a 100644 --- a/icons/folder-mock.svg +++ b/icons/folder-mock.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-mojo-open.svg b/icons/folder-mojo-open.svg index b925c68690..06b067cc1f 100644 --- a/icons/folder-mojo-open.svg +++ b/icons/folder-mojo-open.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-mojo.svg b/icons/folder-mojo.svg index 85259ba939..73432da600 100644 --- a/icons/folder-mojo.svg +++ b/icons/folder-mojo.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-moon-open.svg b/icons/folder-moon-open.svg index d05107fb02..c9d56fa37f 100644 --- a/icons/folder-moon-open.svg +++ b/icons/folder-moon-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-moon.svg b/icons/folder-moon.svg index b70814a608..2625c0c3c7 100644 --- a/icons/folder-moon.svg +++ b/icons/folder-moon.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-netlify-open.svg b/icons/folder-netlify-open.svg index e2a7c1c9ee..edfaa39fb5 100644 --- a/icons/folder-netlify-open.svg +++ b/icons/folder-netlify-open.svg @@ -1,5 +1,12 @@ - - - - + + + + + + + + + + + diff --git a/icons/folder-netlify.svg b/icons/folder-netlify.svg index 087c89e695..0d8976ef5f 100644 --- a/icons/folder-netlify.svg +++ b/icons/folder-netlify.svg @@ -1,2 +1,12 @@ - - + + + + + + + + + + + + diff --git a/icons/folder-next-open.svg b/icons/folder-next-open.svg index 1ba2943b22..0136d617ba 100644 --- a/icons/folder-next-open.svg +++ b/icons/folder-next-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-next.svg b/icons/folder-next.svg index c154f4fba8..ddd7f27ca1 100644 --- a/icons/folder-next.svg +++ b/icons/folder-next.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-actions-open.svg b/icons/folder-ngrx-actions-open.svg index a492977f5b..f774f81c67 100644 --- a/icons/folder-ngrx-actions-open.svg +++ b/icons/folder-ngrx-actions-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-actions.svg b/icons/folder-ngrx-actions.svg index 155a94db34..4994abd020 100644 --- a/icons/folder-ngrx-actions.svg +++ b/icons/folder-ngrx-actions.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-effects-open.svg b/icons/folder-ngrx-effects-open.svg index f8ccd39cea..04f87cc3d0 100644 --- a/icons/folder-ngrx-effects-open.svg +++ b/icons/folder-ngrx-effects-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-effects.svg b/icons/folder-ngrx-effects.svg index 1291fd7733..5fe5e3545d 100644 --- a/icons/folder-ngrx-effects.svg +++ b/icons/folder-ngrx-effects.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-entities-open.svg b/icons/folder-ngrx-entities-open.svg index 582f337a72..8cb539af3b 100644 --- a/icons/folder-ngrx-entities-open.svg +++ b/icons/folder-ngrx-entities-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-entities.svg b/icons/folder-ngrx-entities.svg index 34b7b3b846..d2e40c47d2 100644 --- a/icons/folder-ngrx-entities.svg +++ b/icons/folder-ngrx-entities.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-reducer-open.svg b/icons/folder-ngrx-reducer-open.svg index 6f1ad2cfaf..7184677e65 100644 --- a/icons/folder-ngrx-reducer-open.svg +++ b/icons/folder-ngrx-reducer-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-reducer.svg b/icons/folder-ngrx-reducer.svg index 9390d25757..8fe569e90c 100644 --- a/icons/folder-ngrx-reducer.svg +++ b/icons/folder-ngrx-reducer.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-selectors-open.svg b/icons/folder-ngrx-selectors-open.svg index 54ff938f77..966e35dbdc 100644 --- a/icons/folder-ngrx-selectors-open.svg +++ b/icons/folder-ngrx-selectors-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-selectors.svg b/icons/folder-ngrx-selectors.svg index 8acad717e9..530b97c2ff 100644 --- a/icons/folder-ngrx-selectors.svg +++ b/icons/folder-ngrx-selectors.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-state-open.svg b/icons/folder-ngrx-state-open.svg index 042e23de18..3d1c89e334 100644 --- a/icons/folder-ngrx-state-open.svg +++ b/icons/folder-ngrx-state-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-state.svg b/icons/folder-ngrx-state.svg index def67528af..a77064f2b9 100644 --- a/icons/folder-ngrx-state.svg +++ b/icons/folder-ngrx-state.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-store-open.svg b/icons/folder-ngrx-store-open.svg index e355a2a899..802732754d 100644 --- a/icons/folder-ngrx-store-open.svg +++ b/icons/folder-ngrx-store-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-ngrx-store.svg b/icons/folder-ngrx-store.svg index 5fc8be628b..e042fc68cc 100644 --- a/icons/folder-ngrx-store.svg +++ b/icons/folder-ngrx-store.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-node-open.svg b/icons/folder-node-open.svg index d482477f63..0440419570 100644 --- a/icons/folder-node-open.svg +++ b/icons/folder-node-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-node.svg b/icons/folder-node.svg index 5d0c119472..d7ca12b4ef 100644 --- a/icons/folder-node.svg +++ b/icons/folder-node.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-nuxt-open.svg b/icons/folder-nuxt-open.svg index 05e20eb896..3903c5bc83 100644 --- a/icons/folder-nuxt-open.svg +++ b/icons/folder-nuxt-open.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons/folder-nuxt.svg b/icons/folder-nuxt.svg index be07cd478b..07b6d6e49e 100644 --- a/icons/folder-nuxt.svg +++ b/icons/folder-nuxt.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons/folder-other-open.svg b/icons/folder-other-open.svg index 6cda70c633..cca9eaeed8 100644 --- a/icons/folder-other-open.svg +++ b/icons/folder-other-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-other.svg b/icons/folder-other.svg index b36ac7738c..a30e8aacb3 100644 --- a/icons/folder-other.svg +++ b/icons/folder-other.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-packages-open.svg b/icons/folder-packages-open.svg index 3531c04bd9..a23de83f68 100644 --- a/icons/folder-packages-open.svg +++ b/icons/folder-packages-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-packages.svg b/icons/folder-packages.svg index 2a90f8f60c..db75c2d033 100644 --- a/icons/folder-packages.svg +++ b/icons/folder-packages.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-pdf-open.svg b/icons/folder-pdf-open.svg index 65befcf60f..7e35e280dc 100644 --- a/icons/folder-pdf-open.svg +++ b/icons/folder-pdf-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-pdf.svg b/icons/folder-pdf.svg index 818ad43cdb..16c0b8feb2 100644 --- a/icons/folder-pdf.svg +++ b/icons/folder-pdf.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-pdm-open.svg b/icons/folder-pdm-open.svg index 6fd291f7d4..950449f1d8 100644 --- a/icons/folder-pdm-open.svg +++ b/icons/folder-pdm-open.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-pdm.svg b/icons/folder-pdm.svg index 31e930aaff..3baa996fd6 100644 --- a/icons/folder-pdm.svg +++ b/icons/folder-pdm.svg @@ -1 +1,4 @@ - + + + + diff --git a/icons/folder-php-open.svg b/icons/folder-php-open.svg index 883d6cc49a..c25aa45185 100644 --- a/icons/folder-php-open.svg +++ b/icons/folder-php-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-php.svg b/icons/folder-php.svg index dc62c79f4a..83c83a4178 100644 --- a/icons/folder-php.svg +++ b/icons/folder-php.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-phpmailer-open.svg b/icons/folder-phpmailer-open.svg index 4342c69a64..f16f684464 100644 --- a/icons/folder-phpmailer-open.svg +++ b/icons/folder-phpmailer-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-phpmailer.svg b/icons/folder-phpmailer.svg index dcc3cf4eb9..a01b24c98f 100644 --- a/icons/folder-phpmailer.svg +++ b/icons/folder-phpmailer.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-pipe-open.svg b/icons/folder-pipe-open.svg index 3677c99b5b..fd2192306e 100644 --- a/icons/folder-pipe-open.svg +++ b/icons/folder-pipe-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-pipe.svg b/icons/folder-pipe.svg index 3bfb174dbf..21488e18e8 100644 --- a/icons/folder-pipe.svg +++ b/icons/folder-pipe.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-plastic-open.svg b/icons/folder-plastic-open.svg index f24309879e..2480f7293a 100644 --- a/icons/folder-plastic-open.svg +++ b/icons/folder-plastic-open.svg @@ -1,8 +1,7 @@ - - - - - - - + + + + + + diff --git a/icons/folder-plastic.svg b/icons/folder-plastic.svg index 01b5c64ad5..61b7d4d8a2 100644 --- a/icons/folder-plastic.svg +++ b/icons/folder-plastic.svg @@ -1,2 +1,7 @@ - - + + + + + + + diff --git a/icons/folder-plugin-open.svg b/icons/folder-plugin-open.svg index 01c60262c2..561f17d0c3 100644 --- a/icons/folder-plugin-open.svg +++ b/icons/folder-plugin-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-plugin.svg b/icons/folder-plugin.svg index 9899169c14..de09f8f98e 100644 --- a/icons/folder-plugin.svg +++ b/icons/folder-plugin.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-prisma-open.svg b/icons/folder-prisma-open.svg index de67d17a3f..8da86284c8 100644 --- a/icons/folder-prisma-open.svg +++ b/icons/folder-prisma-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-prisma.svg b/icons/folder-prisma.svg index ea06874bff..8f86a264f9 100644 --- a/icons/folder-prisma.svg +++ b/icons/folder-prisma.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-private-open.svg b/icons/folder-private-open.svg index e353cc3aea..eb3c1fcd7d 100644 --- a/icons/folder-private-open.svg +++ b/icons/folder-private-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-private.svg b/icons/folder-private.svg index 41d3b067ca..a35669093e 100644 --- a/icons/folder-private.svg +++ b/icons/folder-private.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-project-open.svg b/icons/folder-project-open.svg index 5b40ed0262..ad42f790b1 100644 --- a/icons/folder-project-open.svg +++ b/icons/folder-project-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-project.svg b/icons/folder-project.svg index e7aad4035b..00357ab9d3 100644 --- a/icons/folder-project.svg +++ b/icons/folder-project.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-proto-open.svg b/icons/folder-proto-open.svg index 6dbe9d617f..58e7204b47 100644 --- a/icons/folder-proto-open.svg +++ b/icons/folder-proto-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-proto.svg b/icons/folder-proto.svg index 33b1fa7aba..5775725225 100644 --- a/icons/folder-proto.svg +++ b/icons/folder-proto.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-public-open.svg b/icons/folder-public-open.svg index d995ea7357..f13c5a1015 100644 --- a/icons/folder-public-open.svg +++ b/icons/folder-public-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-public.svg b/icons/folder-public.svg index a0830a6bc8..03cb0e8e16 100644 --- a/icons/folder-public.svg +++ b/icons/folder-public.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-python-open.svg b/icons/folder-python-open.svg index 967f25a0d2..0a8f0fbd43 100644 --- a/icons/folder-python-open.svg +++ b/icons/folder-python-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-python.svg b/icons/folder-python.svg index b8d766dec3..91f6d9fb69 100644 --- a/icons/folder-python.svg +++ b/icons/folder-python.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-quasar-open.svg b/icons/folder-quasar-open.svg index 9642b83950..0b4cffc3e1 100644 --- a/icons/folder-quasar-open.svg +++ b/icons/folder-quasar-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-quasar.svg b/icons/folder-quasar.svg index f900bc6708..156d9edec1 100644 --- a/icons/folder-quasar.svg +++ b/icons/folder-quasar.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-queue-open.svg b/icons/folder-queue-open.svg index ffaeae436c..4c18e1ead2 100644 --- a/icons/folder-queue-open.svg +++ b/icons/folder-queue-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-queue.svg b/icons/folder-queue.svg index d0d69a7055..7dad66f642 100644 --- a/icons/folder-queue.svg +++ b/icons/folder-queue.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-react-components-open.svg b/icons/folder-react-components-open.svg index b902eaff3b..0e4d8a1476 100644 --- a/icons/folder-react-components-open.svg +++ b/icons/folder-react-components-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-react-components.svg b/icons/folder-react-components.svg index bff5124f20..63c258311f 100644 --- a/icons/folder-react-components.svg +++ b/icons/folder-react-components.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-redux-actions-open.svg b/icons/folder-redux-actions-open.svg index 78466e6115..49c6e19283 100644 --- a/icons/folder-redux-actions-open.svg +++ b/icons/folder-redux-actions-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-actions.svg b/icons/folder-redux-actions.svg index a0125ade63..049cc79698 100644 --- a/icons/folder-redux-actions.svg +++ b/icons/folder-redux-actions.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-reducer-open.svg b/icons/folder-redux-reducer-open.svg index 10b951003c..6c3ea14361 100644 --- a/icons/folder-redux-reducer-open.svg +++ b/icons/folder-redux-reducer-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-reducer.svg b/icons/folder-redux-reducer.svg index e5c02f6ad5..eb1b1baceb 100644 --- a/icons/folder-redux-reducer.svg +++ b/icons/folder-redux-reducer.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-selector-open.svg b/icons/folder-redux-selector-open.svg index 19b6b42549..a3e346a968 100644 --- a/icons/folder-redux-selector-open.svg +++ b/icons/folder-redux-selector-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-selector.svg b/icons/folder-redux-selector.svg index 1717722b19..20bfabdd7a 100644 --- a/icons/folder-redux-selector.svg +++ b/icons/folder-redux-selector.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-store-open.svg b/icons/folder-redux-store-open.svg index af96466d20..1f1846b1a1 100644 --- a/icons/folder-redux-store-open.svg +++ b/icons/folder-redux-store-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-redux-store.svg b/icons/folder-redux-store.svg index 4e2ca596c5..accb57e470 100644 --- a/icons/folder-redux-store.svg +++ b/icons/folder-redux-store.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-resolver-open.svg b/icons/folder-resolver-open.svg index 7fc10f436d..5a0d0ddd20 100644 --- a/icons/folder-resolver-open.svg +++ b/icons/folder-resolver-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-resolver.svg b/icons/folder-resolver.svg index 348ee11fbe..7708d34e4e 100644 --- a/icons/folder-resolver.svg +++ b/icons/folder-resolver.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-resource-open.svg b/icons/folder-resource-open.svg index 27cc9ab011..3aff2e6e30 100644 --- a/icons/folder-resource-open.svg +++ b/icons/folder-resource-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-resource.svg b/icons/folder-resource.svg index 62ef55de31..e16eda7b0f 100644 --- a/icons/folder-resource.svg +++ b/icons/folder-resource.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-review-open.svg b/icons/folder-review-open.svg index 50cd7463ef..dca55ffeae 100644 --- a/icons/folder-review-open.svg +++ b/icons/folder-review-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-review.svg b/icons/folder-review.svg index fe85cd125a..1af63e19ae 100644 --- a/icons/folder-review.svg +++ b/icons/folder-review.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-robot-open.svg b/icons/folder-robot-open.svg index 9e43cdc99d..bc2c6570ea 100644 --- a/icons/folder-robot-open.svg +++ b/icons/folder-robot-open.svg @@ -1,2 +1,8 @@ - - + + + + + + + + diff --git a/icons/folder-robot.svg b/icons/folder-robot.svg index 251d9aa90a..26a116e5f7 100644 --- a/icons/folder-robot.svg +++ b/icons/folder-robot.svg @@ -1,2 +1,8 @@ - - + + + + + + + + diff --git a/icons/folder-routes-open.svg b/icons/folder-routes-open.svg index c4807ca039..4f25038d37 100644 --- a/icons/folder-routes-open.svg +++ b/icons/folder-routes-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-routes.svg b/icons/folder-routes.svg index c2f9dd8837..9243028a14 100644 --- a/icons/folder-routes.svg +++ b/icons/folder-routes.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-rules-open.svg b/icons/folder-rules-open.svg index dccbe44c23..7b7dc58053 100644 --- a/icons/folder-rules-open.svg +++ b/icons/folder-rules-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-rules.svg b/icons/folder-rules.svg index 0b53b34c1d..bb04e311de 100644 --- a/icons/folder-rules.svg +++ b/icons/folder-rules.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-sass-open.svg b/icons/folder-sass-open.svg index 9d11364fd5..d87a908a1e 100644 --- a/icons/folder-sass-open.svg +++ b/icons/folder-sass-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-sass.svg b/icons/folder-sass.svg index af01147efb..add43f1996 100644 --- a/icons/folder-sass.svg +++ b/icons/folder-sass.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-scala-open.svg b/icons/folder-scala-open.svg index 8da29fb5ca..cfcf60f8c8 100644 --- a/icons/folder-scala-open.svg +++ b/icons/folder-scala-open.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/folder-scala.svg b/icons/folder-scala.svg index e27a6d5e18..6141f46876 100644 --- a/icons/folder-scala.svg +++ b/icons/folder-scala.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/folder-scripts-open.svg b/icons/folder-scripts-open.svg index 93d426bfda..c6b7c477e6 100644 --- a/icons/folder-scripts-open.svg +++ b/icons/folder-scripts-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-scripts.svg b/icons/folder-scripts.svg index 4855aa5621..60659cfbb5 100644 --- a/icons/folder-scripts.svg +++ b/icons/folder-scripts.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-secure-open.svg b/icons/folder-secure-open.svg index a7802699a0..97dcd5e5e8 100644 --- a/icons/folder-secure-open.svg +++ b/icons/folder-secure-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-secure.svg b/icons/folder-secure.svg index eb8539cbe3..a0c37b535f 100644 --- a/icons/folder-secure.svg +++ b/icons/folder-secure.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-server-open.svg b/icons/folder-server-open.svg index 253f7069dc..8e6401f97a 100644 --- a/icons/folder-server-open.svg +++ b/icons/folder-server-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-server.svg b/icons/folder-server.svg index 730d1f9981..61833493a8 100644 --- a/icons/folder-server.svg +++ b/icons/folder-server.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-serverless-open.svg b/icons/folder-serverless-open.svg index 28c1cfbb7a..6088d79f3b 100644 --- a/icons/folder-serverless-open.svg +++ b/icons/folder-serverless-open.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/folder-serverless.svg b/icons/folder-serverless.svg index 94a0786c7c..fc0733bbc3 100644 --- a/icons/folder-serverless.svg +++ b/icons/folder-serverless.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/folder-shader-open.svg b/icons/folder-shader-open.svg index f886b0c950..1f3eda4306 100644 --- a/icons/folder-shader-open.svg +++ b/icons/folder-shader-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-shader.svg b/icons/folder-shader.svg index 161cc7649d..7d61c49ff6 100644 --- a/icons/folder-shader.svg +++ b/icons/folder-shader.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-shared-open.svg b/icons/folder-shared-open.svg index d68d9f0b26..c7520ed67b 100644 --- a/icons/folder-shared-open.svg +++ b/icons/folder-shared-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-shared.svg b/icons/folder-shared.svg index 4e8363b95d..a2c873d728 100644 --- a/icons/folder-shared.svg +++ b/icons/folder-shared.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-src-open.svg b/icons/folder-src-open.svg index 4cea00ca23..99411406b2 100644 --- a/icons/folder-src-open.svg +++ b/icons/folder-src-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-src.svg b/icons/folder-src.svg index 0d582d9e99..5b78f0f494 100644 --- a/icons/folder-src.svg +++ b/icons/folder-src.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-stack-open.svg b/icons/folder-stack-open.svg index 85a337391c..98066577bc 100644 --- a/icons/folder-stack-open.svg +++ b/icons/folder-stack-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-stack.svg b/icons/folder-stack.svg index 4aa27825be..239e201a7f 100644 --- a/icons/folder-stack.svg +++ b/icons/folder-stack.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-stencil-open.svg b/icons/folder-stencil-open.svg index a9c1a5171b..88ee71466d 100644 --- a/icons/folder-stencil-open.svg +++ b/icons/folder-stencil-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-stencil.svg b/icons/folder-stencil.svg index 2874bac8d7..c61b3424f1 100644 --- a/icons/folder-stencil.svg +++ b/icons/folder-stencil.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-storybook-open.svg b/icons/folder-storybook-open.svg index ae25d6f7c8..ce43b41a80 100644 --- a/icons/folder-storybook-open.svg +++ b/icons/folder-storybook-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-storybook.svg b/icons/folder-storybook.svg index 98cc252697..fe58e51e46 100644 --- a/icons/folder-storybook.svg +++ b/icons/folder-storybook.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-stylus-open.svg b/icons/folder-stylus-open.svg index 3338c5f4a7..dbad72ece5 100644 --- a/icons/folder-stylus-open.svg +++ b/icons/folder-stylus-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-stylus.svg b/icons/folder-stylus.svg index 26546b4ec2..e105ee407b 100644 --- a/icons/folder-stylus.svg +++ b/icons/folder-stylus.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-sublime-open.svg b/icons/folder-sublime-open.svg index 31522b3fef..e8e9fd3372 100644 --- a/icons/folder-sublime-open.svg +++ b/icons/folder-sublime-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-sublime.svg b/icons/folder-sublime.svg index 0a8fa65fbc..b00981a85f 100644 --- a/icons/folder-sublime.svg +++ b/icons/folder-sublime.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-supabase-open.svg b/icons/folder-supabase-open.svg index df65ca6411..bce4c656a5 100644 --- a/icons/folder-supabase-open.svg +++ b/icons/folder-supabase-open.svg @@ -1,5 +1,4 @@ - - - - + + + diff --git a/icons/folder-supabase.svg b/icons/folder-supabase.svg index 2fad7b3bc5..495b6682e6 100644 --- a/icons/folder-supabase.svg +++ b/icons/folder-supabase.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/folder-svelte-open.svg b/icons/folder-svelte-open.svg index 3065d2ccaa..c1dae6cbec 100644 --- a/icons/folder-svelte-open.svg +++ b/icons/folder-svelte-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-svelte.svg b/icons/folder-svelte.svg index 75c7ea7e56..1e220c29c2 100644 --- a/icons/folder-svelte.svg +++ b/icons/folder-svelte.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-svg-open.svg b/icons/folder-svg-open.svg index a6bb8f72f2..d8b4b5088c 100644 --- a/icons/folder-svg-open.svg +++ b/icons/folder-svg-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-svg.svg b/icons/folder-svg.svg index 6ebc8415d4..1c3c13bb98 100644 --- a/icons/folder-svg.svg +++ b/icons/folder-svg.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-syntax-open.svg b/icons/folder-syntax-open.svg index f46b984342..5ffb815873 100644 --- a/icons/folder-syntax-open.svg +++ b/icons/folder-syntax-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-syntax.svg b/icons/folder-syntax.svg index cd2f23a9e4..a3db51d0ff 100644 --- a/icons/folder-syntax.svg +++ b/icons/folder-syntax.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-target-open.svg b/icons/folder-target-open.svg index 12a4db4aa7..d2d0bfe014 100644 --- a/icons/folder-target-open.svg +++ b/icons/folder-target-open.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-target.svg b/icons/folder-target.svg index d1233b1f01..8031e6d258 100644 --- a/icons/folder-target.svg +++ b/icons/folder-target.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/folder-taskfile-open.svg b/icons/folder-taskfile-open.svg index ab862f0e96..99cbd5d15c 100644 --- a/icons/folder-taskfile-open.svg +++ b/icons/folder-taskfile-open.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons/folder-taskfile.svg b/icons/folder-taskfile.svg index 82a6d6a30d..f20e480be7 100644 --- a/icons/folder-taskfile.svg +++ b/icons/folder-taskfile.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/icons/folder-tasks-open.svg b/icons/folder-tasks-open.svg index 0510116540..f34ab64ac2 100644 --- a/icons/folder-tasks-open.svg +++ b/icons/folder-tasks-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-tasks.svg b/icons/folder-tasks.svg index 1b9bf84081..c2da5d071a 100644 --- a/icons/folder-tasks.svg +++ b/icons/folder-tasks.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-temp-open.svg b/icons/folder-temp-open.svg index 0209840614..53006cee8d 100644 --- a/icons/folder-temp-open.svg +++ b/icons/folder-temp-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-temp.svg b/icons/folder-temp.svg index 99a8ea917e..3faeedaec1 100644 --- a/icons/folder-temp.svg +++ b/icons/folder-temp.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-template-open.svg b/icons/folder-template-open.svg index cb5312cda7..7c27b6a823 100644 --- a/icons/folder-template-open.svg +++ b/icons/folder-template-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-template.svg b/icons/folder-template.svg index 779258ad63..c5f462cda2 100644 --- a/icons/folder-template.svg +++ b/icons/folder-template.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-terraform-open.svg b/icons/folder-terraform-open.svg index c6d23d8dce..a52eca96dc 100644 --- a/icons/folder-terraform-open.svg +++ b/icons/folder-terraform-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-terraform.svg b/icons/folder-terraform.svg index 6336932641..afddea1c75 100644 --- a/icons/folder-terraform.svg +++ b/icons/folder-terraform.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-test-open.svg b/icons/folder-test-open.svg index 5b3322ed8f..0dbd3ee0ed 100644 --- a/icons/folder-test-open.svg +++ b/icons/folder-test-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-test.svg b/icons/folder-test.svg index eee40d120c..e4f91d87fa 100644 --- a/icons/folder-test.svg +++ b/icons/folder-test.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-theme-open.svg b/icons/folder-theme-open.svg index a149a42f1b..9bd6a55dd0 100644 --- a/icons/folder-theme-open.svg +++ b/icons/folder-theme-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-theme.svg b/icons/folder-theme.svg index 3c9cf40946..19cf7fdec8 100644 --- a/icons/folder-theme.svg +++ b/icons/folder-theme.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-tools-open.svg b/icons/folder-tools-open.svg index 9cd001a957..36bbf30a59 100644 --- a/icons/folder-tools-open.svg +++ b/icons/folder-tools-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-tools.svg b/icons/folder-tools.svg index 85113c63f4..aa4e2831c0 100644 --- a/icons/folder-tools.svg +++ b/icons/folder-tools.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-typescript-open.svg b/icons/folder-typescript-open.svg index 9467b6460b..afed61fe76 100644 --- a/icons/folder-typescript-open.svg +++ b/icons/folder-typescript-open.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/folder-typescript.svg b/icons/folder-typescript.svg index 754a1c7830..98c9889d44 100644 --- a/icons/folder-typescript.svg +++ b/icons/folder-typescript.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/folder-unity-open.svg b/icons/folder-unity-open.svg index ee9f951aa4..f8a9f9da6e 100644 --- a/icons/folder-unity-open.svg +++ b/icons/folder-unity-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-unity.svg b/icons/folder-unity.svg index 6c7331f474..b11e171421 100644 --- a/icons/folder-unity.svg +++ b/icons/folder-unity.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-update-open.svg b/icons/folder-update-open.svg index 0304bd8776..6d46939c45 100644 --- a/icons/folder-update-open.svg +++ b/icons/folder-update-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-update.svg b/icons/folder-update.svg index 1ce9788058..8ce5ede08f 100644 --- a/icons/folder-update.svg +++ b/icons/folder-update.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-upload-open.svg b/icons/folder-upload-open.svg index 139711191c..a0a7b673d3 100644 --- a/icons/folder-upload-open.svg +++ b/icons/folder-upload-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-upload.svg b/icons/folder-upload.svg index 4fb749914c..77f44a6661 100644 --- a/icons/folder-upload.svg +++ b/icons/folder-upload.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-utils-open.svg b/icons/folder-utils-open.svg index 9c5fa64966..66bd9ff8a2 100644 --- a/icons/folder-utils-open.svg +++ b/icons/folder-utils-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-utils.svg b/icons/folder-utils.svg index 734fd01031..480d4e2330 100644 --- a/icons/folder-utils.svg +++ b/icons/folder-utils.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vercel-open.svg b/icons/folder-vercel-open.svg index d4d99572ef..3cf954c570 100644 --- a/icons/folder-vercel-open.svg +++ b/icons/folder-vercel-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vercel.svg b/icons/folder-vercel.svg index 9f35e3eae6..cc1009b66f 100644 --- a/icons/folder-vercel.svg +++ b/icons/folder-vercel.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-verdaccio-open.svg b/icons/folder-verdaccio-open.svg index c6f21f546b..02a2d475d5 100644 --- a/icons/folder-verdaccio-open.svg +++ b/icons/folder-verdaccio-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-verdaccio.svg b/icons/folder-verdaccio.svg index 190e0e2587..1e0fcb8e0c 100644 --- a/icons/folder-verdaccio.svg +++ b/icons/folder-verdaccio.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-video-open.svg b/icons/folder-video-open.svg index 7ae4ea170c..b789e98b31 100644 --- a/icons/folder-video-open.svg +++ b/icons/folder-video-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-video.svg b/icons/folder-video.svg index 96f7421df5..2d80f647c0 100644 --- a/icons/folder-video.svg +++ b/icons/folder-video.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-views-open.svg b/icons/folder-views-open.svg index 6f78dd941d..1b66eb14df 100644 --- a/icons/folder-views-open.svg +++ b/icons/folder-views-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-views.svg b/icons/folder-views.svg index 4968104a08..50348348c9 100644 --- a/icons/folder-views.svg +++ b/icons/folder-views.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vm-open.svg b/icons/folder-vm-open.svg index 6a9e24321f..65c286918c 100644 --- a/icons/folder-vm-open.svg +++ b/icons/folder-vm-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vm.svg b/icons/folder-vm.svg index a7a2c07fcd..fd11401050 100644 --- a/icons/folder-vm.svg +++ b/icons/folder-vm.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vscode-open.svg b/icons/folder-vscode-open.svg index ccc72a4dba..ae62c9f977 100644 --- a/icons/folder-vscode-open.svg +++ b/icons/folder-vscode-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vscode.svg b/icons/folder-vscode.svg index 5b5de2661c..e7d0d46ac1 100644 --- a/icons/folder-vscode.svg +++ b/icons/folder-vscode.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-vue-directives-open.svg b/icons/folder-vue-directives-open.svg index 84e4b81c11..1a866fe6f7 100644 --- a/icons/folder-vue-directives-open.svg +++ b/icons/folder-vue-directives-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vue-directives.svg b/icons/folder-vue-directives.svg index 8fdd1fa234..4794541e82 100644 --- a/icons/folder-vue-directives.svg +++ b/icons/folder-vue-directives.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vue-open.svg b/icons/folder-vue-open.svg index de80ab2493..1808712685 100644 --- a/icons/folder-vue-open.svg +++ b/icons/folder-vue-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vue.svg b/icons/folder-vue.svg index 12bf18a9a6..0a871e9cf1 100644 --- a/icons/folder-vue.svg +++ b/icons/folder-vue.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vuepress-open.svg b/icons/folder-vuepress-open.svg index c4f7af01a1..b052968d00 100644 --- a/icons/folder-vuepress-open.svg +++ b/icons/folder-vuepress-open.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-vuepress.svg b/icons/folder-vuepress.svg index cf10884f91..71558ed295 100644 --- a/icons/folder-vuepress.svg +++ b/icons/folder-vuepress.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/folder-vuex-store-open.svg b/icons/folder-vuex-store-open.svg index 8a7b3a0086..4925535b96 100644 --- a/icons/folder-vuex-store-open.svg +++ b/icons/folder-vuex-store-open.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-vuex-store.svg b/icons/folder-vuex-store.svg index 3496beb396..1ce110005a 100644 --- a/icons/folder-vuex-store.svg +++ b/icons/folder-vuex-store.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/folder-wakatime-open.svg b/icons/folder-wakatime-open.svg index b850d1305a..d74c4aa804 100644 --- a/icons/folder-wakatime-open.svg +++ b/icons/folder-wakatime-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-wakatime.svg b/icons/folder-wakatime.svg index 790b2749d1..cc1135ddcf 100644 --- a/icons/folder-wakatime.svg +++ b/icons/folder-wakatime.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-webpack-open.svg b/icons/folder-webpack-open.svg index df53a44dc7..1ebdd49830 100644 --- a/icons/folder-webpack-open.svg +++ b/icons/folder-webpack-open.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-webpack.svg b/icons/folder-webpack.svg index ea9dfa6790..949a9ec9d1 100644 --- a/icons/folder-webpack.svg +++ b/icons/folder-webpack.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/folder-windows-open.svg b/icons/folder-windows-open.svg index c90f9b8fb7..8a656bcbc2 100644 --- a/icons/folder-windows-open.svg +++ b/icons/folder-windows-open.svg @@ -1,5 +1,9 @@ - - - - + + + + + + + + diff --git a/icons/folder-windows.svg b/icons/folder-windows.svg index 8bc16d5a56..bbb8c7e3fd 100644 --- a/icons/folder-windows.svg +++ b/icons/folder-windows.svg @@ -1,5 +1,9 @@ - - - - + + + + + + + + diff --git a/icons/folder-wordpress-open.svg b/icons/folder-wordpress-open.svg index a0043a244a..d1883c85ca 100644 --- a/icons/folder-wordpress-open.svg +++ b/icons/folder-wordpress-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-wordpress.svg b/icons/folder-wordpress.svg index 46b4bac08c..f9fd9ac136 100644 --- a/icons/folder-wordpress.svg +++ b/icons/folder-wordpress.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-yarn-open.svg b/icons/folder-yarn-open.svg index 8f00dfbbe1..f325596be0 100644 --- a/icons/folder-yarn-open.svg +++ b/icons/folder-yarn-open.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/folder-yarn.svg b/icons/folder-yarn.svg index e15cc77ed1..a4c2c03b2a 100644 --- a/icons/folder-yarn.svg +++ b/icons/folder-yarn.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/font.svg b/icons/font.svg index d134cfc056..2ebdc6bd65 100644 --- a/icons/font.svg +++ b/icons/font.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/fortran.svg b/icons/fortran.svg index 8ff9b7404f..e92d8b54ca 100644 --- a/icons/fortran.svg +++ b/icons/fortran.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/gemfile.svg b/icons/gemfile.svg index 85e1ec97ce..993c6a93d2 100644 --- a/icons/gemfile.svg +++ b/icons/gemfile.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/gemini.svg b/icons/gemini.svg index 546f5ee223..3f54002cf9 100644 --- a/icons/gemini.svg +++ b/icons/gemini.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/git.svg b/icons/git.svg index 5bfed227e7..4adb63415d 100644 --- a/icons/git.svg +++ b/icons/git.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/gitlab.svg b/icons/gitlab.svg index ab0e886c85..c782072e49 100644 --- a/icons/gitlab.svg +++ b/icons/gitlab.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/gitpod.svg b/icons/gitpod.svg index 83514157da..cce0b490aa 100644 --- a/icons/gitpod.svg +++ b/icons/gitpod.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/go-mod.svg b/icons/go-mod.svg index fdf1ccbaf1..ca750255cd 100644 --- a/icons/go-mod.svg +++ b/icons/go-mod.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/go.svg b/icons/go.svg index c795e57685..0299b59950 100644 --- a/icons/go.svg +++ b/icons/go.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/godot-assets.svg b/icons/godot-assets.svg index 1484d3ccaa..b14119a955 100644 --- a/icons/godot-assets.svg +++ b/icons/godot-assets.svg @@ -1,7 +1,4 @@ - - - - - - + + + diff --git a/icons/godot.svg b/icons/godot.svg index 0f751a2bbc..869423154c 100644 --- a/icons/godot.svg +++ b/icons/godot.svg @@ -1,7 +1,4 @@ - - - - - - + + + diff --git a/icons/gradle.svg b/icons/gradle.svg index 8c210fd6fe..f580ba7a8d 100644 --- a/icons/gradle.svg +++ b/icons/gradle.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/grain.svg b/icons/grain.svg index f4eefe041b..82a3cc9198 100644 --- a/icons/grain.svg +++ b/icons/grain.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/graphql.svg b/icons/graphql.svg index 798111ca44..88a0cd238e 100644 --- a/icons/graphql.svg +++ b/icons/graphql.svg @@ -1 +1,20 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + diff --git a/icons/gridsome.svg b/icons/gridsome.svg index 2eb3eb287b..b79544b3e9 100644 --- a/icons/gridsome.svg +++ b/icons/gridsome.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/groovy.svg b/icons/groovy.svg index 98b63d046c..9137c49b86 100644 --- a/icons/groovy.svg +++ b/icons/groovy.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/gulp.svg b/icons/gulp.svg index 8233c7c2d7..0655fb1f3b 100644 --- a/icons/gulp.svg +++ b/icons/gulp.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/h.svg b/icons/h.svg index f63d37b4e3..5cdbc0e59f 100644 --- a/icons/h.svg +++ b/icons/h.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/hack.svg b/icons/hack.svg index ffefc6fb5c..d42f8461fb 100644 --- a/icons/hack.svg +++ b/icons/hack.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/handlebars.svg b/icons/handlebars.svg index 87fbb103fb..855b309d53 100644 --- a/icons/handlebars.svg +++ b/icons/handlebars.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/hcl.svg b/icons/hcl.svg index a3e2c24ebe..afe22fd35c 100644 --- a/icons/hcl.svg +++ b/icons/hcl.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/hcl_light.svg b/icons/hcl_light.svg index 3392a072f3..28d4241b54 100644 --- a/icons/hcl_light.svg +++ b/icons/hcl_light.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/heroku.svg b/icons/heroku.svg index 17f04c9218..6f8bbd071e 100644 --- a/icons/heroku.svg +++ b/icons/heroku.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/hex.svg b/icons/hex.svg index af13d6e791..ebb43152f9 100644 --- a/icons/hex.svg +++ b/icons/hex.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/hpp.svg b/icons/hpp.svg index b627d5ef25..efdc4709a1 100644 --- a/icons/hpp.svg +++ b/icons/hpp.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/html.svg b/icons/html.svg index f6751b03eb..9989ef777d 100644 --- a/icons/html.svg +++ b/icons/html.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/http.svg b/icons/http.svg index 320acf54ec..c5682bfb7c 100644 --- a/icons/http.svg +++ b/icons/http.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/huff.svg b/icons/huff.svg index 963a4477e7..9dc6e9b1d3 100644 --- a/icons/huff.svg +++ b/icons/huff.svg @@ -1,3 +1,7 @@ - - + + + + + + diff --git a/icons/huff_light.svg b/icons/huff_light.svg index 73254a13f6..5a3e639b9c 100644 --- a/icons/huff_light.svg +++ b/icons/huff_light.svg @@ -1,3 +1,7 @@ - - + + + + + + diff --git a/icons/i18n.svg b/icons/i18n.svg index f78ae76d21..b4b4bbe0f1 100644 --- a/icons/i18n.svg +++ b/icons/i18n.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/image.svg b/icons/image.svg index 261e62cf0b..c409b5dcc6 100644 --- a/icons/image.svg +++ b/icons/image.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/istanbul.svg b/icons/istanbul.svg index 6c904df844..4dc879d1b9 100644 --- a/icons/istanbul.svg +++ b/icons/istanbul.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/jar.svg b/icons/jar.svg index d5b0b56451..bc8e6f0e82 100644 --- a/icons/jar.svg +++ b/icons/jar.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/java.svg b/icons/java.svg index 28143c7bc6..b672a22700 100644 --- a/icons/java.svg +++ b/icons/java.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/javaclass.svg b/icons/javaclass.svg index bcc9c0674a..493297b873 100644 --- a/icons/javaclass.svg +++ b/icons/javaclass.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/javascript-map.svg b/icons/javascript-map.svg index 858fef2008..f19315761c 100644 --- a/icons/javascript-map.svg +++ b/icons/javascript-map.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/javascript.svg b/icons/javascript.svg index 11ab75e834..1cf9ef89ea 100644 --- a/icons/javascript.svg +++ b/icons/javascript.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/jest.svg b/icons/jest.svg index d34c03b732..02d3e82604 100644 --- a/icons/jest.svg +++ b/icons/jest.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/jinja.svg b/icons/jinja.svg index cccc649e60..c8bea7b2f2 100644 --- a/icons/jinja.svg +++ b/icons/jinja.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/jinja_light.svg b/icons/jinja_light.svg index 677795084e..06059723e2 100644 --- a/icons/jinja_light.svg +++ b/icons/jinja_light.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/jsconfig.svg b/icons/jsconfig.svg index c0c3ac5c98..ebd2b29081 100644 --- a/icons/jsconfig.svg +++ b/icons/jsconfig.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/json.svg b/icons/json.svg index fcbe211b00..2cf450c425 100644 --- a/icons/json.svg +++ b/icons/json.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/jupyter.svg b/icons/jupyter.svg index d2d34d25b9..3a49f7f389 100644 --- a/icons/jupyter.svg +++ b/icons/jupyter.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/key.svg b/icons/key.svg index 83cf313d82..d5fedc9b8c 100644 --- a/icons/key.svg +++ b/icons/key.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/laravel.svg b/icons/laravel.svg index 68e2555863..e6dfe0a6c1 100644 --- a/icons/laravel.svg +++ b/icons/laravel.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/less.svg b/icons/less.svg index 363fa12dc1..434d274a8c 100644 --- a/icons/less.svg +++ b/icons/less.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/lib.svg b/icons/lib.svg index 943027d0be..4388efb975 100644 --- a/icons/lib.svg +++ b/icons/lib.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/lilypond.svg b/icons/lilypond.svg index e6acaf5c72..5b62a7278e 100644 --- a/icons/lilypond.svg +++ b/icons/lilypond.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/lisp.svg b/icons/lisp.svg index 2b5d17d793..9ea05b9c3d 100644 --- a/icons/lisp.svg +++ b/icons/lisp.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/livescript.svg b/icons/livescript.svg index 025cbe8280..ea61970ce3 100644 --- a/icons/livescript.svg +++ b/icons/livescript.svg @@ -1 +1,13 @@ - \ No newline at end of file + + + + + + + + + + + + + diff --git a/icons/lock.svg b/icons/lock.svg index 3e343ce89e..824435a4b2 100644 --- a/icons/lock.svg +++ b/icons/lock.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/log.svg b/icons/log.svg index a795fd6296..f7e14230d5 100644 --- a/icons/log.svg +++ b/icons/log.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/lottie.svg b/icons/lottie.svg index 37c306bd68..38bcca7a3a 100644 --- a/icons/lottie.svg +++ b/icons/lottie.svg @@ -1,3 +1,3 @@ - - + + diff --git a/icons/lua.svg b/icons/lua.svg index 9f71f8c397..622342b50a 100644 --- a/icons/lua.svg +++ b/icons/lua.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/makefile.svg b/icons/makefile.svg index 694ad2e226..135347bb81 100644 --- a/icons/makefile.svg +++ b/icons/makefile.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/markdown.svg b/icons/markdown.svg index edb3c44b99..b205f6b2cb 100644 --- a/icons/markdown.svg +++ b/icons/markdown.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/markojs.svg b/icons/markojs.svg index 31f4994e81..4750e458b6 100644 --- a/icons/markojs.svg +++ b/icons/markojs.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/mdsvex.svg b/icons/mdsvex.svg index 63117bde2e..0917343cde 100644 --- a/icons/mdsvex.svg +++ b/icons/mdsvex.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/mdx.svg b/icons/mdx.svg index 07fbb43ef2..d0d6a1471a 100644 --- a/icons/mdx.svg +++ b/icons/mdx.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/minecraft.svg b/icons/minecraft.svg index 05292c7944..ef0b342e63 100644 --- a/icons/minecraft.svg +++ b/icons/minecraft.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/mocha.svg b/icons/mocha.svg index 80d637a2ef..ca0b7201ed 100644 --- a/icons/mocha.svg +++ b/icons/mocha.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/modernizr.svg b/icons/modernizr.svg index 4262f6bf69..655f1593dd 100644 --- a/icons/modernizr.svg +++ b/icons/modernizr.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/mojo.svg b/icons/mojo.svg index 3d33d209cf..66ed9fed23 100644 --- a/icons/mojo.svg +++ b/icons/mojo.svg @@ -1,2 +1,3 @@ - - + + + diff --git a/icons/moon.svg b/icons/moon.svg index 7e3576664a..7df65f548e 100644 --- a/icons/moon.svg +++ b/icons/moon.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/mxml.svg b/icons/mxml.svg index ad5801e902..377b9d2445 100644 --- a/icons/mxml.svg +++ b/icons/mxml.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/next.svg b/icons/next.svg index 8d7057919a..3e6f853cc2 100644 --- a/icons/next.svg +++ b/icons/next.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/next_light.svg b/icons/next_light.svg index 94ee886b97..0e67aebe5d 100644 --- a/icons/next_light.svg +++ b/icons/next_light.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/nginx.svg b/icons/nginx.svg index 0fe1e3fa4f..ea8f0613d2 100644 --- a/icons/nginx.svg +++ b/icons/nginx.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/nim.svg b/icons/nim.svg index aabcec1cd0..8874bdfd4d 100644 --- a/icons/nim.svg +++ b/icons/nim.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/nodejs.svg b/icons/nodejs.svg index 007273a53a..7eefcc3b7d 100644 --- a/icons/nodejs.svg +++ b/icons/nodejs.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/nodejs_alt.svg b/icons/nodejs_alt.svg index 4bc6ba7b8c..0ca5ffee25 100644 --- a/icons/nodejs_alt.svg +++ b/icons/nodejs_alt.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/nodemon.svg b/icons/nodemon.svg index 31d5ac9859..0534d2caf8 100644 --- a/icons/nodemon.svg +++ b/icons/nodemon.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/npm.svg b/icons/npm.svg index 304221b3e5..672c98664f 100644 --- a/icons/npm.svg +++ b/icons/npm.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/nrwl.svg b/icons/nrwl.svg index 7ff54f04c5..120097940c 100644 --- a/icons/nrwl.svg +++ b/icons/nrwl.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/nuget.svg b/icons/nuget.svg index 03b7160a40..0c1ce6e6f7 100644 --- a/icons/nuget.svg +++ b/icons/nuget.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/nunjucks.svg b/icons/nunjucks.svg index ac4e1769ff..b03df2c7c8 100644 --- a/icons/nunjucks.svg +++ b/icons/nunjucks.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/nuxt.svg b/icons/nuxt.svg index 10db8e82d2..a760160f85 100644 --- a/icons/nuxt.svg +++ b/icons/nuxt.svg @@ -1,3 +1,3 @@ - - + + diff --git a/icons/objective-c.svg b/icons/objective-c.svg index 97147a997e..68e84b0ff1 100644 --- a/icons/objective-c.svg +++ b/icons/objective-c.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/icons/objective-cpp.svg b/icons/objective-cpp.svg index c100dec087..77f06c4698 100644 --- a/icons/objective-cpp.svg +++ b/icons/objective-cpp.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/opa.svg b/icons/opa.svg index a17a51b441..433921c990 100644 --- a/icons/opa.svg +++ b/icons/opa.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/pawn.svg b/icons/pawn.svg index ff35f85b45..cf18f97abf 100644 --- a/icons/pawn.svg +++ b/icons/pawn.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/pdf.svg b/icons/pdf.svg index e3aa7fcef5..b6fed562eb 100644 --- a/icons/pdf.svg +++ b/icons/pdf.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/php_elephant.svg b/icons/php_elephant.svg index 6eff008d0a..f414e3f42f 100644 --- a/icons/php_elephant.svg +++ b/icons/php_elephant.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/php_elephant_pink.svg b/icons/php_elephant_pink.svg index 0427bf896f..5e522e7765 100644 --- a/icons/php_elephant_pink.svg +++ b/icons/php_elephant_pink.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/pipeline.svg b/icons/pipeline.svg index 273b93e500..120abe267a 100644 --- a/icons/pipeline.svg +++ b/icons/pipeline.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/pnpm.svg b/icons/pnpm.svg index ade8e59073..c3f7728134 100644 --- a/icons/pnpm.svg +++ b/icons/pnpm.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/icons/pnpm_light.svg b/icons/pnpm_light.svg index 9df72835fa..891068f7ae 100644 --- a/icons/pnpm_light.svg +++ b/icons/pnpm_light.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/icons/poetry.svg b/icons/poetry.svg index 8f06a34b32..442c1c517f 100644 --- a/icons/poetry.svg +++ b/icons/poetry.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/postcss.svg b/icons/postcss.svg index 0268bef7d1..89f0050633 100644 --- a/icons/postcss.svg +++ b/icons/postcss.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/powerpoint.svg b/icons/powerpoint.svg index 89a5e3cd90..b658ddb63b 100644 --- a/icons/powerpoint.svg +++ b/icons/powerpoint.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/powershell.svg b/icons/powershell.svg index d4ae9c312d..958d238ad3 100644 --- a/icons/powershell.svg +++ b/icons/powershell.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/prisma.svg b/icons/prisma.svg index 2ba98518d0..e7768b29e2 100644 --- a/icons/prisma.svg +++ b/icons/prisma.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/processing.svg b/icons/processing.svg index 8b5af0db69..222d1ac44a 100644 --- a/icons/processing.svg +++ b/icons/processing.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/proto.svg b/icons/proto.svg index 0ad97bf7df..7fa8209039 100644 --- a/icons/proto.svg +++ b/icons/proto.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/puppet.svg b/icons/puppet.svg index e5592ddf1c..9ad4441222 100644 --- a/icons/puppet.svg +++ b/icons/puppet.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/purescript.svg b/icons/purescript.svg index cc1f5179a1..18481215a9 100644 --- a/icons/purescript.svg +++ b/icons/purescript.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/python-misc.svg b/icons/python-misc.svg index 8e936f2cb4..8d83775381 100644 --- a/icons/python-misc.svg +++ b/icons/python-misc.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/raml.svg b/icons/raml.svg index 29491f3436..6c59c7e571 100644 --- a/icons/raml.svg +++ b/icons/raml.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/rc.svg b/icons/rc.svg index 28a99916df..6e5fcf0133 100644 --- a/icons/rc.svg +++ b/icons/rc.svg @@ -1,2 +1,4 @@ - - + + + + diff --git a/icons/react.svg b/icons/react.svg index d275b6a83c..525247a8a8 100644 --- a/icons/react.svg +++ b/icons/react.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/react_ts.svg b/icons/react_ts.svg index 8a0018f5b1..5051002171 100644 --- a/icons/react_ts.svg +++ b/icons/react_ts.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/readme.svg b/icons/readme.svg index b16bff4a80..a8dad23cf8 100644 --- a/icons/readme.svg +++ b/icons/readme.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/reason.svg b/icons/reason.svg index 3b0c0b4837..26d2f76bc0 100644 --- a/icons/reason.svg +++ b/icons/reason.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/remix.svg b/icons/remix.svg index 58cebea4bc..011cafb5f2 100644 --- a/icons/remix.svg +++ b/icons/remix.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/remix_light.svg b/icons/remix_light.svg index d38039a132..5aeab58bc2 100644 --- a/icons/remix_light.svg +++ b/icons/remix_light.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/replit.svg b/icons/replit.svg index 222ff5b4c4..40e4f53d6a 100644 --- a/icons/replit.svg +++ b/icons/replit.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/rescript-interface.svg b/icons/rescript-interface.svg index c47601e50e..1a2b749479 100644 --- a/icons/rescript-interface.svg +++ b/icons/rescript-interface.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/rescript.svg b/icons/rescript.svg index 175f58dec3..11be682f44 100644 --- a/icons/rescript.svg +++ b/icons/rescript.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/riot.svg b/icons/riot.svg index d3d2d104f2..2855a9140a 100644 --- a/icons/riot.svg +++ b/icons/riot.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/roadmap.svg b/icons/roadmap.svg index 39c969f844..3019597722 100644 --- a/icons/roadmap.svg +++ b/icons/roadmap.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/robot.svg b/icons/robot.svg index a8bda813bf..1e4ea6dfc6 100644 --- a/icons/robot.svg +++ b/icons/robot.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/robots.svg b/icons/robots.svg index 63eb6ad54e..986ef44bae 100644 --- a/icons/robots.svg +++ b/icons/robots.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/rome.svg b/icons/rome.svg index 7c54ddeb26..8e8386b5ff 100644 --- a/icons/rome.svg +++ b/icons/rome.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/routing.svg b/icons/routing.svg index b150305551..fbf92ed717 100644 --- a/icons/routing.svg +++ b/icons/routing.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/rubocop.svg b/icons/rubocop.svg index a3cddd1b6d..817936fe80 100644 --- a/icons/rubocop.svg +++ b/icons/rubocop.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/rubocop_light.svg b/icons/rubocop_light.svg index cb36f274d6..2befc83c64 100644 --- a/icons/rubocop_light.svg +++ b/icons/rubocop_light.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/rust.svg b/icons/rust.svg index 06582d6590..decd0c33ce 100644 --- a/icons/rust.svg +++ b/icons/rust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/san.svg b/icons/san.svg index 3df518f3d1..8a058ef299 100644 --- a/icons/san.svg +++ b/icons/san.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/sass.svg b/icons/sass.svg index 0b92c09213..d25fd7e7cf 100644 --- a/icons/sass.svg +++ b/icons/sass.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/scala.svg b/icons/scala.svg index 9955827860..189bf54b76 100644 --- a/icons/scala.svg +++ b/icons/scala.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/search.svg b/icons/search.svg index 7c57bcb42a..ffd44df6dd 100644 --- a/icons/search.svg +++ b/icons/search.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/serverless.svg b/icons/serverless.svg index e6cecc5dd0..3ca63c2f03 100644 --- a/icons/serverless.svg +++ b/icons/serverless.svg @@ -1 +1,14 @@ - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/icons/settings.svg b/icons/settings.svg index eaba79b656..f5d917c7ab 100644 --- a/icons/settings.svg +++ b/icons/settings.svg @@ -1 +1,9 @@ - \ No newline at end of file + + + + + + + + + diff --git a/icons/siyuan.svg b/icons/siyuan.svg index 607f2d5b85..36889d03d9 100644 --- a/icons/siyuan.svg +++ b/icons/siyuan.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/slim.svg b/icons/slim.svg index 3f42dcd5d4..bd55d185b3 100644 --- a/icons/slim.svg +++ b/icons/slim.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/smarty.svg b/icons/smarty.svg index ad8b3b23cb..768131949f 100644 --- a/icons/smarty.svg +++ b/icons/smarty.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/sml.svg b/icons/sml.svg index e53b6a3144..38f63e9224 100644 --- a/icons/sml.svg +++ b/icons/sml.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/snyk.svg b/icons/snyk.svg index bc8cc5075c..f3aac3ccb4 100644 --- a/icons/snyk.svg +++ b/icons/snyk.svg @@ -1 +1,16 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + diff --git a/icons/stencil.svg b/icons/stencil.svg index a236bf6b03..8dcb412e60 100644 --- a/icons/stencil.svg +++ b/icons/stencil.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/storybook.svg b/icons/storybook.svg index 09e93a6459..9facfc13ab 100644 --- a/icons/storybook.svg +++ b/icons/storybook.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/sublime.svg b/icons/sublime.svg index e206e8e98a..2e11684439 100644 --- a/icons/sublime.svg +++ b/icons/sublime.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/supabase.svg b/icons/supabase.svg index 304874ea82..29eec80639 100644 --- a/icons/supabase.svg +++ b/icons/supabase.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/icons/svg.svg b/icons/svg.svg index f423f2347d..ab7c261f20 100644 --- a/icons/svg.svg +++ b/icons/svg.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/svgr.svg b/icons/svgr.svg index fba622cbd5..412c0926cb 100644 --- a/icons/svgr.svg +++ b/icons/svgr.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/swc.svg b/icons/swc.svg index 533bba083b..2d537ccb6b 100644 --- a/icons/swc.svg +++ b/icons/swc.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/table.svg b/icons/table.svg index 4542be8925..0f679a80dc 100644 --- a/icons/table.svg +++ b/icons/table.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/tailwindcss.svg b/icons/tailwindcss.svg index 7b04eb41cb..b6c8821150 100644 --- a/icons/tailwindcss.svg +++ b/icons/tailwindcss.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/taskfile.svg b/icons/taskfile.svg index 4857dc169c..b731715913 100644 --- a/icons/taskfile.svg +++ b/icons/taskfile.svg @@ -1,7 +1,7 @@ - - - - - - + + + + + + diff --git a/icons/teal.svg b/icons/teal.svg index 64772b8444..818e2ad8a4 100644 --- a/icons/teal.svg +++ b/icons/teal.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/templ.svg b/icons/templ.svg index 3088f77841..1714196373 100644 --- a/icons/templ.svg +++ b/icons/templ.svg @@ -1,4 +1,5 @@ - - - + + + + diff --git a/icons/template.svg b/icons/template.svg index bbce608b0f..142e2cc26e 100644 --- a/icons/template.svg +++ b/icons/template.svg @@ -1 +1,27 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/terraform.svg b/icons/terraform.svg index db12eed150..23dd556927 100644 --- a/icons/terraform.svg +++ b/icons/terraform.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/test-js.svg b/icons/test-js.svg index 41a94be89f..db99c27869 100644 --- a/icons/test-js.svg +++ b/icons/test-js.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/test-jsx.svg b/icons/test-jsx.svg index 246a676a8b..dde573dfa4 100644 --- a/icons/test-jsx.svg +++ b/icons/test-jsx.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/test-ts.svg b/icons/test-ts.svg index b28c3a0dd6..817892d462 100644 --- a/icons/test-ts.svg +++ b/icons/test-ts.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/tex.svg b/icons/tex.svg index ebf9380f74..d41967e480 100644 --- a/icons/tex.svg +++ b/icons/tex.svg @@ -1 +1,10 @@ - \ No newline at end of file + + + + + + + + + + diff --git a/icons/textlint.svg b/icons/textlint.svg index ff7ac82981..74ba3c156d 100644 --- a/icons/textlint.svg +++ b/icons/textlint.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/tilt.svg b/icons/tilt.svg index 5bbd954079..b5eedb4dc0 100644 --- a/icons/tilt.svg +++ b/icons/tilt.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/tobi.svg b/icons/tobi.svg index 8390aac3c5..2310c0b990 100644 --- a/icons/tobi.svg +++ b/icons/tobi.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/tobimake.svg b/icons/tobimake.svg index 65b43a3f94..b542416b00 100644 --- a/icons/tobimake.svg +++ b/icons/tobimake.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/todo.svg b/icons/todo.svg index a0e6c54bdf..d336b4d11b 100644 --- a/icons/todo.svg +++ b/icons/todo.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/tree.svg b/icons/tree.svg index f0d4d33520..ace0ad9b17 100644 --- a/icons/tree.svg +++ b/icons/tree.svg @@ -1 +1,8 @@ - \ No newline at end of file + + + + + + + + diff --git a/icons/tsconfig.svg b/icons/tsconfig.svg index 1afa498818..31f4b2755f 100644 --- a/icons/tsconfig.svg +++ b/icons/tsconfig.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/icons/tune.svg b/icons/tune.svg index cd7d1abaa1..fd174bdff0 100644 --- a/icons/tune.svg +++ b/icons/tune.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/typescript-def.svg b/icons/typescript-def.svg index 6812657b2e..685a01114d 100644 --- a/icons/typescript-def.svg +++ b/icons/typescript-def.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/typescript.svg b/icons/typescript.svg index c6145d5c05..0753e0db58 100644 --- a/icons/typescript.svg +++ b/icons/typescript.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/typst.svg b/icons/typst.svg index 205068276c..31ade4fa4e 100644 --- a/icons/typst.svg +++ b/icons/typst.svg @@ -1,2 +1,3 @@ - - + + + diff --git a/icons/unocss.svg b/icons/unocss.svg index 6f545e4761..f186f04bf9 100644 --- a/icons/unocss.svg +++ b/icons/unocss.svg @@ -1,12 +1,5 @@ - - - - - - - - - - - + + + + diff --git a/icons/url.svg b/icons/url.svg index 7dd2a323bb..c5aef08e35 100644 --- a/icons/url.svg +++ b/icons/url.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/vercel.svg b/icons/vercel.svg index c41cbf6804..a24d415882 100644 --- a/icons/vercel.svg +++ b/icons/vercel.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/vercel_light.svg b/icons/vercel_light.svg index b3d3d590d0..e991cb3453 100644 --- a/icons/vercel_light.svg +++ b/icons/vercel_light.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/verilog.svg b/icons/verilog.svg index b37ef0cca0..8b5c13f81a 100644 --- a/icons/verilog.svg +++ b/icons/verilog.svg @@ -1 +1,12 @@ - \ No newline at end of file + + + + + + + + + + + + diff --git a/icons/video.svg b/icons/video.svg index fba4b81b06..c3890c8d58 100644 --- a/icons/video.svg +++ b/icons/video.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/vim.svg b/icons/vim.svg index 86f6dfe81f..48dbd013a7 100644 --- a/icons/vim.svg +++ b/icons/vim.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/virtual.svg b/icons/virtual.svg index 5ec9fa692c..eebebf5dcf 100644 --- a/icons/virtual.svg +++ b/icons/virtual.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/visualstudio.svg b/icons/visualstudio.svg index 1999166d80..2451fca276 100644 --- a/icons/visualstudio.svg +++ b/icons/visualstudio.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/vite.svg b/icons/vite.svg index 18938bbaee..bcb133feaa 100644 --- a/icons/vite.svg +++ b/icons/vite.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/vitest.svg b/icons/vitest.svg index 6ad6330b3b..6d1397a4c2 100644 --- a/icons/vitest.svg +++ b/icons/vitest.svg @@ -1,6 +1,5 @@ - - - - - + + + + diff --git a/icons/vscode.svg b/icons/vscode.svg index 6dd23f396c..1b4e9e024b 100644 --- a/icons/vscode.svg +++ b/icons/vscode.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/vue-config.svg b/icons/vue-config.svg index d661d1343f..cc06c39a46 100644 --- a/icons/vue-config.svg +++ b/icons/vue-config.svg @@ -1 +1,7 @@ - \ No newline at end of file + + + + + + + diff --git a/icons/wallaby.svg b/icons/wallaby.svg index 504250370c..5903191dc9 100644 --- a/icons/wallaby.svg +++ b/icons/wallaby.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/webassembly.svg b/icons/webassembly.svg index d727fe6976..9a87fbd879 100644 --- a/icons/webassembly.svg +++ b/icons/webassembly.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/wepy.svg b/icons/wepy.svg index fab68bbf81..a5d59bba5d 100644 --- a/icons/wepy.svg +++ b/icons/wepy.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/windicss.svg b/icons/windicss.svg index 35276dd303..ffce1155bb 100644 --- a/icons/windicss.svg +++ b/icons/windicss.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + diff --git a/icons/word.svg b/icons/word.svg index eee8c68547..b719b3cfba 100644 --- a/icons/word.svg +++ b/icons/word.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/xaml.svg b/icons/xaml.svg index 30bf6881d1..1988d14221 100644 --- a/icons/xaml.svg +++ b/icons/xaml.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/icons/xml.svg b/icons/xml.svg index b8f41e63b9..88eb0387ba 100644 --- a/icons/xml.svg +++ b/icons/xml.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/yaml.svg b/icons/yaml.svg index fd5b8c984f..85b7926854 100644 --- a/icons/yaml.svg +++ b/icons/yaml.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/yarn.svg b/icons/yarn.svg index 413052a956..7d6c91a217 100644 --- a/icons/yarn.svg +++ b/icons/yarn.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/icons/zig.svg b/icons/zig.svg index 1f23d7fa3b..590277bba9 100644 --- a/icons/zig.svg +++ b/icons/zig.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + diff --git a/icons/zip.svg b/icons/zip.svg index ac0682be48..335fbd7429 100644 --- a/icons/zip.svg +++ b/icons/zip.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + diff --git a/images/how-tos/aligned-vs-missaligned.png b/images/how-tos/aligned-vs-missaligned.png new file mode 100644 index 0000000000..43945773ad Binary files /dev/null and b/images/how-tos/aligned-vs-missaligned.png differ diff --git a/images/how-tos/blurry-issue.png b/images/how-tos/blurry-issue.png new file mode 100644 index 0000000000..33120a2865 Binary files /dev/null and b/images/how-tos/blurry-issue.png differ diff --git a/images/how-tos/elephant-less-detail.svg b/images/how-tos/elephant-less-detail.svg new file mode 100644 index 0000000000..f414e3f42f --- /dev/null +++ b/images/how-tos/elephant-less-detail.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/images/how-tos/elephant-result.png b/images/how-tos/elephant-result.png new file mode 100644 index 0000000000..706c8d504c Binary files /dev/null and b/images/how-tos/elephant-result.png differ diff --git a/images/how-tos/elephant-too-much-detail.svg b/images/how-tos/elephant-too-much-detail.svg new file mode 100644 index 0000000000..6eff008d0a --- /dev/null +++ b/images/how-tos/elephant-too-much-detail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/elephant-with-grid.svg b/images/how-tos/elephant-with-grid.svg new file mode 100644 index 0000000000..3c5a033b43 --- /dev/null +++ b/images/how-tos/elephant-with-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/folder-icon-parts.png b/images/how-tos/folder-icon-parts.png deleted file mode 100644 index bdd4133422..0000000000 Binary files a/images/how-tos/folder-icon-parts.png and /dev/null differ diff --git a/images/how-tos/folder-icon-parts.svg b/images/how-tos/folder-icon-parts.svg new file mode 100644 index 0000000000..8586783e63 --- /dev/null +++ b/images/how-tos/folder-icon-parts.svg @@ -0,0 +1 @@ +BackgroundMotive \ No newline at end of file diff --git a/images/how-tos/missaligned-icon.svg b/images/how-tos/missaligned-icon.svg new file mode 100644 index 0000000000..ade4f4962e --- /dev/null +++ b/images/how-tos/missaligned-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/missaligned-result.svg b/images/how-tos/missaligned-result.svg new file mode 100644 index 0000000000..3c6a03cd26 --- /dev/null +++ b/images/how-tos/missaligned-result.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/pixel-perfect-icon.svg b/images/how-tos/pixel-perfect-icon.svg new file mode 100644 index 0000000000..fe85f736c7 --- /dev/null +++ b/images/how-tos/pixel-perfect-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/svg-folder-icon-with-correct-colors.png b/images/how-tos/svg-folder-icon-with-correct-colors.png deleted file mode 100644 index f710bc2272..0000000000 Binary files a/images/how-tos/svg-folder-icon-with-correct-colors.png and /dev/null differ diff --git a/images/how-tos/svg-folder-icon-with-correct-colors.svg b/images/how-tos/svg-folder-icon-with-correct-colors.svg new file mode 100644 index 0000000000..a60c71539a --- /dev/null +++ b/images/how-tos/svg-folder-icon-with-correct-colors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/how-tos/svg-folder-icon-with-wrong-colors.png b/images/how-tos/svg-folder-icon-with-wrong-colors.png deleted file mode 100644 index e2451e53d8..0000000000 Binary files a/images/how-tos/svg-folder-icon-with-wrong-colors.png and /dev/null differ diff --git a/images/how-tos/svg-folder-icon-with-wrong-colors.svg b/images/how-tos/svg-folder-icon-with-wrong-colors.svg new file mode 100644 index 0000000000..56b1494e13 --- /dev/null +++ b/images/how-tos/svg-folder-icon-with-wrong-colors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/generator/fileGenerator.ts b/src/icons/generator/fileGenerator.ts index f192b213f9..d04285413d 100644 --- a/src/icons/generator/fileGenerator.ts +++ b/src/icons/generator/fileGenerator.ts @@ -205,7 +205,7 @@ export const generateFileIcons = (color: string | undefined) => { } const fileIcon = - 'M13 9h5.5L13 3.5V9M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m5 2H6v16h12v-9h-7V4z'; + 'M25.669,10.702,16,2H8A2,2,0,0,0,6,4V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V11.44537A1,1,0,0,0,25.669,10.702ZM24,28H8V4h6V14H24Zm0-16H16V4.69073l8,7.2Z'; writeSVGFiles('file', getSVG(getPath(fileIcon, color))); }; diff --git a/src/icons/generator/folderGenerator.ts b/src/icons/generator/folderGenerator.ts index 7304fa6558..1559aa3456 100644 --- a/src/icons/generator/folderGenerator.ts +++ b/src/icons/generator/folderGenerator.ts @@ -295,13 +295,13 @@ export const generateFolderIcons = (color: string | undefined) => { } const folderIcon = - 'M10 4H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8c0-1.11-.9-2-2-2h-8l-2-2z'; + 'M13.84376,7.53645l-1.28749-1.0729A2,2,0,0,0,11.27591,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H15.12412A2,2,0,0,1,13.84376,7.53645Z'; const folderIconOpen = - 'M19 20H4c-1.11 0-2-.9-2-2V6c0-1.11.89-2 2-2h6l2 2h7a2 2 0 0 1 2 2H4v10l2.14-8h17.07l-2.28 8.5c-.23.87-1.01 1.5-1.93 1.5z'; + 'M28.96692,12H9.44152a2,2,0,0,0-1.89737,1.36754L4,24V10H28a2,2,0,0,0-2-2H15.1241a2,2,0,0,1-1.28038-.46357L12.5563,6.46357A2,2,0,0,0,11.27592,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H26l4.80523-11.21213A2,2,0,0,0,28.96692,12Z'; const rootFolderIcon = - 'M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 5a5 5 0 0 0-5 5 5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5z'; + 'M16,5A11,11,0,1,1,5,16,11.01245,11.01245,0,0,1,16,5m0-3A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,8a6,6,0,1,0,6,6A6,6,0,0,0,16,10Z'; const rootFolderIconOpen = - 'M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2z'; + 'M16,5A11,11,0,1,1,5,16,11.01245,11.01245,0,0,1,16,5m0-3A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z'; writeSVGFiles('folder', getSVG(getPath(folderIcon, color))); writeSVGFiles('folder-open', getSVG(getPath(folderIconOpen, color))); @@ -311,8 +311,8 @@ export const generateFolderIcons = (color: string | undefined) => { export const getPath = (d: string, color: string) => ``; -export const getSVG = (path: string) => - `${path}`; +export const getSVG = (path: string, viewBoxSize: number = 32) => + `${path}`; export const writeSVGFiles = (iconName: string, svg: string) => { let iconsPath;