diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index def75999..fc56ba95 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -13,7 +13,7 @@ body: attributes: label: solar_iconkit version description: Which version are you using? (find it in your `pubspec.lock`) - placeholder: 1.0.0 + placeholder: 1.1.0 validations: required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9f012e75..3b8d29f8 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -8,4 +8,4 @@ contact_links: about: See documentation, versions, and API reference. - name: Interactive icon browser url: https://solar-icons-web.vercel.app - about: Preview all 1,231 icons and copy Flutter widget code. + about: Preview every icon and copy Flutter widget code. diff --git a/CHANGELOG.md b/CHANGELOG.md index 1370e519..a96272d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,72 @@ All notable changes to this package are documented here. The format loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the package uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.0] — 2026-08-14 + +Resync with upstream Solar. The catalog grows from 1,231 to **1,247 icons** +(7,482 SVG variants). No constant was removed, and no consumer code needs to +change to keep compiling — but eleven icons now render a different drawing, +so read the visual-changes section before upgrading. + +### Added + +- **11 brand-new icons**: `cart-4`, `document-2`, `forward-right`, + `list-vertical`, `logout`, `logout-2`, `mirror-2`, `notebook-2`, + `record-audio-circle`, `star-2`, `vanity`. +- **`SolarIcons.legacyAliases`** — a 56-entry map from every retired icon name + to its current replacement. +- **`SolarIcon.resolveName`** — resolves a possibly-retired name to the name + actually shipped as an asset. `SolarIcon.assetPath` now applies it, so raw + strings such as `SolarIcon('magnifer')` keep working after the rename. + +### Changed + +- **11 icons changed appearance under the same name.** Solar redrew them + upstream. Six had their original drawing moved to a new name: + + | Constant | 1.0.x drawing now lives at | + | --- | --- | + | `home` | `house` | + | `reorder` | `reorder2` | + | `stars` | `stars2` | + | `cup` | `mug` | + | `bill` | `bill2` | + | `scale` | `scaling` | + + Five more were redrawn with no replacement name: `phone`, `smartphone-2`, + `volume-knob`, `keyboard`, `cloud-snowfall-minimalistic`. Pin `1.0.3` to keep + the old artwork for those. The other 1,236 icons are visually unchanged — + verified by rendering every icon at both versions and diffing the pixels. + +- **56 misspelled names corrected upstream**, including `magnifer` → + `magnifier`, `spedometer-*` → `speedometer-*`, `condicioner` → + `conditioner`, `siderbar` → `sidebar`, `recive-*` → `receive-*`, + `*-favourite` → `*-favorite`, `plain` → `plane`, `4k` → `four-k`, and + `winrar` → `win-rar`. + +- **Asset bundle shrank to ~5.7 MB** (from ~6.1 MB) despite carrying 16 more + icons, thanks to a fresh SVGO 4 pass. Rendering is unaffected: a sampled + pre/post raster comparison showed a maximum difference of 2.2 %, entirely + anti-aliasing. + +- **Golden reference images regenerated.** The `home-2` goldens drifted by 23 + pixels out of 480,000 (max channel delta 5/255) after the SVGO pass. + +### Deprecated + +- The 56 retired names remain available as `@Deprecated` constants whose value + is the replacement name, so existing code keeps rendering the same glyph + while the analyzer points at the new spelling. They are excluded from + `SolarIcons.all`. + +### Notes + +- `tool/fetch_icons.py` no longer regenerates the catalog purely from Iconify's + browsable listing. That listing omits renamed and hidden entries, so a naive + refresh would have silently deleted 56 shipped constants. The script now + diffs against the committed catalog, maps each retired name to its + replacement, and aborts rather than dropping any name a release has shipped. + ## [1.0.3] — 2026-08-02 ### Fixed diff --git a/README.md b/README.md index 1555af5c..fe504319 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/sovanken/solar_iconkit/blob/main/LICENSE) [![Ko-fi](https://img.shields.io/badge/Support-Ko--fi-FF5E5B?logo=ko-fi&logoColor=white)](https://ko-fi.com/sovanken) -A Flutter package that bundles the entire Solar icon set — **1,231 icons across 6 native styles** (7,386 SVG variants total) — behind a single, type-safe widget API. Zero setup, works offline, integrates with Flutter's `IconTheme` conventions. +A Flutter package that bundles the entire Solar icon set — **1,247 icons across 6 native styles** (7,482 SVG variants total) — behind a single, type-safe widget API. Zero setup, works offline, integrates with Flutter's `IconTheme` conventions. - **Browse icons**: - **pub.dev**: @@ -18,7 +18,7 @@ A Flutter package that bundles the entire Solar icon set — **1,231 icons acros - Six native Solar styles: `linear`, `outline`, `broken`, `bold`, `lineDuotone`, `boldDuotone`. - One widget: `SolarIcon(name, style: ..., size: ..., color: ...)`. -- ~1,231 generated `SolarIcons.` constants for autocomplete-safe references. +- ~1,247 generated `SolarIcons.` constants for autocomplete-safe references. - Bundled SVG assets in `assets/icons/`. No network access at runtime, works fully offline. - Full `IconTheme` integration — size, color, and opacity resolve from the ambient theme when unset on the widget. - Deterministic asset resolution — `packages/solar_iconkit/assets/icons/{style}/{name}.svg`. @@ -42,6 +42,7 @@ A Flutter package that bundles the entire Solar icon set — **1,231 icons acros - [Option C: Git dependency](#option-c-git-dependency) - [Option D: Version pin with dependency\_overrides](#option-d-version-pin-with-dependency_overrides) - [After installing](#after-installing) + - [Upgrading from 1.0.x](#upgrading-from-10x) - [Quick start](#quick-start) - [API reference](#api-reference) - [SolarIcon widget](#solaricon-widget) @@ -167,7 +168,7 @@ Verify the install: import 'package:solar_iconkit/solar_iconkit.dart'; void main() { - print(SolarIcons.all.length); // 1231 + print(SolarIcons.all.length); // 1247 print(SolarIcons.home2); // 'home-2' print(SolarIconStyle.values.length); // 6 } @@ -175,6 +176,37 @@ void main() { --- +## Upgrading from 1.0.x + +Release 1.1.0 resynced the catalog with upstream Solar. Nothing was removed and no code changes are required to compile — but **eleven icons now render a different drawing under the same name**, because Solar redrew them upstream. + +Six of them had their original drawing moved to a new name. If you want to keep exactly what 1.0.x rendered, switch to the name on the right: + +| If you used | 1.0.x drawing now lives at | +| --- | --- | +| `SolarIcons.home` | `SolarIcons.house` | +| `SolarIcons.reorder` | `SolarIcons.reorder2` | +| `SolarIcons.stars` | `SolarIcons.stars2` | +| `SolarIcons.cup` | `SolarIcons.mug` | +| `SolarIcons.bill` | `SolarIcons.bill2` | +| `SolarIcons.scale` | `SolarIcons.scaling` | + +Five more were redrawn with no replacement name — `phone`, `smartphone-2`, `volume-knob`, `keyboard`, and `cloud-snowfall-minimalistic`. To keep the old artwork for these, pin `solar_iconkit: 1.0.3`. + +The remaining 1,236 icons are visually unchanged. + +**Renamed constants.** Solar also corrected 56 misspelled names (`magnifer` → `magnifier`, `spedometer-*` → `speedometer-*`, `condicioner` → `conditioner`, and so on). Every old constant still exists and still renders the same glyph — it is marked `@Deprecated` and resolves to the new name, so the analyzer will point you at the replacement: + +```dart +SolarIcon(SolarIcons.magnifer) // still works, deprecation hint in the IDE +SolarIcon(SolarIcons.magnifier) // preferred +SolarIcon('magnifer') // raw strings are redirected too +``` + +See [`SolarIcons.legacyAliases`](#solaricons-constants) for the full old-to-new table. + +--- + ## Quick start Three commonly used forms: @@ -279,7 +311,7 @@ for (final style in SolarIconStyle.values) { ### SolarIcons constants -Generated file: `lib/src/solar_iconkit_data.g.dart`. Exposes every base icon name as a `static const String` on the `SolarIcons` class, plus an `all` list of every name sorted alphabetically. +Generated file: `lib/src/solar_iconkit_data.g.dart`. Exposes every base icon name as a `static const String` on the `SolarIcons` class, plus an `all` list of every name sorted alphabetically and a `legacyAliases` map of retired names. ```dart class SolarIcons { @@ -288,13 +320,28 @@ class SolarIcons { static const String heart = 'heart'; static const String rocket = 'rocket'; static const String caseIcon = 'case'; // reserved-word rename - static const String i4k = '4k'; // digit prefix rename - // ... 1,231 total constants + static const String fourK = 'four-k'; // was `4k` before Solar renamed it + // ... 1,247 total constants static const List all = [/* every icon */]; + + /// Retired name -> current name, for the 56 icons Solar has renamed. + static const Map legacyAliases = { + 'magnifer': 'magnifier', + '4k': 'four-k', + // ... + }; } ``` +Retired names also survive as `@Deprecated` constants whose value is the +replacement, so old code keeps compiling and rendering the same glyph: + +```dart +SolarIcons.magnifer // == 'magnifier', flagged by the analyzer +SolarIcon('magnifer') // raw strings are redirected via legacyAliases +``` + **Naming rules applied by the generator:** | Input | Output identifier | Rule | @@ -769,7 +816,7 @@ Call from an `initState` or a route enter callback for icons visible in the firs ### Reducing bundle size -The full asset bundle is about **6.1 MB of actual SVG bytes** (7,386 SVGs across six styles, individually minified). Earlier releases quoted 23 MB — that number came from `du -sh` reporting filesystem block-allocation slack (each ~500-byte SVG rounds up to a 4 KB disk block); the actual on-wire content is much smaller. Compressed on the pub.dev archive: ~18 MB (which includes example app, tests, and screenshots). +The full asset bundle is about **5.7 MB of actual SVG bytes** (7,482 SVGs across six styles, individually minified). Earlier releases quoted 23 MB — that number came from `du -sh` reporting filesystem block-allocation slack (each ~500-byte SVG rounds up to a 4 KB disk block); the actual on-wire content is much smaller. Compressed on the pub.dev archive: ~18 MB (which includes example app, tests, and screenshots). Flutter's tree-shaker does not remove unreferenced assets because `SolarIcon` resolves paths at runtime — so the whole set ships by default. @@ -951,7 +998,7 @@ solar_iconkit/ │ └── solar_iconkit_data.g.dart Generated icon name constants. ├── assets/ │ └── icons/ -│ ├── linear/ Linear-style SVGs (1,231 files). +│ ├── linear/ Linear-style SVGs (1,247 files). │ ├── outline/ Outline-style SVGs. │ ├── broken/ Broken-style SVGs. │ ├── bold/ Bold-style SVGs. diff --git a/assets/icons/bold/accumulator.svg b/assets/icons/bold/accumulator.svg deleted file mode 100644 index 228ed45f..00000000 --- a/assets/icons/bold/accumulator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/adhesive-plaster-2.svg b/assets/icons/bold/adhesive-plaster-2.svg index 2aff95fd..491edbe8 100644 --- a/assets/icons/bold/adhesive-plaster-2.svg +++ b/assets/icons/bold/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/adhesive-plaster.svg b/assets/icons/bold/adhesive-plaster.svg index b19cb6dd..4cee0ecc 100644 --- a/assets/icons/bold/adhesive-plaster.svg +++ b/assets/icons/bold/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-case-open.svg b/assets/icons/bold/airbuds-case-open.svg index dd54c57d..d0829c8c 100644 --- a/assets/icons/bold/airbuds-case-open.svg +++ b/assets/icons/bold/airbuds-case-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-case.svg b/assets/icons/bold/airbuds-case.svg index 8f16deb7..c7c78ff4 100644 --- a/assets/icons/bold/airbuds-case.svg +++ b/assets/icons/bold/airbuds-case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-charge.svg b/assets/icons/bold/airbuds-charge.svg index 9dc2653c..b9b42dcc 100644 --- a/assets/icons/bold/airbuds-charge.svg +++ b/assets/icons/bold/airbuds-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-check.svg b/assets/icons/bold/airbuds-check.svg index 384a1561..35c0d764 100644 --- a/assets/icons/bold/airbuds-check.svg +++ b/assets/icons/bold/airbuds-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-left.svg b/assets/icons/bold/airbuds-left.svg index fed62e0e..be597319 100644 --- a/assets/icons/bold/airbuds-left.svg +++ b/assets/icons/bold/airbuds-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-remove.svg b/assets/icons/bold/airbuds-remove.svg index 7aab6994..1ae36f94 100644 --- a/assets/icons/bold/airbuds-remove.svg +++ b/assets/icons/bold/airbuds-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds-right.svg b/assets/icons/bold/airbuds-right.svg index fb817be9..d0e369a1 100644 --- a/assets/icons/bold/airbuds-right.svg +++ b/assets/icons/bold/airbuds-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/airbuds.svg b/assets/icons/bold/airbuds.svg index f9c91278..668f80b7 100644 --- a/assets/icons/bold/airbuds.svg +++ b/assets/icons/bold/airbuds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-add.svg b/assets/icons/bold/alarm-add.svg index c86b0d98..605f2d85 100644 --- a/assets/icons/bold/alarm-add.svg +++ b/assets/icons/bold/alarm-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-pause.svg b/assets/icons/bold/alarm-pause.svg index 8e6d0c41..5a076166 100644 --- a/assets/icons/bold/alarm-pause.svg +++ b/assets/icons/bold/alarm-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-play.svg b/assets/icons/bold/alarm-play.svg index 2af1a0b7..5a255925 100644 --- a/assets/icons/bold/alarm-play.svg +++ b/assets/icons/bold/alarm-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-remove.svg b/assets/icons/bold/alarm-remove.svg index 87e76452..9f2ea3d7 100644 --- a/assets/icons/bold/alarm-remove.svg +++ b/assets/icons/bold/alarm-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-sleep.svg b/assets/icons/bold/alarm-sleep.svg index 6e5a308e..3608e611 100644 --- a/assets/icons/bold/alarm-sleep.svg +++ b/assets/icons/bold/alarm-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm-turn-off.svg b/assets/icons/bold/alarm-turn-off.svg index 99b11be3..119cd4c3 100644 --- a/assets/icons/bold/alarm-turn-off.svg +++ b/assets/icons/bold/alarm-turn-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/alarm.svg b/assets/icons/bold/alarm.svg index 7921f5f8..753b9ee9 100644 --- a/assets/icons/bold/alarm.svg +++ b/assets/icons/bold/alarm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/album.svg b/assets/icons/bold/album.svg index 830d8c38..2eaffe24 100644 --- a/assets/icons/bold/album.svg +++ b/assets/icons/bold/album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/align-bottom.svg b/assets/icons/bold/align-bottom.svg index a0f202cb..a29a53dc 100644 --- a/assets/icons/bold/align-bottom.svg +++ b/assets/icons/bold/align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/align-horizonta-spacing.svg b/assets/icons/bold/align-horizonta-spacing.svg deleted file mode 100644 index 1b48104c..00000000 --- a/assets/icons/bold/align-horizonta-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/align-horizontal-spacing.svg b/assets/icons/bold/align-horizontal-spacing.svg new file mode 100644 index 00000000..6f37c821 --- /dev/null +++ b/assets/icons/bold/align-horizontal-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/align-left.svg b/assets/icons/bold/align-left.svg index 4ffc42ea..6cca4ce9 100644 --- a/assets/icons/bold/align-left.svg +++ b/assets/icons/bold/align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/align-right.svg b/assets/icons/bold/align-right.svg index 41b9471e..840f588e 100644 --- a/assets/icons/bold/align-right.svg +++ b/assets/icons/bold/align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/align-top.svg b/assets/icons/bold/align-top.svg index 8362aeae..6b5f3a5e 100644 --- a/assets/icons/bold/align-top.svg +++ b/assets/icons/bold/align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/align-vertical-spacing.svg b/assets/icons/bold/align-vertical-spacing.svg index f121f113..4ae7f7a0 100644 --- a/assets/icons/bold/align-vertical-spacing.svg +++ b/assets/icons/bold/align-vertical-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/archive-check.svg b/assets/icons/bold/archive-check.svg index 0b522745..efefe2b7 100644 --- a/assets/icons/bold/archive-check.svg +++ b/assets/icons/bold/archive-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/archive-down-minimalistic.svg b/assets/icons/bold/archive-down-minimalistic.svg new file mode 100644 index 00000000..edaf4761 --- /dev/null +++ b/assets/icons/bold/archive-down-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/archive-down-minimlistic.svg b/assets/icons/bold/archive-down-minimlistic.svg deleted file mode 100644 index c5d1120d..00000000 --- a/assets/icons/bold/archive-down-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/archive-down.svg b/assets/icons/bold/archive-down.svg index 755c079f..71b00182 100644 --- a/assets/icons/bold/archive-down.svg +++ b/assets/icons/bold/archive-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/archive-minimalistic.svg b/assets/icons/bold/archive-minimalistic.svg index 6a763801..bd48b8e5 100644 --- a/assets/icons/bold/archive-minimalistic.svg +++ b/assets/icons/bold/archive-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/archive-up-minimalistic.svg b/assets/icons/bold/archive-up-minimalistic.svg new file mode 100644 index 00000000..1793e77c --- /dev/null +++ b/assets/icons/bold/archive-up-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/archive-up-minimlistic.svg b/assets/icons/bold/archive-up-minimlistic.svg deleted file mode 100644 index e9ac291e..00000000 --- a/assets/icons/bold/archive-up-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/archive-up.svg b/assets/icons/bold/archive-up.svg index eaaab620..139ec06a 100644 --- a/assets/icons/bold/archive-up.svg +++ b/assets/icons/bold/archive-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/archive.svg b/assets/icons/bold/archive.svg index 8924fc8d..da02b93a 100644 --- a/assets/icons/bold/archive.svg +++ b/assets/icons/bold/archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/armchair-2.svg b/assets/icons/bold/armchair-2.svg index 528726ba..f04457df 100644 --- a/assets/icons/bold/armchair-2.svg +++ b/assets/icons/bold/armchair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/armchair.svg b/assets/icons/bold/armchair.svg index f7a0c8ba..6f09ae35 100644 --- a/assets/icons/bold/armchair.svg +++ b/assets/icons/bold/armchair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/asteroid.svg b/assets/icons/bold/asteroid.svg index cc4be3fb..6413f4f6 100644 --- a/assets/icons/bold/asteroid.svg +++ b/assets/icons/bold/asteroid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/atom.svg b/assets/icons/bold/atom.svg index 5253d15e..d23eb197 100644 --- a/assets/icons/bold/atom.svg +++ b/assets/icons/bold/atom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/backpack.svg b/assets/icons/bold/backpack.svg index 786250b8..2a3a7acb 100644 --- a/assets/icons/bold/backpack.svg +++ b/assets/icons/bold/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bag-music-2.svg b/assets/icons/bold/bag-music-2.svg index 059dfd8c..97c9e41c 100644 --- a/assets/icons/bold/bag-music-2.svg +++ b/assets/icons/bold/bag-music-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bag-music.svg b/assets/icons/bold/bag-music.svg index 37a530d9..27ac1b17 100644 --- a/assets/icons/bold/bag-music.svg +++ b/assets/icons/bold/bag-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/balloon.svg b/assets/icons/bold/balloon.svg index 455ba6a3..6b81726e 100644 --- a/assets/icons/bold/balloon.svg +++ b/assets/icons/bold/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/balls.svg b/assets/icons/bold/balls.svg index bb2d5ece..9809c17b 100644 --- a/assets/icons/bold/balls.svg +++ b/assets/icons/bold/balls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/banknote-2.svg b/assets/icons/bold/banknote-2.svg index a54338d6..8bc80c84 100644 --- a/assets/icons/bold/banknote-2.svg +++ b/assets/icons/bold/banknote-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/banknote.svg b/assets/icons/bold/banknote.svg index e2d7b3e8..9bd3b2ba 100644 --- a/assets/icons/bold/banknote.svg +++ b/assets/icons/bold/banknote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/basketball.svg b/assets/icons/bold/basketball.svg index efab0b5a..229efdf1 100644 --- a/assets/icons/bold/basketball.svg +++ b/assets/icons/bold/basketball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/battery-charge-minimalistic.svg b/assets/icons/bold/battery-charge-minimalistic.svg index 5af75ed6..e5c43caf 100644 --- a/assets/icons/bold/battery-charge-minimalistic.svg +++ b/assets/icons/bold/battery-charge-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/battery-full-minimalistic.svg b/assets/icons/bold/battery-full-minimalistic.svg index 3cb08294..fbcb00f0 100644 --- a/assets/icons/bold/battery-full-minimalistic.svg +++ b/assets/icons/bold/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/battery-half-minimalistic.svg b/assets/icons/bold/battery-half-minimalistic.svg index 26868803..808abab1 100644 --- a/assets/icons/bold/battery-half-minimalistic.svg +++ b/assets/icons/bold/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/battery-low-minimalistic.svg b/assets/icons/bold/battery-low-minimalistic.svg index bc5f0d43..0e23caff 100644 --- a/assets/icons/bold/battery-low-minimalistic.svg +++ b/assets/icons/bold/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bed.svg b/assets/icons/bold/bed.svg index 2c436b15..0f05da9f 100644 --- a/assets/icons/bold/bed.svg +++ b/assets/icons/bold/bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bedside-table-2.svg b/assets/icons/bold/bedside-table-2.svg index dbbe410c..d7b174e4 100644 --- a/assets/icons/bold/bedside-table-2.svg +++ b/assets/icons/bold/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bedside-table-3.svg b/assets/icons/bold/bedside-table-3.svg index 5533b61e..0cf6117b 100644 --- a/assets/icons/bold/bedside-table-3.svg +++ b/assets/icons/bold/bedside-table-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bedside-table-4.svg b/assets/icons/bold/bedside-table-4.svg index 75d6b3bd..48b44c6e 100644 --- a/assets/icons/bold/bedside-table-4.svg +++ b/assets/icons/bold/bedside-table-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bedside-table.svg b/assets/icons/bold/bedside-table.svg index be0dac31..50eb8dd9 100644 --- a/assets/icons/bold/bedside-table.svg +++ b/assets/icons/bold/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bell-bing.svg b/assets/icons/bold/bell-bing.svg deleted file mode 100644 index 7dd022ec..00000000 --- a/assets/icons/bold/bell-bing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/bell-off.svg b/assets/icons/bold/bell-off.svg index 49602b08..e4ec8952 100644 --- a/assets/icons/bold/bell-off.svg +++ b/assets/icons/bold/bell-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bell-ring.svg b/assets/icons/bold/bell-ring.svg new file mode 100644 index 00000000..6f159c89 --- /dev/null +++ b/assets/icons/bold/bell-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/bell.svg b/assets/icons/bold/bell.svg index d0ff646d..c471cb07 100644 --- a/assets/icons/bold/bell.svg +++ b/assets/icons/bold/bell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bicycling-round.svg b/assets/icons/bold/bicycling-round.svg index ee395dc9..56837b11 100644 --- a/assets/icons/bold/bicycling-round.svg +++ b/assets/icons/bold/bicycling-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bicycling.svg b/assets/icons/bold/bicycling.svg index ffa60c32..7b86ae1e 100644 --- a/assets/icons/bold/bicycling.svg +++ b/assets/icons/bold/bicycling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bill-2.svg b/assets/icons/bold/bill-2.svg new file mode 100644 index 00000000..69a6cca1 --- /dev/null +++ b/assets/icons/bold/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/bill.svg b/assets/icons/bold/bill.svg index 69a6cca1..4b8fce22 100644 --- a/assets/icons/bold/bill.svg +++ b/assets/icons/bold/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/black-hole-2.svg b/assets/icons/bold/black-hole-2.svg index a297f637..ab1efe4f 100644 --- a/assets/icons/bold/black-hole-2.svg +++ b/assets/icons/bold/black-hole-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/black-hole.svg b/assets/icons/bold/black-hole.svg index a6afa911..0a5686c3 100644 --- a/assets/icons/bold/black-hole.svg +++ b/assets/icons/bold/black-hole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bluetooth-circle.svg b/assets/icons/bold/bluetooth-circle.svg index b9c80ecc..58bcf10c 100644 --- a/assets/icons/bold/bluetooth-circle.svg +++ b/assets/icons/bold/bluetooth-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bluetooth-square.svg b/assets/icons/bold/bluetooth-square.svg index 69a01552..eaf1d99b 100644 --- a/assets/icons/bold/bluetooth-square.svg +++ b/assets/icons/bold/bluetooth-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bluetooth-wave.svg b/assets/icons/bold/bluetooth-wave.svg index 1bbf4372..c4cbfd5c 100644 --- a/assets/icons/bold/bluetooth-wave.svg +++ b/assets/icons/bold/bluetooth-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/body-shape.svg b/assets/icons/bold/body-shape.svg index 189c59d9..d4d51912 100644 --- a/assets/icons/bold/body-shape.svg +++ b/assets/icons/bold/body-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bomb-emoji.svg b/assets/icons/bold/bomb-emoji.svg index 79524d1c..d3b11651 100644 --- a/assets/icons/bold/bomb-emoji.svg +++ b/assets/icons/bold/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bomb-minimalistic.svg b/assets/icons/bold/bomb-minimalistic.svg index f9b1318d..2db4b7ac 100644 --- a/assets/icons/bold/bomb-minimalistic.svg +++ b/assets/icons/bold/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bomb.svg b/assets/icons/bold/bomb.svg index 269fcf9c..660990f3 100644 --- a/assets/icons/bold/bomb.svg +++ b/assets/icons/bold/bomb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bone-broken.svg b/assets/icons/bold/bone-broken.svg deleted file mode 100644 index 11b2e157..00000000 --- a/assets/icons/bold/bone-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/bone-crack.svg b/assets/icons/bold/bone-crack.svg index fcccc249..c4bd3377 100644 --- a/assets/icons/bold/bone-crack.svg +++ b/assets/icons/bold/bone-crack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bone-fracture.svg b/assets/icons/bold/bone-fracture.svg new file mode 100644 index 00000000..df254ffc --- /dev/null +++ b/assets/icons/bold/bone-fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/bonfire.svg b/assets/icons/bold/bonfire.svg index 3ad79791..acb1ea02 100644 --- a/assets/icons/bold/bonfire.svg +++ b/assets/icons/bold/bonfire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/book-2.svg b/assets/icons/bold/book-2.svg index c74a81a8..026a9dc2 100644 --- a/assets/icons/bold/book-2.svg +++ b/assets/icons/bold/book-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/book-bookmark-minimalistic.svg b/assets/icons/bold/book-bookmark-minimalistic.svg index ef46af7a..7cda4d00 100644 --- a/assets/icons/bold/book-bookmark-minimalistic.svg +++ b/assets/icons/bold/book-bookmark-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/book-bookmark.svg b/assets/icons/bold/book-bookmark.svg index da35ac4d..6ad5ce15 100644 --- a/assets/icons/bold/book-bookmark.svg +++ b/assets/icons/bold/book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/book-minimalistic.svg b/assets/icons/bold/book-minimalistic.svg index e3e8bb6f..87019409 100644 --- a/assets/icons/bold/book-minimalistic.svg +++ b/assets/icons/bold/book-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/book.svg b/assets/icons/bold/book.svg index 0310b3ec..9c140908 100644 --- a/assets/icons/bold/book.svg +++ b/assets/icons/bold/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bookmark-opened.svg b/assets/icons/bold/bookmark-opened.svg index 89b421d2..fe6a3afc 100644 --- a/assets/icons/bold/bookmark-opened.svg +++ b/assets/icons/bold/bookmark-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bookmark-square-minimalistic.svg b/assets/icons/bold/bookmark-square-minimalistic.svg index c9ebc0b0..1a611cd6 100644 --- a/assets/icons/bold/bookmark-square-minimalistic.svg +++ b/assets/icons/bold/bookmark-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bookmark-square.svg b/assets/icons/bold/bookmark-square.svg index 4eb75754..a2b064dc 100644 --- a/assets/icons/bold/bookmark-square.svg +++ b/assets/icons/bold/bookmark-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/boombox.svg b/assets/icons/bold/boombox.svg index 30358a53..e3ca9f3d 100644 --- a/assets/icons/bold/boombox.svg +++ b/assets/icons/bold/boombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/box-minimalistic.svg b/assets/icons/bold/box-minimalistic.svg index 23f209b0..a989d976 100644 --- a/assets/icons/bold/box-minimalistic.svg +++ b/assets/icons/bold/box-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/box.svg b/assets/icons/bold/box.svg index 0f7fa488..bbfec240 100644 --- a/assets/icons/bold/box.svg +++ b/assets/icons/bold/box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/broom.svg b/assets/icons/bold/broom.svg index 7b5d326d..ed97da5f 100644 --- a/assets/icons/bold/broom.svg +++ b/assets/icons/bold/broom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/bug.svg b/assets/icons/bold/bug.svg index fd53a26f..f8561df7 100644 --- a/assets/icons/bold/bug.svg +++ b/assets/icons/bold/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar-add.svg b/assets/icons/bold/calendar-add.svg index 48d6201a..36b329f2 100644 --- a/assets/icons/bold/calendar-add.svg +++ b/assets/icons/bold/calendar-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar-date.svg b/assets/icons/bold/calendar-date.svg index 9a5a8db2..477eb115 100644 --- a/assets/icons/bold/calendar-date.svg +++ b/assets/icons/bold/calendar-date.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar-mark.svg b/assets/icons/bold/calendar-mark.svg index e8a4f26a..b1cc39a1 100644 --- a/assets/icons/bold/calendar-mark.svg +++ b/assets/icons/bold/calendar-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar-minimalistic.svg b/assets/icons/bold/calendar-minimalistic.svg index d3fc5a48..5b2b31a3 100644 --- a/assets/icons/bold/calendar-minimalistic.svg +++ b/assets/icons/bold/calendar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar-search.svg b/assets/icons/bold/calendar-search.svg index e02fda99..708271ed 100644 --- a/assets/icons/bold/calendar-search.svg +++ b/assets/icons/bold/calendar-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/calendar.svg b/assets/icons/bold/calendar.svg index a3f54348..921f0781 100644 --- a/assets/icons/bold/calendar.svg +++ b/assets/icons/bold/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-cancel-rounded.svg b/assets/icons/bold/call-cancel-rounded.svg index 5fb66262..416186cf 100644 --- a/assets/icons/bold/call-cancel-rounded.svg +++ b/assets/icons/bold/call-cancel-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-cancel.svg b/assets/icons/bold/call-cancel.svg index 6c9534f7..44ecb865 100644 --- a/assets/icons/bold/call-cancel.svg +++ b/assets/icons/bold/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-chat-rounded.svg b/assets/icons/bold/call-chat-rounded.svg index 16a0a3fc..e6f3008d 100644 --- a/assets/icons/bold/call-chat-rounded.svg +++ b/assets/icons/bold/call-chat-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-chat.svg b/assets/icons/bold/call-chat.svg index f87a90b1..a3221034 100644 --- a/assets/icons/bold/call-chat.svg +++ b/assets/icons/bold/call-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-dropped-rounded.svg b/assets/icons/bold/call-dropped-rounded.svg index 6675f835..d1a6429d 100644 --- a/assets/icons/bold/call-dropped-rounded.svg +++ b/assets/icons/bold/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-dropped.svg b/assets/icons/bold/call-dropped.svg index d318c7b6..2df93f55 100644 --- a/assets/icons/bold/call-dropped.svg +++ b/assets/icons/bold/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-medicine-rounded.svg b/assets/icons/bold/call-medicine-rounded.svg index b5f5f289..7c2f48a7 100644 --- a/assets/icons/bold/call-medicine-rounded.svg +++ b/assets/icons/bold/call-medicine-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/call-medicine.svg b/assets/icons/bold/call-medicine.svg index a51da1f0..41e570a0 100644 --- a/assets/icons/bold/call-medicine.svg +++ b/assets/icons/bold/call-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/camera-minimalistic.svg b/assets/icons/bold/camera-minimalistic.svg index e6bdf9a0..e0e04ae7 100644 --- a/assets/icons/bold/camera-minimalistic.svg +++ b/assets/icons/bold/camera-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/car-battery.svg b/assets/icons/bold/car-battery.svg new file mode 100644 index 00000000..e99717e6 --- /dev/null +++ b/assets/icons/bold/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/card-2.svg b/assets/icons/bold/card-2.svg index 760d0e7f..9f6105cd 100644 --- a/assets/icons/bold/card-2.svg +++ b/assets/icons/bold/card-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/card-receive.svg b/assets/icons/bold/card-receive.svg new file mode 100644 index 00000000..aa2845ee --- /dev/null +++ b/assets/icons/bold/card-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/card-recive.svg b/assets/icons/bold/card-recive.svg deleted file mode 100644 index aabfaa25..00000000 --- a/assets/icons/bold/card-recive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/card-search.svg b/assets/icons/bold/card-search.svg index 537850f8..47e41316 100644 --- a/assets/icons/bold/card-search.svg +++ b/assets/icons/bold/card-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/card-send.svg b/assets/icons/bold/card-send.svg index 3f6afbac..4f67b6ce 100644 --- a/assets/icons/bold/card-send.svg +++ b/assets/icons/bold/card-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/card-transfer.svg b/assets/icons/bold/card-transfer.svg index 1ee5a28a..f10575ac 100644 --- a/assets/icons/bold/card-transfer.svg +++ b/assets/icons/bold/card-transfer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/card.svg b/assets/icons/bold/card.svg index 20eec71c..f836c45a 100644 --- a/assets/icons/bold/card.svg +++ b/assets/icons/bold/card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-2.svg b/assets/icons/bold/cart-2.svg index 00fbabf8..3bd0e0d4 100644 --- a/assets/icons/bold/cart-2.svg +++ b/assets/icons/bold/cart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-4.svg b/assets/icons/bold/cart-4.svg new file mode 100644 index 00000000..30a857dc --- /dev/null +++ b/assets/icons/bold/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/cart-check.svg b/assets/icons/bold/cart-check.svg index 92b9c24f..d3a25637 100644 --- a/assets/icons/bold/cart-check.svg +++ b/assets/icons/bold/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-cross.svg b/assets/icons/bold/cart-cross.svg index fa38489e..0ee25090 100644 --- a/assets/icons/bold/cart-cross.svg +++ b/assets/icons/bold/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-large-2.svg b/assets/icons/bold/cart-large-2.svg index d9ad2114..fbb2e40f 100644 --- a/assets/icons/bold/cart-large-2.svg +++ b/assets/icons/bold/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-large-3.svg b/assets/icons/bold/cart-large-3.svg index d379dc5b..3460009e 100644 --- a/assets/icons/bold/cart-large-3.svg +++ b/assets/icons/bold/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-large-minimalistic.svg b/assets/icons/bold/cart-large-minimalistic.svg index 0f08ea28..12ae2c83 100644 --- a/assets/icons/bold/cart-large-minimalistic.svg +++ b/assets/icons/bold/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-large.svg b/assets/icons/bold/cart-large.svg index 12417419..fec3176c 100644 --- a/assets/icons/bold/cart-large.svg +++ b/assets/icons/bold/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cart-plus.svg b/assets/icons/bold/cart-plus.svg index 519c2689..257d20c6 100644 --- a/assets/icons/bold/cart-plus.svg +++ b/assets/icons/bold/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/case-minimalistic.svg b/assets/icons/bold/case-minimalistic.svg index d42da857..ff2cc717 100644 --- a/assets/icons/bold/case-minimalistic.svg +++ b/assets/icons/bold/case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/case-round.svg b/assets/icons/bold/case-round.svg index 0395013b..c1dd837e 100644 --- a/assets/icons/bold/case-round.svg +++ b/assets/icons/bold/case-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cash-out.svg b/assets/icons/bold/cash-out.svg index 33adf0ed..5f1fc7e3 100644 --- a/assets/icons/bold/cash-out.svg +++ b/assets/icons/bold/cash-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cassette-2.svg b/assets/icons/bold/cassette-2.svg index 82251fe8..a1cab448 100644 --- a/assets/icons/bold/cassette-2.svg +++ b/assets/icons/bold/cassette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cassette.svg b/assets/icons/bold/cassette.svg index 79d6d2c8..7aef7dc8 100644 --- a/assets/icons/bold/cassette.svg +++ b/assets/icons/bold/cassette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chair.svg b/assets/icons/bold/chair.svg index 6e9ec3b1..d3605350 100644 --- a/assets/icons/bold/chair.svg +++ b/assets/icons/bold/chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chart-2.svg b/assets/icons/bold/chart-2.svg index 3d1acd30..8da6f3c7 100644 --- a/assets/icons/bold/chart-2.svg +++ b/assets/icons/bold/chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chat-round-dots.svg b/assets/icons/bold/chat-round-dots.svg index 094723d8..fe09775c 100644 --- a/assets/icons/bold/chat-round-dots.svg +++ b/assets/icons/bold/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chat-round-unread.svg b/assets/icons/bold/chat-round-unread.svg index 6f657c56..c38196e8 100644 --- a/assets/icons/bold/chat-round-unread.svg +++ b/assets/icons/bold/chat-round-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chat-square-arrow.svg b/assets/icons/bold/chat-square-arrow.svg index 1640d0e6..85c60939 100644 --- a/assets/icons/bold/chat-square-arrow.svg +++ b/assets/icons/bold/chat-square-arrow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chat-unread.svg b/assets/icons/bold/chat-unread.svg index 0a051295..02ed973f 100644 --- a/assets/icons/bold/chat-unread.svg +++ b/assets/icons/bold/chat-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chef-hat-heart.svg b/assets/icons/bold/chef-hat-heart.svg index 11435efe..20500b45 100644 --- a/assets/icons/bold/chef-hat-heart.svg +++ b/assets/icons/bold/chef-hat-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/chef-hat.svg b/assets/icons/bold/chef-hat.svg index 964307fa..aa9a5e9c 100644 --- a/assets/icons/bold/chef-hat.svg +++ b/assets/icons/bold/chef-hat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/circle-bottom-down.svg b/assets/icons/bold/circle-bottom-down.svg index 3c806f77..87062df1 100644 --- a/assets/icons/bold/circle-bottom-down.svg +++ b/assets/icons/bold/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/circle-bottom-up.svg b/assets/icons/bold/circle-bottom-up.svg index 81ea7998..37155b3d 100644 --- a/assets/icons/bold/circle-bottom-up.svg +++ b/assets/icons/bold/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/circle-top-down.svg b/assets/icons/bold/circle-top-down.svg index 47aa9058..049a1573 100644 --- a/assets/icons/bold/circle-top-down.svg +++ b/assets/icons/bold/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/circle-top-up.svg b/assets/icons/bold/circle-top-up.svg index 36b30781..f121c6b7 100644 --- a/assets/icons/bold/circle-top-up.svg +++ b/assets/icons/bold/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/city.svg b/assets/icons/bold/city.svg index 4d69b607..37266d6a 100644 --- a/assets/icons/bold/city.svg +++ b/assets/icons/bold/city.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard-edit.svg b/assets/icons/bold/clapperboard-edit.svg index 5870d045..86d19471 100644 --- a/assets/icons/bold/clapperboard-edit.svg +++ b/assets/icons/bold/clapperboard-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard-open-play.svg b/assets/icons/bold/clapperboard-open-play.svg index 567db7aa..5ec1882b 100644 --- a/assets/icons/bold/clapperboard-open-play.svg +++ b/assets/icons/bold/clapperboard-open-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard-open.svg b/assets/icons/bold/clapperboard-open.svg index 51d759a2..07a873ba 100644 --- a/assets/icons/bold/clapperboard-open.svg +++ b/assets/icons/bold/clapperboard-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard-play.svg b/assets/icons/bold/clapperboard-play.svg index a6374f46..a37f546c 100644 --- a/assets/icons/bold/clapperboard-play.svg +++ b/assets/icons/bold/clapperboard-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard-text.svg b/assets/icons/bold/clapperboard-text.svg index 548a2cca..15cdb6ac 100644 --- a/assets/icons/bold/clapperboard-text.svg +++ b/assets/icons/bold/clapperboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clapperboard.svg b/assets/icons/bold/clapperboard.svg index 9e80cb44..3080fad1 100644 --- a/assets/icons/bold/clapperboard.svg +++ b/assets/icons/bold/clapperboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-add.svg b/assets/icons/bold/clipboard-add.svg index 2f43b9ad..392f53bd 100644 --- a/assets/icons/bold/clipboard-add.svg +++ b/assets/icons/bold/clipboard-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-check.svg b/assets/icons/bold/clipboard-check.svg index 2fb1e07d..b20a14e3 100644 --- a/assets/icons/bold/clipboard-check.svg +++ b/assets/icons/bold/clipboard-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-heart.svg b/assets/icons/bold/clipboard-heart.svg index e61c4e62..a0e90c48 100644 --- a/assets/icons/bold/clipboard-heart.svg +++ b/assets/icons/bold/clipboard-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-list.svg b/assets/icons/bold/clipboard-list.svg index 8c74b519..cd2a814a 100644 --- a/assets/icons/bold/clipboard-list.svg +++ b/assets/icons/bold/clipboard-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-remove.svg b/assets/icons/bold/clipboard-remove.svg index 9aaf95fd..8b41d0c4 100644 --- a/assets/icons/bold/clipboard-remove.svg +++ b/assets/icons/bold/clipboard-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard-text.svg b/assets/icons/bold/clipboard-text.svg index 4323ccec..4d5a4f86 100644 --- a/assets/icons/bold/clipboard-text.svg +++ b/assets/icons/bold/clipboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clipboard.svg b/assets/icons/bold/clipboard.svg index 67e29e17..11f13a0b 100644 --- a/assets/icons/bold/clipboard.svg +++ b/assets/icons/bold/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clock-circle.svg b/assets/icons/bold/clock-circle.svg index 4c162e0c..5912f086 100644 --- a/assets/icons/bold/clock-circle.svg +++ b/assets/icons/bold/clock-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clock-square.svg b/assets/icons/bold/clock-square.svg index f12cc753..a83f6d6d 100644 --- a/assets/icons/bold/clock-square.svg +++ b/assets/icons/bold/clock-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/closet-2.svg b/assets/icons/bold/closet-2.svg index a2157c46..7249d2cb 100644 --- a/assets/icons/bold/closet-2.svg +++ b/assets/icons/bold/closet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/closet.svg b/assets/icons/bold/closet.svg index cfcecca1..cb15148b 100644 --- a/assets/icons/bold/closet.svg +++ b/assets/icons/bold/closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-bolt-minimalistic.svg b/assets/icons/bold/cloud-bolt-minimalistic.svg index ce117b14..7a888990 100644 --- a/assets/icons/bold/cloud-bolt-minimalistic.svg +++ b/assets/icons/bold/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-bolt.svg b/assets/icons/bold/cloud-bolt.svg index 9d9c8824..5eca8cf4 100644 --- a/assets/icons/bold/cloud-bolt.svg +++ b/assets/icons/bold/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-check.svg b/assets/icons/bold/cloud-check.svg index 869bd4b3..f1994e05 100644 --- a/assets/icons/bold/cloud-check.svg +++ b/assets/icons/bold/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-cross.svg b/assets/icons/bold/cloud-cross.svg index 3deeca85..2f5b9519 100644 --- a/assets/icons/bold/cloud-cross.svg +++ b/assets/icons/bold/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-download.svg b/assets/icons/bold/cloud-download.svg index 22836fb8..f0e355a0 100644 --- a/assets/icons/bold/cloud-download.svg +++ b/assets/icons/bold/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-file.svg b/assets/icons/bold/cloud-file.svg index 5449c94d..3cfa94a8 100644 --- a/assets/icons/bold/cloud-file.svg +++ b/assets/icons/bold/cloud-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-minus.svg b/assets/icons/bold/cloud-minus.svg index a74f2380..77ff5111 100644 --- a/assets/icons/bold/cloud-minus.svg +++ b/assets/icons/bold/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-plus.svg b/assets/icons/bold/cloud-plus.svg index 59578400..666c9556 100644 --- a/assets/icons/bold/cloud-plus.svg +++ b/assets/icons/bold/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-rain.svg b/assets/icons/bold/cloud-rain.svg index 74eed0af..aadb0748 100644 --- a/assets/icons/bold/cloud-rain.svg +++ b/assets/icons/bold/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-snowfall-minimalistic.svg b/assets/icons/bold/cloud-snowfall-minimalistic.svg index 41a6ecd8..68b77b49 100644 --- a/assets/icons/bold/cloud-snowfall-minimalistic.svg +++ b/assets/icons/bold/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-snowfall.svg b/assets/icons/bold/cloud-snowfall.svg index 0f25bd63..6ffd8227 100644 --- a/assets/icons/bold/cloud-snowfall.svg +++ b/assets/icons/bold/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-storage.svg b/assets/icons/bold/cloud-storage.svg index 2e5e79ff..720c7d19 100644 --- a/assets/icons/bold/cloud-storage.svg +++ b/assets/icons/bold/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-storm.svg b/assets/icons/bold/cloud-storm.svg index 5aabf735..975d6100 100644 --- a/assets/icons/bold/cloud-storm.svg +++ b/assets/icons/bold/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-sun-2.svg b/assets/icons/bold/cloud-sun-2.svg index ae3b5d55..9ca78c83 100644 --- a/assets/icons/bold/cloud-sun-2.svg +++ b/assets/icons/bold/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-sun.svg b/assets/icons/bold/cloud-sun.svg index c9fbbb8b..7257c4fb 100644 --- a/assets/icons/bold/cloud-sun.svg +++ b/assets/icons/bold/cloud-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-upload.svg b/assets/icons/bold/cloud-upload.svg index 7fe0622d..848aeb33 100644 --- a/assets/icons/bold/cloud-upload.svg +++ b/assets/icons/bold/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-waterdrop.svg b/assets/icons/bold/cloud-waterdrop.svg index f05fe41e..3159a7dc 100644 --- a/assets/icons/bold/cloud-waterdrop.svg +++ b/assets/icons/bold/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloud-waterdrops.svg b/assets/icons/bold/cloud-waterdrops.svg index 58142779..0559825f 100644 --- a/assets/icons/bold/cloud-waterdrops.svg +++ b/assets/icons/bold/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/clouds.svg b/assets/icons/bold/clouds.svg index b0a7f5fb..7fc7ca4e 100644 --- a/assets/icons/bold/clouds.svg +++ b/assets/icons/bold/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cloudy-moon.svg b/assets/icons/bold/cloudy-moon.svg index c5243fc4..3b1c3e0d 100644 --- a/assets/icons/bold/cloudy-moon.svg +++ b/assets/icons/bold/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/code-2.svg b/assets/icons/bold/code-2.svg index 00496e51..60ea30c8 100644 --- a/assets/icons/bold/code-2.svg +++ b/assets/icons/bold/code-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/code-file.svg b/assets/icons/bold/code-file.svg index df127984..942e3483 100644 --- a/assets/icons/bold/code-file.svg +++ b/assets/icons/bold/code-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/code-scan.svg b/assets/icons/bold/code-scan.svg index 3cb39c27..011205bf 100644 --- a/assets/icons/bold/code-scan.svg +++ b/assets/icons/bold/code-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/code.svg b/assets/icons/bold/code.svg index 9efa398f..c85ea8f2 100644 --- a/assets/icons/bold/code.svg +++ b/assets/icons/bold/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/colour-tuneing.svg b/assets/icons/bold/colour-tuning.svg similarity index 100% rename from assets/icons/bold/colour-tuneing.svg rename to assets/icons/bold/colour-tuning.svg diff --git a/assets/icons/bold/command.svg b/assets/icons/bold/command.svg index e125ddb5..7dc0c953 100644 --- a/assets/icons/bold/command.svg +++ b/assets/icons/bold/command.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/condicioner-2.svg b/assets/icons/bold/condicioner-2.svg deleted file mode 100644 index 2af97725..00000000 --- a/assets/icons/bold/condicioner-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/condicioner.svg b/assets/icons/bold/condicioner.svg deleted file mode 100644 index 333844ba..00000000 --- a/assets/icons/bold/condicioner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/conditioner-2.svg b/assets/icons/bold/conditioner-2.svg new file mode 100644 index 00000000..cfd2bc27 --- /dev/null +++ b/assets/icons/bold/conditioner-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/conditioner.svg b/assets/icons/bold/conditioner.svg new file mode 100644 index 00000000..f322e0ea --- /dev/null +++ b/assets/icons/bold/conditioner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/confetti-minimalistic.svg b/assets/icons/bold/confetti-minimalistic.svg index 4699c1a8..4f7cc182 100644 --- a/assets/icons/bold/confetti-minimalistic.svg +++ b/assets/icons/bold/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/confetti.svg b/assets/icons/bold/confetti.svg index ef49d76e..27234910 100644 --- a/assets/icons/bold/confetti.svg +++ b/assets/icons/bold/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/copy.svg b/assets/icons/bold/copy.svg index f26beab4..5431375e 100644 --- a/assets/icons/bold/copy.svg +++ b/assets/icons/bold/copy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/corkscrew.svg b/assets/icons/bold/corkscrew.svg index 81283720..f9b87dd2 100644 --- a/assets/icons/bold/corkscrew.svg +++ b/assets/icons/bold/corkscrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cosmetic.svg b/assets/icons/bold/cosmetic.svg index 58f6f592..4eb22fa4 100644 --- a/assets/icons/bold/cosmetic.svg +++ b/assets/icons/bold/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cpu.svg b/assets/icons/bold/cpu.svg index 63e248b6..7850d798 100644 --- a/assets/icons/bold/cpu.svg +++ b/assets/icons/bold/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/crop.svg b/assets/icons/bold/crop.svg index f7facb9b..f913a78d 100644 --- a/assets/icons/bold/crop.svg +++ b/assets/icons/bold/crop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/crown.svg b/assets/icons/bold/crown.svg index cf82a2f1..56430244 100644 --- a/assets/icons/bold/crown.svg +++ b/assets/icons/bold/crown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup-first.svg b/assets/icons/bold/cup-first.svg index 695076a6..6b0f06ba 100644 --- a/assets/icons/bold/cup-first.svg +++ b/assets/icons/bold/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup-hot.svg b/assets/icons/bold/cup-hot.svg index 988549c8..1e15a884 100644 --- a/assets/icons/bold/cup-hot.svg +++ b/assets/icons/bold/cup-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup-music.svg b/assets/icons/bold/cup-music.svg index 0cfc4ab8..d58225a6 100644 --- a/assets/icons/bold/cup-music.svg +++ b/assets/icons/bold/cup-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup-paper.svg b/assets/icons/bold/cup-paper.svg index a5461a31..307142da 100644 --- a/assets/icons/bold/cup-paper.svg +++ b/assets/icons/bold/cup-paper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup-star.svg b/assets/icons/bold/cup-star.svg index 16bda321..3ee7b071 100644 --- a/assets/icons/bold/cup-star.svg +++ b/assets/icons/bold/cup-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/cup.svg b/assets/icons/bold/cup.svg index 6d99e551..0ffafc36 100644 --- a/assets/icons/bold/cup.svg +++ b/assets/icons/bold/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/database.svg b/assets/icons/bold/database.svg index 012d781c..d1e0b730 100644 --- a/assets/icons/bold/database.svg +++ b/assets/icons/bold/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/delivery.svg b/assets/icons/bold/delivery.svg index fd1ff8d7..0bb69756 100644 --- a/assets/icons/bold/delivery.svg +++ b/assets/icons/bold/delivery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/devices.svg b/assets/icons/bold/devices.svg index 01fdcf63..1dde30e3 100644 --- a/assets/icons/bold/devices.svg +++ b/assets/icons/bold/devices.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/diagram-down.svg b/assets/icons/bold/diagram-down.svg index 1d189ffa..2f668e80 100644 --- a/assets/icons/bold/diagram-down.svg +++ b/assets/icons/bold/diagram-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/diagram-up.svg b/assets/icons/bold/diagram-up.svg index 952195b9..87064f91 100644 --- a/assets/icons/bold/diagram-up.svg +++ b/assets/icons/bold/diagram-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dialog-2.svg b/assets/icons/bold/dialog-2.svg index 56007787..e46a1989 100644 --- a/assets/icons/bold/dialog-2.svg +++ b/assets/icons/bold/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dialog.svg b/assets/icons/bold/dialog.svg index d4b3fb99..3a92b76b 100644 --- a/assets/icons/bold/dialog.svg +++ b/assets/icons/bold/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/diploma.svg b/assets/icons/bold/diploma.svg index 8e0953ac..6c9a7522 100644 --- a/assets/icons/bold/diploma.svg +++ b/assets/icons/bold/diploma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/diskette.svg b/assets/icons/bold/diskette.svg index b1ade286..e5a68f4d 100644 --- a/assets/icons/bold/diskette.svg +++ b/assets/icons/bold/diskette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dislike.svg b/assets/icons/bold/dislike.svg index 1d8fd950..1fc687b0 100644 --- a/assets/icons/bold/dislike.svg +++ b/assets/icons/bold/dislike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/document-2.svg b/assets/icons/bold/document-2.svg new file mode 100644 index 00000000..ee98477b --- /dev/null +++ b/assets/icons/bold/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/document-add.svg b/assets/icons/bold/document-add.svg index 4fd146ae..4b9262b9 100644 --- a/assets/icons/bold/document-add.svg +++ b/assets/icons/bold/document-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/documents-minimalistic.svg b/assets/icons/bold/documents-minimalistic.svg index 2e765953..f142705f 100644 --- a/assets/icons/bold/documents-minimalistic.svg +++ b/assets/icons/bold/documents-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/documents.svg b/assets/icons/bold/documents.svg index 002349ab..115d1015 100644 --- a/assets/icons/bold/documents.svg +++ b/assets/icons/bold/documents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dollar.svg b/assets/icons/bold/dollar.svg index eb659390..2f069b12 100644 --- a/assets/icons/bold/dollar.svg +++ b/assets/icons/bold/dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/donut-bitten.svg b/assets/icons/bold/donut-bitten.svg index b711ec17..de791bd1 100644 --- a/assets/icons/bold/donut-bitten.svg +++ b/assets/icons/bold/donut-bitten.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/donut.svg b/assets/icons/bold/donut.svg index ddcc9e45..dd1447d6 100644 --- a/assets/icons/bold/donut.svg +++ b/assets/icons/bold/donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/double-alt-arrow-down.svg b/assets/icons/bold/double-alt-arrow-down.svg index f9af2213..46e956cd 100644 --- a/assets/icons/bold/double-alt-arrow-down.svg +++ b/assets/icons/bold/double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/double-alt-arrow-left.svg b/assets/icons/bold/double-alt-arrow-left.svg index 8776b869..c713b118 100644 --- a/assets/icons/bold/double-alt-arrow-left.svg +++ b/assets/icons/bold/double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/double-alt-arrow-right.svg b/assets/icons/bold/double-alt-arrow-right.svg index 18f7bc26..4c12b351 100644 --- a/assets/icons/bold/double-alt-arrow-right.svg +++ b/assets/icons/bold/double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/double-alt-arrow-up.svg b/assets/icons/bold/double-alt-arrow-up.svg index 95b7eefe..cf7ad764 100644 --- a/assets/icons/bold/double-alt-arrow-up.svg +++ b/assets/icons/bold/double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/download-minimalistic.svg b/assets/icons/bold/download-minimalistic.svg index 2e25993d..ea3012ec 100644 --- a/assets/icons/bold/download-minimalistic.svg +++ b/assets/icons/bold/download-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/download.svg b/assets/icons/bold/download.svg index 153e60f3..4fd25073 100644 --- a/assets/icons/bold/download.svg +++ b/assets/icons/bold/download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dropper-2.svg b/assets/icons/bold/dropper-2.svg index 1c0ebfe5..00bfc5a6 100644 --- a/assets/icons/bold/dropper-2.svg +++ b/assets/icons/bold/dropper-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dropper-3.svg b/assets/icons/bold/dropper-3.svg index 094fbad0..faf122ca 100644 --- a/assets/icons/bold/dropper-3.svg +++ b/assets/icons/bold/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dropper-minimalistic-2.svg b/assets/icons/bold/dropper-minimalistic-2.svg index 1e2fcfd7..775104d6 100644 --- a/assets/icons/bold/dropper-minimalistic-2.svg +++ b/assets/icons/bold/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dropper-minimalistic.svg b/assets/icons/bold/dropper-minimalistic.svg index 3571a71e..79cedf6e 100644 --- a/assets/icons/bold/dropper-minimalistic.svg +++ b/assets/icons/bold/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dropper.svg b/assets/icons/bold/dropper.svg index c7385380..ae19cb1f 100644 --- a/assets/icons/bold/dropper.svg +++ b/assets/icons/bold/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dumbbell-large-minimalistic.svg b/assets/icons/bold/dumbbell-large-minimalistic.svg index e4fed140..49ff8830 100644 --- a/assets/icons/bold/dumbbell-large-minimalistic.svg +++ b/assets/icons/bold/dumbbell-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dumbbell-small.svg b/assets/icons/bold/dumbbell-small.svg index 7eb0d6a0..270771bc 100644 --- a/assets/icons/bold/dumbbell-small.svg +++ b/assets/icons/bold/dumbbell-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dumbbells-2.svg b/assets/icons/bold/dumbbells-2.svg index e504f0ad..bce5adc4 100644 --- a/assets/icons/bold/dumbbells-2.svg +++ b/assets/icons/bold/dumbbells-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/dumbbells.svg b/assets/icons/bold/dumbbells.svg index c1b85299..960719ac 100644 --- a/assets/icons/bold/dumbbells.svg +++ b/assets/icons/bold/dumbbells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/earth.svg b/assets/icons/bold/earth.svg index 71729911..b974aab0 100644 --- a/assets/icons/bold/earth.svg +++ b/assets/icons/bold/earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/eraser.svg b/assets/icons/bold/eraser.svg index 07a4f874..55641e6a 100644 --- a/assets/icons/bold/eraser.svg +++ b/assets/icons/bold/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/exit.svg b/assets/icons/bold/exit.svg index 6c0ad771..de8becbd 100644 --- a/assets/icons/bold/exit.svg +++ b/assets/icons/bold/exit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/export.svg b/assets/icons/bold/export.svg index 6e6c7964..bd24a490 100644 --- a/assets/icons/bold/export.svg +++ b/assets/icons/bold/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/eye-scan.svg b/assets/icons/bold/eye-scan.svg index 8a91119c..33a87859 100644 --- a/assets/icons/bold/eye-scan.svg +++ b/assets/icons/bold/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/eye.svg b/assets/icons/bold/eye.svg index 3b2bfb83..13bf97fe 100644 --- a/assets/icons/bold/eye.svg +++ b/assets/icons/bold/eye.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/face-scan-circle.svg b/assets/icons/bold/face-scan-circle.svg index 092f3cc0..44ce77ed 100644 --- a/assets/icons/bold/face-scan-circle.svg +++ b/assets/icons/bold/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/face-scan-square.svg b/assets/icons/bold/face-scan-square.svg index 4f33dbce..aab9ca93 100644 --- a/assets/icons/bold/face-scan-square.svg +++ b/assets/icons/bold/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/facemask-circle.svg b/assets/icons/bold/facemask-circle.svg index f5d2eb22..193a0d17 100644 --- a/assets/icons/bold/facemask-circle.svg +++ b/assets/icons/bold/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/facemask-square.svg b/assets/icons/bold/facemask-square.svg index 9450ffeb..6ac69b75 100644 --- a/assets/icons/bold/facemask-square.svg +++ b/assets/icons/bold/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/figma-file.svg b/assets/icons/bold/figma-file.svg index aefe08d2..b4479a86 100644 --- a/assets/icons/bold/figma-file.svg +++ b/assets/icons/bold/figma-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-check.svg b/assets/icons/bold/file-check.svg index 0f79a025..9fcd49be 100644 --- a/assets/icons/bold/file-check.svg +++ b/assets/icons/bold/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-corrupted.svg b/assets/icons/bold/file-corrupted.svg index 9865744f..71d38d19 100644 --- a/assets/icons/bold/file-corrupted.svg +++ b/assets/icons/bold/file-corrupted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-download.svg b/assets/icons/bold/file-download.svg index 38e55e92..487cb877 100644 --- a/assets/icons/bold/file-download.svg +++ b/assets/icons/bold/file-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-favorite.svg b/assets/icons/bold/file-favorite.svg new file mode 100644 index 00000000..0249d45c --- /dev/null +++ b/assets/icons/bold/file-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/file-favourite.svg b/assets/icons/bold/file-favourite.svg deleted file mode 100644 index edacd2a9..00000000 --- a/assets/icons/bold/file-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/file-left.svg b/assets/icons/bold/file-left.svg index fa6f7798..5c5f754d 100644 --- a/assets/icons/bold/file-left.svg +++ b/assets/icons/bold/file-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-remove.svg b/assets/icons/bold/file-remove.svg index 7e91e2d8..437c34b1 100644 --- a/assets/icons/bold/file-remove.svg +++ b/assets/icons/bold/file-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-right.svg b/assets/icons/bold/file-right.svg index 7525134f..2db274a8 100644 --- a/assets/icons/bold/file-right.svg +++ b/assets/icons/bold/file-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-send.svg b/assets/icons/bold/file-send.svg index b9e2e7de..aae30264 100644 --- a/assets/icons/bold/file-send.svg +++ b/assets/icons/bold/file-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-smile.svg b/assets/icons/bold/file-smile.svg index 24c6f9ae..36b11221 100644 --- a/assets/icons/bold/file-smile.svg +++ b/assets/icons/bold/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file-text.svg b/assets/icons/bold/file-text.svg index 3194fd6b..a9610b32 100644 --- a/assets/icons/bold/file-text.svg +++ b/assets/icons/bold/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/file.svg b/assets/icons/bold/file.svg index 4834f2c1..8a50495a 100644 --- a/assets/icons/bold/file.svg +++ b/assets/icons/bold/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/filters.svg b/assets/icons/bold/filters.svg index 7ab08d67..798ecc37 100644 --- a/assets/icons/bold/filters.svg +++ b/assets/icons/bold/filters.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/flash-drive.svg b/assets/icons/bold/flash-drive.svg index c344f258..fa0d0de1 100644 --- a/assets/icons/bold/flash-drive.svg +++ b/assets/icons/bold/flash-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/flashlight-on.svg b/assets/icons/bold/flashlight-on.svg index 2f24affd..2ab1c8b7 100644 --- a/assets/icons/bold/flashlight-on.svg +++ b/assets/icons/bold/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/flashlight.svg b/assets/icons/bold/flashlight.svg index 8cb743f9..cc22d411 100644 --- a/assets/icons/bold/flashlight.svg +++ b/assets/icons/bold/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/flip-horizontal.svg b/assets/icons/bold/flip-horizontal.svg index 3fc9c2bf..d2027ab6 100644 --- a/assets/icons/bold/flip-horizontal.svg +++ b/assets/icons/bold/flip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/flip-vertical.svg b/assets/icons/bold/flip-vertical.svg index fb9b7632..19f77a99 100644 --- a/assets/icons/bold/flip-vertical.svg +++ b/assets/icons/bold/flip-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/floor-lamp-minimalistic.svg b/assets/icons/bold/floor-lamp-minimalistic.svg index 4d9c5f0c..dc865ced 100644 --- a/assets/icons/bold/floor-lamp-minimalistic.svg +++ b/assets/icons/bold/floor-lamp-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/floor-lamp.svg b/assets/icons/bold/floor-lamp.svg index f868b666..26780b3f 100644 --- a/assets/icons/bold/floor-lamp.svg +++ b/assets/icons/bold/floor-lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/fog.svg b/assets/icons/bold/fog.svg index 4b95ad02..85761333 100644 --- a/assets/icons/bold/fog.svg +++ b/assets/icons/bold/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/folder-favorite-bookmark.svg b/assets/icons/bold/folder-favorite-bookmark.svg new file mode 100644 index 00000000..7eca49b3 --- /dev/null +++ b/assets/icons/bold/folder-favorite-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/folder-favourite-star.svg b/assets/icons/bold/folder-favorite-star.svg similarity index 100% rename from assets/icons/bold/folder-favourite-star.svg rename to assets/icons/bold/folder-favorite-star.svg diff --git a/assets/icons/bold/folder-favourite-bookmark.svg b/assets/icons/bold/folder-favourite-bookmark.svg deleted file mode 100644 index 0a1493ec..00000000 --- a/assets/icons/bold/folder-favourite-bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/folder-open.svg b/assets/icons/bold/folder-open.svg index 07d7210a..6f82a084 100644 --- a/assets/icons/bold/folder-open.svg +++ b/assets/icons/bold/folder-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/folder-with-files.svg b/assets/icons/bold/folder-with-files.svg index 055bf901..56e8f08f 100644 --- a/assets/icons/bold/folder-with-files.svg +++ b/assets/icons/bold/folder-with-files.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/football.svg b/assets/icons/bold/football.svg index 94f57096..61c0a94c 100644 --- a/assets/icons/bold/football.svg +++ b/assets/icons/bold/football.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/forbidden-circle.svg b/assets/icons/bold/forbidden-circle.svg index 6103bd1b..99a1732c 100644 --- a/assets/icons/bold/forbidden-circle.svg +++ b/assets/icons/bold/forbidden-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/forbidden.svg b/assets/icons/bold/forbidden.svg index abcf3216..494b66cf 100644 --- a/assets/icons/bold/forbidden.svg +++ b/assets/icons/bold/forbidden.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/forward-right.svg b/assets/icons/bold/forward-right.svg new file mode 100644 index 00000000..df16c362 --- /dev/null +++ b/assets/icons/bold/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/4k.svg b/assets/icons/bold/four-k.svg similarity index 100% rename from assets/icons/bold/4k.svg rename to assets/icons/bold/four-k.svg diff --git a/assets/icons/bold/fridge.svg b/assets/icons/bold/fridge.svg index eb88fb4f..c996c583 100644 --- a/assets/icons/bold/fridge.svg +++ b/assets/icons/bold/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-add.svg b/assets/icons/bold/gallery-add.svg index 1cff7bc7..440a275f 100644 --- a/assets/icons/bold/gallery-add.svg +++ b/assets/icons/bold/gallery-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-check.svg b/assets/icons/bold/gallery-check.svg index 83135700..34a2d6df 100644 --- a/assets/icons/bold/gallery-check.svg +++ b/assets/icons/bold/gallery-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-circle.svg b/assets/icons/bold/gallery-circle.svg index d3ef8aae..df68d129 100644 --- a/assets/icons/bold/gallery-circle.svg +++ b/assets/icons/bold/gallery-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-download.svg b/assets/icons/bold/gallery-download.svg index d998aa62..ee785b45 100644 --- a/assets/icons/bold/gallery-download.svg +++ b/assets/icons/bold/gallery-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-edit.svg b/assets/icons/bold/gallery-edit.svg index 6ca51181..10f5b35e 100644 --- a/assets/icons/bold/gallery-edit.svg +++ b/assets/icons/bold/gallery-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-favorite.svg b/assets/icons/bold/gallery-favorite.svg new file mode 100644 index 00000000..01fa0344 --- /dev/null +++ b/assets/icons/bold/gallery-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/gallery-favourite.svg b/assets/icons/bold/gallery-favourite.svg deleted file mode 100644 index c46c6534..00000000 --- a/assets/icons/bold/gallery-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/gallery-remove.svg b/assets/icons/bold/gallery-remove.svg index f95f3f0b..24bd7a27 100644 --- a/assets/icons/bold/gallery-remove.svg +++ b/assets/icons/bold/gallery-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-round.svg b/assets/icons/bold/gallery-round.svg index 3111581f..51e8ec77 100644 --- a/assets/icons/bold/gallery-round.svg +++ b/assets/icons/bold/gallery-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-send.svg b/assets/icons/bold/gallery-send.svg index 2927ef4f..fd8744ac 100644 --- a/assets/icons/bold/gallery-send.svg +++ b/assets/icons/bold/gallery-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery-wide.svg b/assets/icons/bold/gallery-wide.svg index fa58fd4e..dd4ff363 100644 --- a/assets/icons/bold/gallery-wide.svg +++ b/assets/icons/bold/gallery-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gallery.svg b/assets/icons/bold/gallery.svg index 7cba8247..4e87fbf9 100644 --- a/assets/icons/bold/gallery.svg +++ b/assets/icons/bold/gallery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gamepad-charge.svg b/assets/icons/bold/gamepad-charge.svg index 7c5aaafe..7c265ec3 100644 --- a/assets/icons/bold/gamepad-charge.svg +++ b/assets/icons/bold/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gift.svg b/assets/icons/bold/gift.svg index 8988490b..ece23ba6 100644 --- a/assets/icons/bold/gift.svg +++ b/assets/icons/bold/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/global.svg b/assets/icons/bold/global.svg index 403a8983..f349b0a6 100644 --- a/assets/icons/bold/global.svg +++ b/assets/icons/bold/global.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/globe.svg b/assets/icons/bold/globe.svg new file mode 100644 index 00000000..6ab8e204 --- /dev/null +++ b/assets/icons/bold/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/globus.svg b/assets/icons/bold/globus.svg deleted file mode 100644 index e8ddfff8..00000000 --- a/assets/icons/bold/globus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/golf.svg b/assets/icons/bold/golf.svg index f51898f7..42f56e20 100644 --- a/assets/icons/bold/golf.svg +++ b/assets/icons/bold/golf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/gps.svg b/assets/icons/bold/gps.svg index 506b8681..1d64abc7 100644 --- a/assets/icons/bold/gps.svg +++ b/assets/icons/bold/gps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/graph-down-new.svg b/assets/icons/bold/graph-down-new.svg index 44b71f54..95f87fe2 100644 --- a/assets/icons/bold/graph-down-new.svg +++ b/assets/icons/bold/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/graph-new-up.svg b/assets/icons/bold/graph-new-up.svg index 4daa3211..10bd89bc 100644 --- a/assets/icons/bold/graph-new-up.svg +++ b/assets/icons/bold/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/graph-new.svg b/assets/icons/bold/graph-new.svg index 99933634..e48a7bc7 100644 --- a/assets/icons/bold/graph-new.svg +++ b/assets/icons/bold/graph-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hand-heart.svg b/assets/icons/bold/hand-heart.svg index 07c02a45..9d854ce2 100644 --- a/assets/icons/bold/hand-heart.svg +++ b/assets/icons/bold/hand-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hand-money.svg b/assets/icons/bold/hand-money.svg index 0ad7b32e..c3b568d7 100644 --- a/assets/icons/bold/hand-money.svg +++ b/assets/icons/bold/hand-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hand-pills.svg b/assets/icons/bold/hand-pills.svg index 1cbd7ffb..a7abfcc1 100644 --- a/assets/icons/bold/hand-pills.svg +++ b/assets/icons/bold/hand-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hand-shake.svg b/assets/icons/bold/hand-shake.svg index bf184406..3341f150 100644 --- a/assets/icons/bold/hand-shake.svg +++ b/assets/icons/bold/hand-shake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hand-stars.svg b/assets/icons/bold/hand-stars.svg index 1861acde..4185fded 100644 --- a/assets/icons/bold/hand-stars.svg +++ b/assets/icons/bold/hand-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hashtag-chat.svg b/assets/icons/bold/hashtag-chat.svg index a0c3925c..b0f2835b 100644 --- a/assets/icons/bold/hashtag-chat.svg +++ b/assets/icons/bold/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hashtag-circle.svg b/assets/icons/bold/hashtag-circle.svg index 6d11d153..b5f20e1f 100644 --- a/assets/icons/bold/hashtag-circle.svg +++ b/assets/icons/bold/hashtag-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hashtag-square.svg b/assets/icons/bold/hashtag-square.svg index 994f78e3..053ce254 100644 --- a/assets/icons/bold/hashtag-square.svg +++ b/assets/icons/bold/hashtag-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/headphones-round-sound.svg b/assets/icons/bold/headphones-round-sound.svg index ce41b036..643e5cee 100644 --- a/assets/icons/bold/headphones-round-sound.svg +++ b/assets/icons/bold/headphones-round-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/headphones-square-sound.svg b/assets/icons/bold/headphones-square-sound.svg index 6b0df598..52b2d35c 100644 --- a/assets/icons/bold/headphones-square-sound.svg +++ b/assets/icons/bold/headphones-square-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/heart-broken.svg b/assets/icons/bold/heart-broken.svg deleted file mode 100644 index 492df036..00000000 --- a/assets/icons/bold/heart-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/heart-crack.svg b/assets/icons/bold/heart-crack.svg new file mode 100644 index 00000000..c9552371 --- /dev/null +++ b/assets/icons/bold/heart-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/heart-pulse-2.svg b/assets/icons/bold/heart-pulse-2.svg index 32ffce94..ef7c9223 100644 --- a/assets/icons/bold/heart-pulse-2.svg +++ b/assets/icons/bold/heart-pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/heart-shine.svg b/assets/icons/bold/heart-shine.svg index 7ea92bcb..a9ce8eb6 100644 --- a/assets/icons/bold/heart-shine.svg +++ b/assets/icons/bold/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hearts.svg b/assets/icons/bold/hearts.svg index 67b92ece..16b30c37 100644 --- a/assets/icons/bold/hearts.svg +++ b/assets/icons/bold/hearts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/help.svg b/assets/icons/bold/help.svg index cfb9bffe..d473fdca 100644 --- a/assets/icons/bold/help.svg +++ b/assets/icons/bold/help.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hiking-minimalistic.svg b/assets/icons/bold/hiking-minimalistic.svg index 1e01b96e..f095d264 100644 --- a/assets/icons/bold/hiking-minimalistic.svg +++ b/assets/icons/bold/hiking-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hiking-round.svg b/assets/icons/bold/hiking-round.svg index 1c026695..c9812a9d 100644 --- a/assets/icons/bold/hiking-round.svg +++ b/assets/icons/bold/hiking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/hiking.svg b/assets/icons/bold/hiking.svg index b24459af..ff772402 100644 --- a/assets/icons/bold/hiking.svg +++ b/assets/icons/bold/hiking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/history-2.svg b/assets/icons/bold/history-2.svg index 56ec4913..185ef9bd 100644 --- a/assets/icons/bold/history-2.svg +++ b/assets/icons/bold/history-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/history-3.svg b/assets/icons/bold/history-3.svg index 15ac6820..70bbfeda 100644 --- a/assets/icons/bold/history-3.svg +++ b/assets/icons/bold/history-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/home-wifi-angle.svg b/assets/icons/bold/home-wi-fi-angle.svg similarity index 100% rename from assets/icons/bold/home-wifi-angle.svg rename to assets/icons/bold/home-wi-fi-angle.svg diff --git a/assets/icons/bold/home-wifi.svg b/assets/icons/bold/home-wi-fi.svg similarity index 100% rename from assets/icons/bold/home-wifi.svg rename to assets/icons/bold/home-wi-fi.svg diff --git a/assets/icons/bold/home.svg b/assets/icons/bold/home.svg index c70567b8..5064bc59 100644 --- a/assets/icons/bold/home.svg +++ b/assets/icons/bold/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/house.svg b/assets/icons/bold/house.svg new file mode 100644 index 00000000..4e229560 --- /dev/null +++ b/assets/icons/bold/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/iphone.svg b/assets/icons/bold/i-phone.svg similarity index 100% rename from assets/icons/bold/iphone.svg rename to assets/icons/bold/i-phone.svg diff --git a/assets/icons/bold/import.svg b/assets/icons/bold/import.svg index efe73968..56820539 100644 --- a/assets/icons/bold/import.svg +++ b/assets/icons/bold/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/inbox-in.svg b/assets/icons/bold/inbox-in.svg index 70b3283e..68642b4e 100644 --- a/assets/icons/bold/inbox-in.svg +++ b/assets/icons/bold/inbox-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/inbox-line.svg b/assets/icons/bold/inbox-line.svg index e0e10512..cba95e7a 100644 --- a/assets/icons/bold/inbox-line.svg +++ b/assets/icons/bold/inbox-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/inbox-out.svg b/assets/icons/bold/inbox-out.svg index 27718b8e..e89e6680 100644 --- a/assets/icons/bold/inbox-out.svg +++ b/assets/icons/bold/inbox-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/inbox-unread.svg b/assets/icons/bold/inbox-unread.svg index 7b2f0d8d..366c72d0 100644 --- a/assets/icons/bold/inbox-unread.svg +++ b/assets/icons/bold/inbox-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/inbox.svg b/assets/icons/bold/inbox.svg index 600369c8..866b1cf1 100644 --- a/assets/icons/bold/inbox.svg +++ b/assets/icons/bold/inbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/incoming-call-rounded.svg b/assets/icons/bold/incoming-call-rounded.svg index 785e84eb..06070152 100644 --- a/assets/icons/bold/incoming-call-rounded.svg +++ b/assets/icons/bold/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/incoming-call.svg b/assets/icons/bold/incoming-call.svg index ee02d27d..32501925 100644 --- a/assets/icons/bold/incoming-call.svg +++ b/assets/icons/bold/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/infinity.svg b/assets/icons/bold/infinite.svg similarity index 100% rename from assets/icons/bold/infinity.svg rename to assets/icons/bold/infinite.svg diff --git a/assets/icons/bold/jar-of-pills-2.svg b/assets/icons/bold/jar-of-pills-2.svg index 3e544a1d..b9fed2eb 100644 --- a/assets/icons/bold/jar-of-pills-2.svg +++ b/assets/icons/bold/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/jar-of-pills.svg b/assets/icons/bold/jar-of-pills.svg index 03fa3e65..ae4c7316 100644 --- a/assets/icons/bold/jar-of-pills.svg +++ b/assets/icons/bold/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/key-minimalistic-square-2.svg b/assets/icons/bold/key-minimalistic-square-2.svg index f6403b85..83c81519 100644 --- a/assets/icons/bold/key-minimalistic-square-2.svg +++ b/assets/icons/bold/key-minimalistic-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/key-minimalistic-square-3.svg b/assets/icons/bold/key-minimalistic-square-3.svg index f5e548ae..9a9d0f35 100644 --- a/assets/icons/bold/key-minimalistic-square-3.svg +++ b/assets/icons/bold/key-minimalistic-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/key-minimalistic-square.svg b/assets/icons/bold/key-minimalistic-square.svg index fd9ccdab..73af0972 100644 --- a/assets/icons/bold/key-minimalistic-square.svg +++ b/assets/icons/bold/key-minimalistic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/key-square-2.svg b/assets/icons/bold/key-square-2.svg index eb6832cb..42e17278 100644 --- a/assets/icons/bold/key-square-2.svg +++ b/assets/icons/bold/key-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/key-square.svg b/assets/icons/bold/key-square.svg index e746a523..239faab0 100644 --- a/assets/icons/bold/key-square.svg +++ b/assets/icons/bold/key-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ladle.svg b/assets/icons/bold/ladle.svg index b74df94c..bac39960 100644 --- a/assets/icons/bold/ladle.svg +++ b/assets/icons/bold/ladle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/laptop-2.svg b/assets/icons/bold/laptop-2.svg index 4b909a4f..f1bde172 100644 --- a/assets/icons/bold/laptop-2.svg +++ b/assets/icons/bold/laptop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/laptop-3.svg b/assets/icons/bold/laptop-3.svg index 1a5c7293..fb8c39b5 100644 --- a/assets/icons/bold/laptop-3.svg +++ b/assets/icons/bold/laptop-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/laptop-minimalistic.svg b/assets/icons/bold/laptop-minimalistic.svg index 7ee9f6ed..5cb7d2df 100644 --- a/assets/icons/bold/laptop-minimalistic.svg +++ b/assets/icons/bold/laptop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/laptop.svg b/assets/icons/bold/laptop.svg index 21a51ff8..dff925f4 100644 --- a/assets/icons/bold/laptop.svg +++ b/assets/icons/bold/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/layers-minimalistic.svg b/assets/icons/bold/layers-minimalistic.svg index d7066a81..f4f07669 100644 --- a/assets/icons/bold/layers-minimalistic.svg +++ b/assets/icons/bold/layers-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/layers.svg b/assets/icons/bold/layers.svg index 129a06aa..d71454ce 100644 --- a/assets/icons/bold/layers.svg +++ b/assets/icons/bold/layers.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/leaf.svg b/assets/icons/bold/leaf.svg index ace8bed9..e80bf904 100644 --- a/assets/icons/bold/leaf.svg +++ b/assets/icons/bold/leaf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/letter-opened.svg b/assets/icons/bold/letter-opened.svg index 14307fb8..f5215b1f 100644 --- a/assets/icons/bold/letter-opened.svg +++ b/assets/icons/bold/letter-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/letter-unread.svg b/assets/icons/bold/letter-unread.svg index 9b0aea11..987877c0 100644 --- a/assets/icons/bold/letter-unread.svg +++ b/assets/icons/bold/letter-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/library.svg b/assets/icons/bold/library.svg index 850af676..5154e680 100644 --- a/assets/icons/bold/library.svg +++ b/assets/icons/bold/library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/lightbulb-minimalistic.svg b/assets/icons/bold/lightbulb-minimalistic.svg index 21e70574..7b1e7f95 100644 --- a/assets/icons/bold/lightbulb-minimalistic.svg +++ b/assets/icons/bold/lightbulb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/lightbulb.svg b/assets/icons/bold/lightbulb.svg index 3b2d2d70..8b074915 100644 --- a/assets/icons/bold/lightbulb.svg +++ b/assets/icons/bold/lightbulb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/lightning.svg b/assets/icons/bold/lightning.svg index b24ce282..3307ca1e 100644 --- a/assets/icons/bold/lightning.svg +++ b/assets/icons/bold/lightning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/like.svg b/assets/icons/bold/like.svg index 483648ad..6600b2f3 100644 --- a/assets/icons/bold/like.svg +++ b/assets/icons/bold/like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/link-broken-minimalistic.svg b/assets/icons/bold/link-broken-minimalistic.svg deleted file mode 100644 index 93d62253..00000000 --- a/assets/icons/bold/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/link-broken.svg b/assets/icons/bold/link-broken.svg deleted file mode 100644 index 44d3f640..00000000 --- a/assets/icons/bold/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/link-minimalistic-2.svg b/assets/icons/bold/link-minimalistic-2.svg index 4f99b4f3..d332a6bc 100644 --- a/assets/icons/bold/link-minimalistic-2.svg +++ b/assets/icons/bold/link-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/link-minimalistic.svg b/assets/icons/bold/link-minimalistic.svg index 5b8e35fd..58ef17e2 100644 --- a/assets/icons/bold/link-minimalistic.svg +++ b/assets/icons/bold/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/link-round-angle.svg b/assets/icons/bold/link-round-angle.svg index 0d0a1a87..84cae39c 100644 --- a/assets/icons/bold/link-round-angle.svg +++ b/assets/icons/bold/link-round-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/link.svg b/assets/icons/bold/link.svg index 573ca655..9306393e 100644 --- a/assets/icons/bold/link.svg +++ b/assets/icons/bold/link.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/list-arrow-down-minimalistic.svg b/assets/icons/bold/list-arrow-down-minimalistic.svg index ea24cdfc..2d0651bd 100644 --- a/assets/icons/bold/list-arrow-down-minimalistic.svg +++ b/assets/icons/bold/list-arrow-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/list-down-minimalistic.svg b/assets/icons/bold/list-down-minimalistic.svg index 339a534c..0a9f921b 100644 --- a/assets/icons/bold/list-down-minimalistic.svg +++ b/assets/icons/bold/list-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/list-heart-minimalistic.svg b/assets/icons/bold/list-heart-minimalistic.svg index 2c285a47..2324a6ee 100644 --- a/assets/icons/bold/list-heart-minimalistic.svg +++ b/assets/icons/bold/list-heart-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/list-heart.svg b/assets/icons/bold/list-heart.svg index 764c2cb3..c81a0bac 100644 --- a/assets/icons/bold/list-heart.svg +++ b/assets/icons/bold/list-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/list-vertical.svg b/assets/icons/bold/list-vertical.svg new file mode 100644 index 00000000..12b78bb0 --- /dev/null +++ b/assets/icons/bold/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/login-2.svg b/assets/icons/bold/login-2.svg index 160ba2f9..a3ffdd39 100644 --- a/assets/icons/bold/login-2.svg +++ b/assets/icons/bold/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/login.svg b/assets/icons/bold/login.svg index 7122acda..40e85bff 100644 --- a/assets/icons/bold/login.svg +++ b/assets/icons/bold/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/logout-2.svg b/assets/icons/bold/logout-2.svg new file mode 100644 index 00000000..123d370a --- /dev/null +++ b/assets/icons/bold/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/logout.svg b/assets/icons/bold/logout.svg new file mode 100644 index 00000000..f32dfddf --- /dev/null +++ b/assets/icons/bold/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/magic-stick-3.svg b/assets/icons/bold/magic-stick-3.svg deleted file mode 100644 index 37b0eaf7..00000000 --- a/assets/icons/bold/magic-stick-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/magic-stick.svg b/assets/icons/bold/magic-stick.svg deleted file mode 100644 index 10ed0fca..00000000 --- a/assets/icons/bold/magic-stick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/magic-stick-2.svg b/assets/icons/bold/magic-wand-2.svg similarity index 100% rename from assets/icons/bold/magic-stick-2.svg rename to assets/icons/bold/magic-wand-2.svg diff --git a/assets/icons/bold/magic-wand-3.svg b/assets/icons/bold/magic-wand-3.svg new file mode 100644 index 00000000..5a3365ba --- /dev/null +++ b/assets/icons/bold/magic-wand-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/magic-wand.svg b/assets/icons/bold/magic-wand.svg new file mode 100644 index 00000000..1e13c87f --- /dev/null +++ b/assets/icons/bold/magic-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/magnet-wave.svg b/assets/icons/bold/magnet-wave.svg index 1a3b427d..3c325f07 100644 --- a/assets/icons/bold/magnet-wave.svg +++ b/assets/icons/bold/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/magnet.svg b/assets/icons/bold/magnet.svg index 9e98f81d..b4b63fe0 100644 --- a/assets/icons/bold/magnet.svg +++ b/assets/icons/bold/magnet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/magnifer-bug.svg b/assets/icons/bold/magnifier-bug.svg similarity index 100% rename from assets/icons/bold/magnifer-bug.svg rename to assets/icons/bold/magnifier-bug.svg diff --git a/assets/icons/bold/magnifer-zoom-in.svg b/assets/icons/bold/magnifier-zoom-in.svg similarity index 100% rename from assets/icons/bold/magnifer-zoom-in.svg rename to assets/icons/bold/magnifier-zoom-in.svg diff --git a/assets/icons/bold/magnifer-zoom-out.svg b/assets/icons/bold/magnifier-zoom-out.svg similarity index 100% rename from assets/icons/bold/magnifer-zoom-out.svg rename to assets/icons/bold/magnifier-zoom-out.svg diff --git a/assets/icons/bold/magnifer.svg b/assets/icons/bold/magnifier.svg similarity index 100% rename from assets/icons/bold/magnifer.svg rename to assets/icons/bold/magnifier.svg diff --git a/assets/icons/bold/mailbox.svg b/assets/icons/bold/mailbox.svg index dba24910..c8250cc0 100644 --- a/assets/icons/bold/mailbox.svg +++ b/assets/icons/bold/mailbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/map-point-favourite.svg b/assets/icons/bold/map-point-favorite.svg similarity index 100% rename from assets/icons/bold/map-point-favourite.svg rename to assets/icons/bold/map-point-favorite.svg diff --git a/assets/icons/bold/map-point-rotate.svg b/assets/icons/bold/map-point-rotate.svg index f31aafcc..983d860a 100644 --- a/assets/icons/bold/map-point-rotate.svg +++ b/assets/icons/bold/map-point-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/map-point-school.svg b/assets/icons/bold/map-point-school.svg index 04653c9c..14a85510 100644 --- a/assets/icons/bold/map-point-school.svg +++ b/assets/icons/bold/map-point-school.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/map-point-wave.svg b/assets/icons/bold/map-point-wave.svg index 5e4cf68c..22837103 100644 --- a/assets/icons/bold/map-point-wave.svg +++ b/assets/icons/bold/map-point-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/map.svg b/assets/icons/bold/map.svg index f5a7eaed..76bb7732 100644 --- a/assets/icons/bold/map.svg +++ b/assets/icons/bold/map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mask-happly.svg b/assets/icons/bold/mask-happy.svg similarity index 100% rename from assets/icons/bold/mask-happly.svg rename to assets/icons/bold/mask-happy.svg diff --git a/assets/icons/bold/masks.svg b/assets/icons/bold/masks.svg index 1a6cfa51..dd27a63a 100644 --- a/assets/icons/bold/masks.svg +++ b/assets/icons/bold/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/maximize-square-3.svg b/assets/icons/bold/maximize-square-3.svg index d1537041..cef19fd7 100644 --- a/assets/icons/bold/maximize-square-3.svg +++ b/assets/icons/bold/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/maximize.svg b/assets/icons/bold/maximize.svg index df280f3b..9c81783b 100644 --- a/assets/icons/bold/maximize.svg +++ b/assets/icons/bold/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-ribbon-star.svg b/assets/icons/bold/medal-ribbon-star.svg index 87a4b179..74264753 100644 --- a/assets/icons/bold/medal-ribbon-star.svg +++ b/assets/icons/bold/medal-ribbon-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-ribbon.svg b/assets/icons/bold/medal-ribbon.svg index 4b00912c..7b1f7096 100644 --- a/assets/icons/bold/medal-ribbon.svg +++ b/assets/icons/bold/medal-ribbon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-ribbons-star.svg b/assets/icons/bold/medal-ribbons-star.svg index c853502e..f8df437e 100644 --- a/assets/icons/bold/medal-ribbons-star.svg +++ b/assets/icons/bold/medal-ribbons-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-star-circle.svg b/assets/icons/bold/medal-star-circle.svg index 1f02942a..be73da47 100644 --- a/assets/icons/bold/medal-star-circle.svg +++ b/assets/icons/bold/medal-star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-star-square.svg b/assets/icons/bold/medal-star-square.svg index d3efcabe..49b38b5f 100644 --- a/assets/icons/bold/medal-star-square.svg +++ b/assets/icons/bold/medal-star-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/medal-star.svg b/assets/icons/bold/medal-star.svg index d3813c6f..04d4b8ea 100644 --- a/assets/icons/bold/medal-star.svg +++ b/assets/icons/bold/medal-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/meditation-round.svg b/assets/icons/bold/meditation-round.svg index 13d98a9d..0e9bb40c 100644 --- a/assets/icons/bold/meditation-round.svg +++ b/assets/icons/bold/meditation-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/meditation.svg b/assets/icons/bold/meditation.svg index b85df2cc..747384c2 100644 --- a/assets/icons/bold/meditation.svg +++ b/assets/icons/bold/meditation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mention-circle.svg b/assets/icons/bold/mention-circle.svg index 16c4b06a..d4ba5497 100644 --- a/assets/icons/bold/mention-circle.svg +++ b/assets/icons/bold/mention-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mention-square.svg b/assets/icons/bold/mention-square.svg index c569174a..fb08f4ec 100644 --- a/assets/icons/bold/mention-square.svg +++ b/assets/icons/bold/mention-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/menu-dots.svg b/assets/icons/bold/menu-dots.svg index ff0b5958..6f043743 100644 --- a/assets/icons/bold/menu-dots.svg +++ b/assets/icons/bold/menu-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/microphone-2.svg b/assets/icons/bold/microphone-2.svg index e1d2e427..8def7171 100644 --- a/assets/icons/bold/microphone-2.svg +++ b/assets/icons/bold/microphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/microphone.svg b/assets/icons/bold/microphone.svg index a7b79366..03d329e6 100644 --- a/assets/icons/bold/microphone.svg +++ b/assets/icons/bold/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifer-bug.svg b/assets/icons/bold/minimalistic-magnifer-bug.svg deleted file mode 100644 index db3bf2db..00000000 --- a/assets/icons/bold/minimalistic-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifer-zoom-in.svg b/assets/icons/bold/minimalistic-magnifer-zoom-in.svg deleted file mode 100644 index f4a1d511..00000000 --- a/assets/icons/bold/minimalistic-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifer-zoom-out.svg b/assets/icons/bold/minimalistic-magnifer-zoom-out.svg deleted file mode 100644 index 982778b1..00000000 --- a/assets/icons/bold/minimalistic-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifer.svg b/assets/icons/bold/minimalistic-magnifer.svg deleted file mode 100644 index 84dd49e7..00000000 --- a/assets/icons/bold/minimalistic-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifier-bug.svg b/assets/icons/bold/minimalistic-magnifier-bug.svg new file mode 100644 index 00000000..fa6d0d79 --- /dev/null +++ b/assets/icons/bold/minimalistic-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifier-zoom-in.svg b/assets/icons/bold/minimalistic-magnifier-zoom-in.svg new file mode 100644 index 00000000..4449869c --- /dev/null +++ b/assets/icons/bold/minimalistic-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifier-zoom-out.svg b/assets/icons/bold/minimalistic-magnifier-zoom-out.svg new file mode 100644 index 00000000..da2525ea --- /dev/null +++ b/assets/icons/bold/minimalistic-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/minimalistic-magnifier.svg b/assets/icons/bold/minimalistic-magnifier.svg new file mode 100644 index 00000000..77dae133 --- /dev/null +++ b/assets/icons/bold/minimalistic-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/minimize-square-3.svg b/assets/icons/bold/minimize-square-3.svg index 191649b7..b74a6a84 100644 --- a/assets/icons/bold/minimize-square-3.svg +++ b/assets/icons/bold/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/minimize.svg b/assets/icons/bold/minimize.svg index df9090a6..91e41a28 100644 --- a/assets/icons/bold/minimize.svg +++ b/assets/icons/bold/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mirror-2.svg b/assets/icons/bold/mirror-2.svg new file mode 100644 index 00000000..b4866eac --- /dev/null +++ b/assets/icons/bold/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/mirror-left.svg b/assets/icons/bold/mirror-left.svg index 42878cc2..e34613c7 100644 --- a/assets/icons/bold/mirror-left.svg +++ b/assets/icons/bold/mirror-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mirror-right.svg b/assets/icons/bold/mirror-right.svg index cf8c50c9..0fee8c06 100644 --- a/assets/icons/bold/mirror-right.svg +++ b/assets/icons/bold/mirror-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mirror.svg b/assets/icons/bold/mirror.svg index 42a81829..59cd47c6 100644 --- a/assets/icons/bold/mirror.svg +++ b/assets/icons/bold/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/money-roll.svg b/assets/icons/bold/money-roll.svg new file mode 100644 index 00000000..79d2c993 --- /dev/null +++ b/assets/icons/bold/money-roll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/monitor-camera.svg b/assets/icons/bold/monitor-camera.svg index 7fa4804d..9e484879 100644 --- a/assets/icons/bold/monitor-camera.svg +++ b/assets/icons/bold/monitor-camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/monitor-smartphone.svg b/assets/icons/bold/monitor-smartphone.svg index f3e0067c..ad2011ce 100644 --- a/assets/icons/bold/monitor-smartphone.svg +++ b/assets/icons/bold/monitor-smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/monitor.svg b/assets/icons/bold/monitor.svg index 23d2c9da..c7f10a4c 100644 --- a/assets/icons/bold/monitor.svg +++ b/assets/icons/bold/monitor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/moon-fog.svg b/assets/icons/bold/moon-fog.svg index 90441af8..424f00f6 100644 --- a/assets/icons/bold/moon-fog.svg +++ b/assets/icons/bold/moon-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/moon-sleep.svg b/assets/icons/bold/moon-sleep.svg index 29f9b032..9aa72da7 100644 --- a/assets/icons/bold/moon-sleep.svg +++ b/assets/icons/bold/moon-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/moon-stars.svg b/assets/icons/bold/moon-stars.svg index 4627c6ab..9d9fab76 100644 --- a/assets/icons/bold/moon-stars.svg +++ b/assets/icons/bold/moon-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mouse-circle.svg b/assets/icons/bold/mouse-circle.svg index febe01b0..4a2d4192 100644 --- a/assets/icons/bold/mouse-circle.svg +++ b/assets/icons/bold/mouse-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/mug.svg b/assets/icons/bold/mug.svg new file mode 100644 index 00000000..c23e08d6 --- /dev/null +++ b/assets/icons/bold/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/multiple-forward-left.svg b/assets/icons/bold/multiple-forward-left.svg index da49da6a..c4b62518 100644 --- a/assets/icons/bold/multiple-forward-left.svg +++ b/assets/icons/bold/multiple-forward-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/multiple-forward-right.svg b/assets/icons/bold/multiple-forward-right.svg index 3ea1f75e..9d9933a3 100644 --- a/assets/icons/bold/multiple-forward-right.svg +++ b/assets/icons/bold/multiple-forward-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/music-library-2.svg b/assets/icons/bold/music-library-2.svg index 49eb6941..180cf01d 100644 --- a/assets/icons/bold/music-library-2.svg +++ b/assets/icons/bold/music-library-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/music-library.svg b/assets/icons/bold/music-library.svg index 6be2e5ef..1e90c5ff 100644 --- a/assets/icons/bold/music-library.svg +++ b/assets/icons/bold/music-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/music-note-slider.svg b/assets/icons/bold/music-note-slider.svg index 53c88e94..ce42b324 100644 --- a/assets/icons/bold/music-note-slider.svg +++ b/assets/icons/bold/music-note-slider.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/music-notes.svg b/assets/icons/bold/music-notes.svg index c1361635..b91fd751 100644 --- a/assets/icons/bold/music-notes.svg +++ b/assets/icons/bold/music-notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/muted.svg b/assets/icons/bold/muted.svg index 0fea649c..37d91406 100644 --- a/assets/icons/bold/muted.svg +++ b/assets/icons/bold/muted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notebook-2.svg b/assets/icons/bold/notebook-2.svg new file mode 100644 index 00000000..4b7ece10 --- /dev/null +++ b/assets/icons/bold/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/notebook-bookmark.svg b/assets/icons/bold/notebook-bookmark.svg index 0cb7b655..dbc4f6b7 100644 --- a/assets/icons/bold/notebook-bookmark.svg +++ b/assets/icons/bold/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notebook-minimalistic.svg b/assets/icons/bold/notebook-minimalistic.svg index 0412f0f3..d667d0e3 100644 --- a/assets/icons/bold/notebook-minimalistic.svg +++ b/assets/icons/bold/notebook-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notes-minimalistic.svg b/assets/icons/bold/notes-minimalistic.svg index dc977b4b..4bee8242 100644 --- a/assets/icons/bold/notes-minimalistic.svg +++ b/assets/icons/bold/notes-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notes.svg b/assets/icons/bold/notes.svg index b74caea3..71d12196 100644 --- a/assets/icons/bold/notes.svg +++ b/assets/icons/bold/notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notification-remove.svg b/assets/icons/bold/notification-remove.svg index 90a91613..f41ff2e8 100644 --- a/assets/icons/bold/notification-remove.svg +++ b/assets/icons/bold/notification-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notification-unread-lines.svg b/assets/icons/bold/notification-unread-lines.svg index 7e9a9c8c..d545edc5 100644 --- a/assets/icons/bold/notification-unread-lines.svg +++ b/assets/icons/bold/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/notification-unread.svg b/assets/icons/bold/notification-unread.svg index 349111ca..eaed2abd 100644 --- a/assets/icons/bold/notification-unread.svg +++ b/assets/icons/bold/notification-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/object-scan.svg b/assets/icons/bold/object-scan.svg index 1401a01a..cdffe78c 100644 --- a/assets/icons/bold/object-scan.svg +++ b/assets/icons/bold/object-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/outgoing-call-rounded.svg b/assets/icons/bold/outgoing-call-rounded.svg index 24df8acb..03d9968d 100644 --- a/assets/icons/bold/outgoing-call-rounded.svg +++ b/assets/icons/bold/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/outgoing-call.svg b/assets/icons/bold/outgoing-call.svg index 40f670f9..982a1459 100644 --- a/assets/icons/bold/outgoing-call.svg +++ b/assets/icons/bold/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/oven-mitts.svg b/assets/icons/bold/oven-mitts.svg index 4d828a92..3b21144f 100644 --- a/assets/icons/bold/oven-mitts.svg +++ b/assets/icons/bold/oven-mitts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/paint-roller.svg b/assets/icons/bold/paint-roller.svg index c9dfbb81..f60ef49a 100644 --- a/assets/icons/bold/paint-roller.svg +++ b/assets/icons/bold/paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pallete-2.svg b/assets/icons/bold/palette-2.svg similarity index 100% rename from assets/icons/bold/pallete-2.svg rename to assets/icons/bold/palette-2.svg diff --git a/assets/icons/bold/palette-round.svg b/assets/icons/bold/palette-round.svg index 4277c9a2..84ba1741 100644 --- a/assets/icons/bold/palette-round.svg +++ b/assets/icons/bold/palette-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/palette.svg b/assets/icons/bold/palette.svg index cf66b97b..cffc0479 100644 --- a/assets/icons/bold/palette.svg +++ b/assets/icons/bold/palette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/panorama.svg b/assets/icons/bold/panorama.svg index d84de6f2..a05571fb 100644 --- a/assets/icons/bold/panorama.svg +++ b/assets/icons/bold/panorama.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/paper-bin.svg b/assets/icons/bold/paper-bin.svg index a7b0319d..0ef9afb9 100644 --- a/assets/icons/bold/paper-bin.svg +++ b/assets/icons/bold/paper-bin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/paragraph-spacing.svg b/assets/icons/bold/paragraph-spacing.svg index bc1644a6..9bf149bd 100644 --- a/assets/icons/bold/paragraph-spacing.svg +++ b/assets/icons/bold/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/passport-minimalistic.svg b/assets/icons/bold/passport-minimalistic.svg index b627c94d..94482b35 100644 --- a/assets/icons/bold/passport-minimalistic.svg +++ b/assets/icons/bold/passport-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/passport.svg b/assets/icons/bold/passport.svg index 07fc814f..189ffd3a 100644 --- a/assets/icons/bold/passport.svg +++ b/assets/icons/bold/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/password-minimalistic-input.svg b/assets/icons/bold/password-minimalistic-input.svg index 7f03fe77..b56b8c65 100644 --- a/assets/icons/bold/password-minimalistic-input.svg +++ b/assets/icons/bold/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pause.svg b/assets/icons/bold/pause.svg index 3abbfffd..c556c111 100644 --- a/assets/icons/bold/pause.svg +++ b/assets/icons/bold/pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/paw.svg b/assets/icons/bold/paw.svg index c485ee20..34d91b21 100644 --- a/assets/icons/bold/paw.svg +++ b/assets/icons/bold/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pen-2.svg b/assets/icons/bold/pen-2.svg index e97a83e5..7da382ca 100644 --- a/assets/icons/bold/pen-2.svg +++ b/assets/icons/bold/pen-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pen-new-round.svg b/assets/icons/bold/pen-new-round.svg index 73307cf3..24819a01 100644 --- a/assets/icons/bold/pen-new-round.svg +++ b/assets/icons/bold/pen-new-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pen-new-square.svg b/assets/icons/bold/pen-new-square.svg index e507997a..2042c333 100644 --- a/assets/icons/bold/pen-new-square.svg +++ b/assets/icons/bold/pen-new-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pen.svg b/assets/icons/bold/pen.svg index b086b90b..6d73b381 100644 --- a/assets/icons/bold/pen.svg +++ b/assets/icons/bold/pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/people-nearby.svg b/assets/icons/bold/people-nearby.svg index 4a119fbf..3eb8263e 100644 --- a/assets/icons/bold/people-nearby.svg +++ b/assets/icons/bold/people-nearby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/perfume.svg b/assets/icons/bold/perfume.svg index b7fa7577..32905946 100644 --- a/assets/icons/bold/perfume.svg +++ b/assets/icons/bold/perfume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/phone-calling-rounded.svg b/assets/icons/bold/phone-calling-rounded.svg index d0e5effa..6be01a66 100644 --- a/assets/icons/bold/phone-calling-rounded.svg +++ b/assets/icons/bold/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/phone-calling.svg b/assets/icons/bold/phone-calling.svg index ff860d51..43395cd4 100644 --- a/assets/icons/bold/phone-calling.svg +++ b/assets/icons/bold/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pie-chart-2.svg b/assets/icons/bold/pie-chart-2.svg index b7d5ca26..5dfe93d0 100644 --- a/assets/icons/bold/pie-chart-2.svg +++ b/assets/icons/bold/pie-chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pie-chart-3.svg b/assets/icons/bold/pie-chart-3.svg index c3559293..5fd23d25 100644 --- a/assets/icons/bold/pie-chart-3.svg +++ b/assets/icons/bold/pie-chart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pie-chart.svg b/assets/icons/bold/pie-chart.svg index 344f2aec..f3da91bc 100644 --- a/assets/icons/bold/pie-chart.svg +++ b/assets/icons/bold/pie-chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pill.svg b/assets/icons/bold/pill.svg index 83ab9851..de10d5be 100644 --- a/assets/icons/bold/pill.svg +++ b/assets/icons/bold/pill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pills-2.svg b/assets/icons/bold/pills-2.svg index 6f4a294d..471036b2 100644 --- a/assets/icons/bold/pills-2.svg +++ b/assets/icons/bold/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pills-3.svg b/assets/icons/bold/pills-3.svg index 55c5b492..36cae668 100644 --- a/assets/icons/bold/pills-3.svg +++ b/assets/icons/bold/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pills.svg b/assets/icons/bold/pills.svg index fa56a480..ca6f2f74 100644 --- a/assets/icons/bold/pills.svg +++ b/assets/icons/bold/pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pin-list.svg b/assets/icons/bold/pin-list.svg index dabc3416..1a9bd276 100644 --- a/assets/icons/bold/pin-list.svg +++ b/assets/icons/bold/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pip.svg b/assets/icons/bold/pip.svg index 8f4acbd7..90e22fc4 100644 --- a/assets/icons/bold/pip.svg +++ b/assets/icons/bold/pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pipette.svg b/assets/icons/bold/pipette.svg index c96b81e6..e7164b0a 100644 --- a/assets/icons/bold/pipette.svg +++ b/assets/icons/bold/pipette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/plaaylist-minimalistic.svg b/assets/icons/bold/plaaylist-minimalistic.svg deleted file mode 100644 index e474db1f..00000000 --- a/assets/icons/bold/plaaylist-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/plain-2.svg b/assets/icons/bold/plain-2.svg deleted file mode 100644 index 7b9f10c7..00000000 --- a/assets/icons/bold/plain-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/plane-2.svg b/assets/icons/bold/plane-2.svg new file mode 100644 index 00000000..7740cae9 --- /dev/null +++ b/assets/icons/bold/plane-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/plain-3.svg b/assets/icons/bold/plane-3.svg similarity index 100% rename from assets/icons/bold/plain-3.svg rename to assets/icons/bold/plane-3.svg diff --git a/assets/icons/bold/plain.svg b/assets/icons/bold/plane.svg similarity index 100% rename from assets/icons/bold/plain.svg rename to assets/icons/bold/plane.svg diff --git a/assets/icons/bold/planet-3.svg b/assets/icons/bold/planet-3.svg index 08fb3029..e313d107 100644 --- a/assets/icons/bold/planet-3.svg +++ b/assets/icons/bold/planet-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/planet-4.svg b/assets/icons/bold/planet-4.svg index d7e4b654..acac6241 100644 --- a/assets/icons/bold/planet-4.svg +++ b/assets/icons/bold/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/planet.svg b/assets/icons/bold/planet.svg index 0796e41d..de97269a 100644 --- a/assets/icons/bold/planet.svg +++ b/assets/icons/bold/planet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/plate.svg b/assets/icons/bold/plate.svg index 8ebc27fb..a4fc05c5 100644 --- a/assets/icons/bold/plate.svg +++ b/assets/icons/bold/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/play-stream.svg b/assets/icons/bold/play-stream.svg index 92e52fa8..008e374f 100644 --- a/assets/icons/bold/play-stream.svg +++ b/assets/icons/bold/play-stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/playback-speed.svg b/assets/icons/bold/playback-speed.svg index 94bb746c..e4c5153c 100644 --- a/assets/icons/bold/playback-speed.svg +++ b/assets/icons/bold/playback-speed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/playlist-2.svg b/assets/icons/bold/playlist-2.svg index fc6cf843..9b0d4e7d 100644 --- a/assets/icons/bold/playlist-2.svg +++ b/assets/icons/bold/playlist-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/playlist-minimalistic-2.svg b/assets/icons/bold/playlist-minimalistic-2.svg index c1937846..fc850a7e 100644 --- a/assets/icons/bold/playlist-minimalistic-2.svg +++ b/assets/icons/bold/playlist-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/playlist-minimalistic-3.svg b/assets/icons/bold/playlist-minimalistic-3.svg index c59b5a45..c1101fb8 100644 --- a/assets/icons/bold/playlist-minimalistic-3.svg +++ b/assets/icons/bold/playlist-minimalistic-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/playlist-minimalistic.svg b/assets/icons/bold/playlist-minimalistic.svg new file mode 100644 index 00000000..2039de89 --- /dev/null +++ b/assets/icons/bold/playlist-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/playlist.svg b/assets/icons/bold/playlist.svg index 3f700d8e..ebb1dbb3 100644 --- a/assets/icons/bold/playlist.svg +++ b/assets/icons/bold/playlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/plus-minus.svg b/assets/icons/bold/plus-minus.svg index 598c4930..6267b3cd 100644 --- a/assets/icons/bold/plus-minus.svg +++ b/assets/icons/bold/plus-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/podcast.svg b/assets/icons/bold/podcast.svg index 04b71701..f348c97f 100644 --- a/assets/icons/bold/podcast.svg +++ b/assets/icons/bold/podcast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/point-on-map-perspective.svg b/assets/icons/bold/point-on-map-perspective.svg index c7759bb6..2b88aa43 100644 --- a/assets/icons/bold/point-on-map-perspective.svg +++ b/assets/icons/bold/point-on-map-perspective.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/point-on-map.svg b/assets/icons/bold/point-on-map.svg index 04f057b5..1a109bdd 100644 --- a/assets/icons/bold/point-on-map.svg +++ b/assets/icons/bold/point-on-map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/posts-carousel-horizontal.svg b/assets/icons/bold/posts-carousel-horizontal.svg index 3255a062..8730cc02 100644 --- a/assets/icons/bold/posts-carousel-horizontal.svg +++ b/assets/icons/bold/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/posts-carousel-vertical.svg b/assets/icons/bold/posts-carousel-vertical.svg index 2f43bf03..7816e14c 100644 --- a/assets/icons/bold/posts-carousel-vertical.svg +++ b/assets/icons/bold/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/power.svg b/assets/icons/bold/power.svg index 03ba494a..45fc8e29 100644 --- a/assets/icons/bold/power.svg +++ b/assets/icons/bold/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/printer-2.svg b/assets/icons/bold/printer-2.svg index ec6ca33f..b4324191 100644 --- a/assets/icons/bold/printer-2.svg +++ b/assets/icons/bold/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/printer-minimalistic.svg b/assets/icons/bold/printer-minimalistic.svg index 662028ac..bdf71f84 100644 --- a/assets/icons/bold/printer-minimalistic.svg +++ b/assets/icons/bold/printer-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/printer.svg b/assets/icons/bold/printer.svg index e443983b..815e5020 100644 --- a/assets/icons/bold/printer.svg +++ b/assets/icons/bold/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/pulse-2.svg b/assets/icons/bold/pulse-2.svg index e65fd0eb..e0a43e0e 100644 --- a/assets/icons/bold/pulse-2.svg +++ b/assets/icons/bold/pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/qr-code.svg b/assets/icons/bold/qr-code.svg index d05922ae..502ccbf9 100644 --- a/assets/icons/bold/qr-code.svg +++ b/assets/icons/bold/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/quit-pip.svg b/assets/icons/bold/quit-pip.svg index 2df3cfb9..9b564d08 100644 --- a/assets/icons/bold/quit-pip.svg +++ b/assets/icons/bold/quit-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/radio-minimalistic.svg b/assets/icons/bold/radio-minimalistic.svg index f969d906..5a5bc397 100644 --- a/assets/icons/bold/radio-minimalistic.svg +++ b/assets/icons/bold/radio-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/radio.svg b/assets/icons/bold/radio.svg index 0e534c25..ebdb4b01 100644 --- a/assets/icons/bold/radio.svg +++ b/assets/icons/bold/radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ranking.svg b/assets/icons/bold/ranking.svg index 7315f5fc..4c98b684 100644 --- a/assets/icons/bold/ranking.svg +++ b/assets/icons/bold/ranking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/recive-square.svg b/assets/icons/bold/receive-square.svg similarity index 100% rename from assets/icons/bold/recive-square.svg rename to assets/icons/bold/receive-square.svg diff --git a/assets/icons/bold/recive-twice-square.svg b/assets/icons/bold/receive-twice-square.svg similarity index 100% rename from assets/icons/bold/recive-twice-square.svg rename to assets/icons/bold/receive-twice-square.svg diff --git a/assets/icons/bold/record-audio-circle.svg b/assets/icons/bold/record-audio-circle.svg new file mode 100644 index 00000000..e660432a --- /dev/null +++ b/assets/icons/bold/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/record-circle.svg b/assets/icons/bold/record-circle.svg index 059f190e..7c27f096 100644 --- a/assets/icons/bold/record-circle.svg +++ b/assets/icons/bold/record-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/record-square.svg b/assets/icons/bold/record-square.svg index fc020b68..9f8ef3d0 100644 --- a/assets/icons/bold/record-square.svg +++ b/assets/icons/bold/record-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/reel-2.svg b/assets/icons/bold/reel-2.svg index 9048f5dd..c4ebc279 100644 --- a/assets/icons/bold/reel-2.svg +++ b/assets/icons/bold/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/refresh.svg b/assets/icons/bold/refresh.svg index cdfe2b82..070b8d21 100644 --- a/assets/icons/bold/refresh.svg +++ b/assets/icons/bold/refresh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/remote-controller-2.svg b/assets/icons/bold/remote-controller-2.svg index def7034a..8fd8754e 100644 --- a/assets/icons/bold/remote-controller-2.svg +++ b/assets/icons/bold/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/remote-controller-minimalistic.svg b/assets/icons/bold/remote-controller-minimalistic.svg index 8362adc5..f667b114 100644 --- a/assets/icons/bold/remote-controller-minimalistic.svg +++ b/assets/icons/bold/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/remote-controller.svg b/assets/icons/bold/remote-controller.svg index 65059e0d..ca89e4c3 100644 --- a/assets/icons/bold/remote-controller.svg +++ b/assets/icons/bold/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/reorder-2.svg b/assets/icons/bold/reorder-2.svg new file mode 100644 index 00000000..a38e6f14 --- /dev/null +++ b/assets/icons/bold/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/repeat-one-minimalistic.svg b/assets/icons/bold/repeat-one-minimalistic.svg index c01f8867..25af920d 100644 --- a/assets/icons/bold/repeat-one-minimalistic.svg +++ b/assets/icons/bold/repeat-one-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/revote.svg b/assets/icons/bold/revote.svg index 075f562e..a2214ce6 100644 --- a/assets/icons/bold/revote.svg +++ b/assets/icons/bold/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/rocket-2.svg b/assets/icons/bold/rocket-2.svg index 7d5cac45..bc9519e9 100644 --- a/assets/icons/bold/rocket-2.svg +++ b/assets/icons/bold/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/rocket.svg b/assets/icons/bold/rocket.svg index e8cd5f0a..db71e503 100644 --- a/assets/icons/bold/rocket.svg +++ b/assets/icons/bold/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/rolling-pin.svg b/assets/icons/bold/rolling-pin.svg index 59b3c297..95886be6 100644 --- a/assets/icons/bold/rolling-pin.svg +++ b/assets/icons/bold/rolling-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifer-bug.svg b/assets/icons/bold/rounded-magnifer-bug.svg deleted file mode 100644 index 1594b02b..00000000 --- a/assets/icons/bold/rounded-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifer-zoom-in.svg b/assets/icons/bold/rounded-magnifer-zoom-in.svg deleted file mode 100644 index 1a6eed9b..00000000 --- a/assets/icons/bold/rounded-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifer-zoom-out.svg b/assets/icons/bold/rounded-magnifer-zoom-out.svg deleted file mode 100644 index 318d0f4d..00000000 --- a/assets/icons/bold/rounded-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifer.svg b/assets/icons/bold/rounded-magnifer.svg deleted file mode 100644 index eb351d1b..00000000 --- a/assets/icons/bold/rounded-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifier-bug.svg b/assets/icons/bold/rounded-magnifier-bug.svg new file mode 100644 index 00000000..41d61ada --- /dev/null +++ b/assets/icons/bold/rounded-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifier-zoom-in.svg b/assets/icons/bold/rounded-magnifier-zoom-in.svg new file mode 100644 index 00000000..214baa4f --- /dev/null +++ b/assets/icons/bold/rounded-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifier-zoom-out.svg b/assets/icons/bold/rounded-magnifier-zoom-out.svg new file mode 100644 index 00000000..2aa0f10f --- /dev/null +++ b/assets/icons/bold/rounded-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/rounded-magnifier.svg b/assets/icons/bold/rounded-magnifier.svg new file mode 100644 index 00000000..9a7d3377 --- /dev/null +++ b/assets/icons/bold/rounded-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/routing-2.svg b/assets/icons/bold/routing-2.svg index a900ac80..be7d13b4 100644 --- a/assets/icons/bold/routing-2.svg +++ b/assets/icons/bold/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/routing-3.svg b/assets/icons/bold/routing-3.svg index 7f99c16f..a79a0630 100644 --- a/assets/icons/bold/routing-3.svg +++ b/assets/icons/bold/routing-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ruble.svg b/assets/icons/bold/ruble.svg index c585c056..dec0b2ac 100644 --- a/assets/icons/bold/ruble.svg +++ b/assets/icons/bold/ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/rugby.svg b/assets/icons/bold/rugby.svg index 709def30..8fb33da5 100644 --- a/assets/icons/bold/rugby.svg +++ b/assets/icons/bold/rugby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ruler-cross-pen.svg b/assets/icons/bold/ruler-cross-pen.svg index d8716d85..f6bcdf2b 100644 --- a/assets/icons/bold/ruler-cross-pen.svg +++ b/assets/icons/bold/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ruler-pen.svg b/assets/icons/bold/ruler-pen.svg index 7c37beb2..751521d6 100644 --- a/assets/icons/bold/ruler-pen.svg +++ b/assets/icons/bold/ruler-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/running-2.svg b/assets/icons/bold/running-2.svg index 06fee82b..d423cfcb 100644 --- a/assets/icons/bold/running-2.svg +++ b/assets/icons/bold/running-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/running-round.svg b/assets/icons/bold/running-round.svg index db1a062e..508653ed 100644 --- a/assets/icons/bold/running-round.svg +++ b/assets/icons/bold/running-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/running.svg b/assets/icons/bold/running.svg index 06649125..c5ab6321 100644 --- a/assets/icons/bold/running.svg +++ b/assets/icons/bold/running.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/safe-2.svg b/assets/icons/bold/safe-2.svg index cff4b0f5..1d30891e 100644 --- a/assets/icons/bold/safe-2.svg +++ b/assets/icons/bold/safe-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/safe-circle.svg b/assets/icons/bold/safe-circle.svg index 67690a73..1ae6f3c8 100644 --- a/assets/icons/bold/safe-circle.svg +++ b/assets/icons/bold/safe-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/safe-square.svg b/assets/icons/bold/safe-square.svg index ca8e6115..5852c12f 100644 --- a/assets/icons/bold/safe-square.svg +++ b/assets/icons/bold/safe-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/scale.svg b/assets/icons/bold/scale.svg index e2e653ad..50764aaf 100644 --- a/assets/icons/bold/scale.svg +++ b/assets/icons/bold/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/scaling.svg b/assets/icons/bold/scaling.svg new file mode 100644 index 00000000..1e0353ef --- /dev/null +++ b/assets/icons/bold/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/screen-share.svg b/assets/icons/bold/screen-share.svg index ed1568ae..fdfae66b 100644 --- a/assets/icons/bold/screen-share.svg +++ b/assets/icons/bold/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/screencast-2.svg b/assets/icons/bold/screencast-2.svg index f44659a7..95c5bce0 100644 --- a/assets/icons/bold/screencast-2.svg +++ b/assets/icons/bold/screencast-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/screencast.svg b/assets/icons/bold/screencast.svg index c7d5a610..6b31e89a 100644 --- a/assets/icons/bold/screencast.svg +++ b/assets/icons/bold/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/server-2.svg b/assets/icons/bold/server-2.svg index c89e14e5..2b98bef8 100644 --- a/assets/icons/bold/server-2.svg +++ b/assets/icons/bold/server-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/server-minimalistic.svg b/assets/icons/bold/server-minimalistic.svg index 80dec356..2502d847 100644 --- a/assets/icons/bold/server-minimalistic.svg +++ b/assets/icons/bold/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/server-square-cloud.svg b/assets/icons/bold/server-square-cloud.svg index cd70fd2c..f360a4a8 100644 --- a/assets/icons/bold/server-square-cloud.svg +++ b/assets/icons/bold/server-square-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/server-square-update.svg b/assets/icons/bold/server-square-update.svg index b21a4685..cafb391f 100644 --- a/assets/icons/bold/server-square-update.svg +++ b/assets/icons/bold/server-square-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/server.svg b/assets/icons/bold/server.svg index 5bf34513..f77954df 100644 --- a/assets/icons/bold/server.svg +++ b/assets/icons/bold/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/share-circle.svg b/assets/icons/bold/share-circle.svg index 93cd4e21..e7ea38ac 100644 --- a/assets/icons/bold/share-circle.svg +++ b/assets/icons/bold/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shield-keyhole-minimalistic.svg b/assets/icons/bold/shield-keyhole-minimalistic.svg index 56539a85..8594af86 100644 --- a/assets/icons/bold/shield-keyhole-minimalistic.svg +++ b/assets/icons/bold/shield-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shield-network.svg b/assets/icons/bold/shield-network.svg index b9e1e9ca..89b880ed 100644 --- a/assets/icons/bold/shield-network.svg +++ b/assets/icons/bold/shield-network.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shield.svg b/assets/icons/bold/shield.svg index 68cfc81d..13f268b5 100644 --- a/assets/icons/bold/shield.svg +++ b/assets/icons/bold/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shock-absorber.svg b/assets/icons/bold/shock-absorber.svg index 449fa885..75517c32 100644 --- a/assets/icons/bold/shock-absorber.svg +++ b/assets/icons/bold/shock-absorber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shop-2.svg b/assets/icons/bold/shop-2.svg index b3321f04..4dd1b7a2 100644 --- a/assets/icons/bold/shop-2.svg +++ b/assets/icons/bold/shop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shop-minimalistic.svg b/assets/icons/bold/shop-minimalistic.svg index 4fe33541..ead3eded 100644 --- a/assets/icons/bold/shop-minimalistic.svg +++ b/assets/icons/bold/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/shop.svg b/assets/icons/bold/shop.svg index 031aac28..33fb3b0b 100644 --- a/assets/icons/bold/shop.svg +++ b/assets/icons/bold/shop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sidebar.svg b/assets/icons/bold/sidebar.svg new file mode 100644 index 00000000..9531b7d5 --- /dev/null +++ b/assets/icons/bold/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/siderbar.svg b/assets/icons/bold/siderbar.svg deleted file mode 100644 index 3a25e6de..00000000 --- a/assets/icons/bold/siderbar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/sim-cards.svg b/assets/icons/bold/sim-cards.svg index 6ea8768a..94c84259 100644 --- a/assets/icons/bold/sim-cards.svg +++ b/assets/icons/bold/sim-cards.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/siren-rounded.svg b/assets/icons/bold/siren-rounded.svg index 03009b58..69736eed 100644 --- a/assets/icons/bold/siren-rounded.svg +++ b/assets/icons/bold/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/siren.svg b/assets/icons/bold/siren.svg index 5c113e0a..e98b8da4 100644 --- a/assets/icons/bold/siren.svg +++ b/assets/icons/bold/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skateboard.svg b/assets/icons/bold/skateboard.svg index a2ae845a..d0824bde 100644 --- a/assets/icons/bold/skateboard.svg +++ b/assets/icons/bold/skateboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skateboarding-round.svg b/assets/icons/bold/skateboarding-round.svg index 185e5aae..1d029d04 100644 --- a/assets/icons/bold/skateboarding-round.svg +++ b/assets/icons/bold/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skateboarding.svg b/assets/icons/bold/skateboarding.svg index b7c2eb71..85e8baae 100644 --- a/assets/icons/bold/skateboarding.svg +++ b/assets/icons/bold/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skip-next.svg b/assets/icons/bold/skip-next.svg index 4967187a..c154a1f8 100644 --- a/assets/icons/bold/skip-next.svg +++ b/assets/icons/bold/skip-next.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skip-previous.svg b/assets/icons/bold/skip-previous.svg index 6374854e..16e0a369 100644 --- a/assets/icons/bold/skip-previous.svg +++ b/assets/icons/bold/skip-previous.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/skirt.svg b/assets/icons/bold/skirt.svg index f6529fb3..682445d6 100644 --- a/assets/icons/bold/skirt.svg +++ b/assets/icons/bold/skirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sledgehammer.svg b/assets/icons/bold/sledgehammer.svg index c96c0a3f..cfea6cbb 100644 --- a/assets/icons/bold/sledgehammer.svg +++ b/assets/icons/bold/sledgehammer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sleeping-circle.svg b/assets/icons/bold/sleeping-circle.svg index 468bbde7..af2d254c 100644 --- a/assets/icons/bold/sleeping-circle.svg +++ b/assets/icons/bold/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sleeping-square.svg b/assets/icons/bold/sleeping-square.svg index c7939435..7fea2490 100644 --- a/assets/icons/bold/sleeping-square.svg +++ b/assets/icons/bold/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sleeping.svg b/assets/icons/bold/sleeping.svg index e06a14fc..31ac0b0c 100644 --- a/assets/icons/bold/sleeping.svg +++ b/assets/icons/bold/sleeping.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/slider-horizontal.svg b/assets/icons/bold/slider-horizontal.svg index 39c39dc9..ff97e1aa 100644 --- a/assets/icons/bold/slider-horizontal.svg +++ b/assets/icons/bold/slider-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/slider-minimalistic-horizontal.svg b/assets/icons/bold/slider-minimalistic-horizontal.svg index 81413993..0fb1652f 100644 --- a/assets/icons/bold/slider-minimalistic-horizontal.svg +++ b/assets/icons/bold/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/slider-vertical-minimalistic.svg b/assets/icons/bold/slider-vertical-minimalistic.svg index aef1a2c5..c83ae2fd 100644 --- a/assets/icons/bold/slider-vertical-minimalistic.svg +++ b/assets/icons/bold/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/slider-vertical.svg b/assets/icons/bold/slider-vertical.svg index b9bc9fc5..883924fb 100644 --- a/assets/icons/bold/slider-vertical.svg +++ b/assets/icons/bold/slider-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-home-angle.svg b/assets/icons/bold/smart-home-angle.svg index 3334209b..3a3f183e 100644 --- a/assets/icons/bold/smart-home-angle.svg +++ b/assets/icons/bold/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-home.svg b/assets/icons/bold/smart-home.svg index dacd2009..7950f70f 100644 --- a/assets/icons/bold/smart-home.svg +++ b/assets/icons/bold/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-speaker-2.svg b/assets/icons/bold/smart-speaker-2.svg index a9bc0dfd..cc4900a2 100644 --- a/assets/icons/bold/smart-speaker-2.svg +++ b/assets/icons/bold/smart-speaker-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-speaker.svg b/assets/icons/bold/smart-speaker.svg index 6b9fdbf6..eb97d87a 100644 --- a/assets/icons/bold/smart-speaker.svg +++ b/assets/icons/bold/smart-speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-vacuum-cleaner-2.svg b/assets/icons/bold/smart-vacuum-cleaner-2.svg index 469b1de6..2bdad9bc 100644 --- a/assets/icons/bold/smart-vacuum-cleaner-2.svg +++ b/assets/icons/bold/smart-vacuum-cleaner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smart-vacuum-cleaner.svg b/assets/icons/bold/smart-vacuum-cleaner.svg index 533d904e..4a309952 100644 --- a/assets/icons/bold/smart-vacuum-cleaner.svg +++ b/assets/icons/bold/smart-vacuum-cleaner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smartphone-rotate-2.svg b/assets/icons/bold/smartphone-rotate-2.svg index 40d98a51..6af4f52f 100644 --- a/assets/icons/bold/smartphone-rotate-2.svg +++ b/assets/icons/bold/smartphone-rotate-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smartphone-rotate-orientation.svg b/assets/icons/bold/smartphone-rotate-orientation.svg index b104851f..9dbf7be3 100644 --- a/assets/icons/bold/smartphone-rotate-orientation.svg +++ b/assets/icons/bold/smartphone-rotate-orientation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/smartphone-vibration.svg b/assets/icons/bold/smartphone-vibration.svg index d8880238..1220ec8a 100644 --- a/assets/icons/bold/smartphone-vibration.svg +++ b/assets/icons/bold/smartphone-vibration.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sofa-2.svg b/assets/icons/bold/sofa-2.svg index 8de6590f..447841e2 100644 --- a/assets/icons/bold/sofa-2.svg +++ b/assets/icons/bold/sofa-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sofa-3.svg b/assets/icons/bold/sofa-3.svg index dc2bc3c0..b0aaf5b7 100644 --- a/assets/icons/bold/sofa-3.svg +++ b/assets/icons/bold/sofa-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sofa.svg b/assets/icons/bold/sofa.svg index 45ede73e..0b3fb593 100644 --- a/assets/icons/bold/sofa.svg +++ b/assets/icons/bold/sofa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sort-by-alphabet.svg b/assets/icons/bold/sort-alphabetically.svg similarity index 100% rename from assets/icons/bold/sort-by-alphabet.svg rename to assets/icons/bold/sort-alphabetically.svg diff --git a/assets/icons/bold/sort-by-time.svg b/assets/icons/bold/sort-by-time.svg index 6fac23e3..ac38a704 100644 --- a/assets/icons/bold/sort-by-time.svg +++ b/assets/icons/bold/sort-by-time.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sort-horizontal.svg b/assets/icons/bold/sort-horizontal.svg index 44fa0c8b..a84c3e82 100644 --- a/assets/icons/bold/sort-horizontal.svg +++ b/assets/icons/bold/sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sort-vertical.svg b/assets/icons/bold/sort-vertical.svg index d0c2aaa7..f305086c 100644 --- a/assets/icons/bold/sort-vertical.svg +++ b/assets/icons/bold/sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/speaker-minimalistic.svg b/assets/icons/bold/speaker-minimalistic.svg index 07f812eb..3c2255c1 100644 --- a/assets/icons/bold/speaker-minimalistic.svg +++ b/assets/icons/bold/speaker-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/speaker.svg b/assets/icons/bold/speaker.svg index fa7dfac5..55a14e80 100644 --- a/assets/icons/bold/speaker.svg +++ b/assets/icons/bold/speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/spedometer-low.svg b/assets/icons/bold/speedometer-low.svg similarity index 100% rename from assets/icons/bold/spedometer-low.svg rename to assets/icons/bold/speedometer-low.svg diff --git a/assets/icons/bold/spedometer-max.svg b/assets/icons/bold/speedometer-max.svg similarity index 100% rename from assets/icons/bold/spedometer-max.svg rename to assets/icons/bold/speedometer-max.svg diff --git a/assets/icons/bold/spedometer-middle.svg b/assets/icons/bold/speedometer-middle.svg similarity index 100% rename from assets/icons/bold/spedometer-middle.svg rename to assets/icons/bold/speedometer-middle.svg diff --git a/assets/icons/bold/square-academic-cap-2.svg b/assets/icons/bold/square-academic-cap-2.svg index 7a9fa076..b5f9f33f 100644 --- a/assets/icons/bold/square-academic-cap-2.svg +++ b/assets/icons/bold/square-academic-cap-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-academic-cap.svg b/assets/icons/bold/square-academic-cap.svg index b30f86b3..b7dca217 100644 --- a/assets/icons/bold/square-academic-cap.svg +++ b/assets/icons/bold/square-academic-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-bottom-down.svg b/assets/icons/bold/square-bottom-down.svg index 70007e32..3c594a1c 100644 --- a/assets/icons/bold/square-bottom-down.svg +++ b/assets/icons/bold/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-bottom-up.svg b/assets/icons/bold/square-bottom-up.svg index 158a8487..92b8c133 100644 --- a/assets/icons/bold/square-bottom-up.svg +++ b/assets/icons/bold/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-forward.svg b/assets/icons/bold/square-forward.svg index 7e195f9a..6789835f 100644 --- a/assets/icons/bold/square-forward.svg +++ b/assets/icons/bold/square-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-share-line.svg b/assets/icons/bold/square-share-line.svg index 5845f08e..801a9955 100644 --- a/assets/icons/bold/square-share-line.svg +++ b/assets/icons/bold/square-share-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-top-down.svg b/assets/icons/bold/square-top-down.svg index 0c77d933..61e84759 100644 --- a/assets/icons/bold/square-top-down.svg +++ b/assets/icons/bold/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/square-top-up.svg b/assets/icons/bold/square-top-up.svg index 145356ce..7521bbe4 100644 --- a/assets/icons/bold/square-top-up.svg +++ b/assets/icons/bold/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ssd-round.svg b/assets/icons/bold/ssd-round.svg index a94fc9f6..c3685112 100644 --- a/assets/icons/bold/ssd-round.svg +++ b/assets/icons/bold/ssd-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ssd-square.svg b/assets/icons/bold/ssd-square.svg index 8fb59040..287ce6b5 100644 --- a/assets/icons/bold/ssd-square.svg +++ b/assets/icons/bold/ssd-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-2.svg b/assets/icons/bold/star-2.svg new file mode 100644 index 00000000..3da095b6 --- /dev/null +++ b/assets/icons/bold/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/star-angle.svg b/assets/icons/bold/star-angle.svg index f22039ea..6cb9c598 100644 --- a/assets/icons/bold/star-angle.svg +++ b/assets/icons/bold/star-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-fall-2.svg b/assets/icons/bold/star-fall-2.svg index ea5556fe..a9e4af4b 100644 --- a/assets/icons/bold/star-fall-2.svg +++ b/assets/icons/bold/star-fall-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-fall-minimalistic-2.svg b/assets/icons/bold/star-fall-minimalistic-2.svg index d0553c97..206dae42 100644 --- a/assets/icons/bold/star-fall-minimalistic-2.svg +++ b/assets/icons/bold/star-fall-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-fall-minimalistic.svg b/assets/icons/bold/star-fall-minimalistic.svg index a49dbe63..435de9e7 100644 --- a/assets/icons/bold/star-fall-minimalistic.svg +++ b/assets/icons/bold/star-fall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-fall.svg b/assets/icons/bold/star-fall.svg index b7574cf6..53af97e0 100644 --- a/assets/icons/bold/star-fall.svg +++ b/assets/icons/bold/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-rainbow.svg b/assets/icons/bold/star-rainbow.svg index 94635b75..97e4a265 100644 --- a/assets/icons/bold/star-rainbow.svg +++ b/assets/icons/bold/star-rainbow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-ring.svg b/assets/icons/bold/star-ring.svg index 1c9e9da8..453f2070 100644 --- a/assets/icons/bold/star-ring.svg +++ b/assets/icons/bold/star-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-rings.svg b/assets/icons/bold/star-rings.svg index 3689586b..98b3061a 100644 --- a/assets/icons/bold/star-rings.svg +++ b/assets/icons/bold/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/star-shine.svg b/assets/icons/bold/star-shine.svg index f82e3d91..b0487599 100644 --- a/assets/icons/bold/star-shine.svg +++ b/assets/icons/bold/star-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stars-2.svg b/assets/icons/bold/stars-2.svg new file mode 100644 index 00000000..12d301ac --- /dev/null +++ b/assets/icons/bold/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/stars-line.svg b/assets/icons/bold/stars-line.svg index 5b4c5004..c1d4b7ad 100644 --- a/assets/icons/bold/stars-line.svg +++ b/assets/icons/bold/stars-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stars-minimalistic.svg b/assets/icons/bold/stars-minimalistic.svg index b70e8ed6..78f9d358 100644 --- a/assets/icons/bold/stars-minimalistic.svg +++ b/assets/icons/bold/stars-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stars.svg b/assets/icons/bold/stars.svg index 84614e77..bd74867a 100644 --- a/assets/icons/bold/stars.svg +++ b/assets/icons/bold/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/station-minimalistic.svg b/assets/icons/bold/station-minimalistic.svg index cc76c2f3..d68c2489 100644 --- a/assets/icons/bold/station-minimalistic.svg +++ b/assets/icons/bold/station-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/station.svg b/assets/icons/bold/station.svg index 61e1e982..54c61d17 100644 --- a/assets/icons/bold/station.svg +++ b/assets/icons/bold/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sticker-circle.svg b/assets/icons/bold/sticker-circle.svg index 359344a3..cc2ccd1c 100644 --- a/assets/icons/bold/sticker-circle.svg +++ b/assets/icons/bold/sticker-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sticker-smile-circle-2.svg b/assets/icons/bold/sticker-smile-circle-2.svg index 51869432..4bbf4470 100644 --- a/assets/icons/bold/sticker-smile-circle-2.svg +++ b/assets/icons/bold/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sticker-smile-circle.svg b/assets/icons/bold/sticker-smile-circle.svg index fc93ccb0..a9c4888a 100644 --- a/assets/icons/bold/sticker-smile-circle.svg +++ b/assets/icons/bold/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sticker-smile-square.svg b/assets/icons/bold/sticker-smile-square.svg index 63da83cf..33d85516 100644 --- a/assets/icons/bold/sticker-smile-square.svg +++ b/assets/icons/bold/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sticker-square.svg b/assets/icons/bold/sticker-square.svg index 62752270..a6b07e43 100644 --- a/assets/icons/bold/sticker-square.svg +++ b/assets/icons/bold/sticker-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stopwatch-pause.svg b/assets/icons/bold/stopwatch-pause.svg index e36f6458..a3b167a6 100644 --- a/assets/icons/bold/stopwatch-pause.svg +++ b/assets/icons/bold/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stopwatch-play.svg b/assets/icons/bold/stopwatch-play.svg index 78e158d7..cabf3d80 100644 --- a/assets/icons/bold/stopwatch-play.svg +++ b/assets/icons/bold/stopwatch-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stopwatch.svg b/assets/icons/bold/stopwatch.svg index 400c4ba1..c2a9997e 100644 --- a/assets/icons/bold/stopwatch.svg +++ b/assets/icons/bold/stopwatch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/streets-map-point.svg b/assets/icons/bold/streets-map-point.svg index 792116ac..022e2aa5 100644 --- a/assets/icons/bold/streets-map-point.svg +++ b/assets/icons/bold/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/streets-navigation.svg b/assets/icons/bold/streets-navigation.svg index 8ee46a9f..7b5f1527 100644 --- a/assets/icons/bold/streets-navigation.svg +++ b/assets/icons/bold/streets-navigation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/streets.svg b/assets/icons/bold/streets.svg index a04d7013..9e21dbf9 100644 --- a/assets/icons/bold/streets.svg +++ b/assets/icons/bold/streets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stretching-round.svg b/assets/icons/bold/stretching-round.svg index bd8b2147..210eb934 100644 --- a/assets/icons/bold/stretching-round.svg +++ b/assets/icons/bold/stretching-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/stretching.svg b/assets/icons/bold/stretching.svg index 2f3ce1ce..ed79038f 100644 --- a/assets/icons/bold/stretching.svg +++ b/assets/icons/bold/stretching.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/suitcase-lines.svg b/assets/icons/bold/suitcase-lines.svg index 3661a215..a144cd9b 100644 --- a/assets/icons/bold/suitcase-lines.svg +++ b/assets/icons/bold/suitcase-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/suitcase-tag.svg b/assets/icons/bold/suitcase-tag.svg index 7b82b50f..554d5e52 100644 --- a/assets/icons/bold/suitcase-tag.svg +++ b/assets/icons/bold/suitcase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sun-2.svg b/assets/icons/bold/sun-2.svg index 3421c76c..52fa379c 100644 --- a/assets/icons/bold/sun-2.svg +++ b/assets/icons/bold/sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sun-fog.svg b/assets/icons/bold/sun-fog.svg index 520ceef4..b2c19014 100644 --- a/assets/icons/bold/sun-fog.svg +++ b/assets/icons/bold/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sun.svg b/assets/icons/bold/sun.svg index 3c24d7dc..30028e69 100644 --- a/assets/icons/bold/sun.svg +++ b/assets/icons/bold/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sunrise.svg b/assets/icons/bold/sunrise.svg index 2f4ba726..200bad98 100644 --- a/assets/icons/bold/sunrise.svg +++ b/assets/icons/bold/sunrise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/sunset.svg b/assets/icons/bold/sunset.svg index 6203a3af..4b39f54b 100644 --- a/assets/icons/bold/sunset.svg +++ b/assets/icons/bold/sunset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/suspension-bolt.svg b/assets/icons/bold/suspension-bolt.svg index d90a2d58..d4abb8a1 100644 --- a/assets/icons/bold/suspension-bolt.svg +++ b/assets/icons/bold/suspension-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/suspension-cross.svg b/assets/icons/bold/suspension-cross.svg index 0bb97137..dda1f55b 100644 --- a/assets/icons/bold/suspension-cross.svg +++ b/assets/icons/bold/suspension-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/swimming.svg b/assets/icons/bold/swimming.svg index bee044a3..381c322b 100644 --- a/assets/icons/bold/swimming.svg +++ b/assets/icons/bold/swimming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/syringe.svg b/assets/icons/bold/syringe.svg index 03d1ad16..316ada25 100644 --- a/assets/icons/bold/syringe.svg +++ b/assets/icons/bold/syringe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tea-cup.svg b/assets/icons/bold/tea-cup.svg index 59727555..9a270ef4 100644 --- a/assets/icons/bold/tea-cup.svg +++ b/assets/icons/bold/tea-cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/telescope.svg b/assets/icons/bold/telescope.svg index f8571d86..8a44a698 100644 --- a/assets/icons/bold/telescope.svg +++ b/assets/icons/bold/telescope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tennis.svg b/assets/icons/bold/tennis.svg index 55513c62..38ef79c2 100644 --- a/assets/icons/bold/tennis.svg +++ b/assets/icons/bold/tennis.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/test-tube-minimalistic.svg b/assets/icons/bold/test-tube-minimalistic.svg index d4fdc7b7..4294e6ef 100644 --- a/assets/icons/bold/test-tube-minimalistic.svg +++ b/assets/icons/bold/test-tube-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/test-tube.svg b/assets/icons/bold/test-tube.svg index 53d95d86..e3b40cb2 100644 --- a/assets/icons/bold/test-tube.svg +++ b/assets/icons/bold/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-bold-circle.svg b/assets/icons/bold/text-bold-circle.svg index 89cbfbd1..6dc579af 100644 --- a/assets/icons/bold/text-bold-circle.svg +++ b/assets/icons/bold/text-bold-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-bold-square.svg b/assets/icons/bold/text-bold-square.svg index bebeb9b0..564d955c 100644 --- a/assets/icons/bold/text-bold-square.svg +++ b/assets/icons/bold/text-bold-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-cross.svg b/assets/icons/bold/text-cross.svg index 5b158ff2..8c739f57 100644 --- a/assets/icons/bold/text-cross.svg +++ b/assets/icons/bold/text-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-field-focus.svg b/assets/icons/bold/text-field-focus.svg index 26ed0ed4..410084c1 100644 --- a/assets/icons/bold/text-field-focus.svg +++ b/assets/icons/bold/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-format.svg b/assets/icons/bold/text-format.svg new file mode 100644 index 00000000..39e9c77f --- /dev/null +++ b/assets/icons/bold/text-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/text-square-2.svg b/assets/icons/bold/text-square-2.svg index 671250ee..502b4e35 100644 --- a/assets/icons/bold/text-square-2.svg +++ b/assets/icons/bold/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text-underline.svg b/assets/icons/bold/text-underline.svg index 09e02c17..61e965bf 100644 --- a/assets/icons/bold/text-underline.svg +++ b/assets/icons/bold/text-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/text.svg b/assets/icons/bold/text.svg deleted file mode 100644 index 1ed3640c..00000000 --- a/assets/icons/bold/text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/three-squares.svg b/assets/icons/bold/three-squares.svg index ca66dd33..b70d6560 100644 --- a/assets/icons/bold/three-squares.svg +++ b/assets/icons/bold/three-squares.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ticker-star.svg b/assets/icons/bold/ticker-star.svg index 11c27a01..04921e73 100644 --- a/assets/icons/bold/ticker-star.svg +++ b/assets/icons/bold/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/to-pip.svg b/assets/icons/bold/to-pip.svg index dac52092..9814cea8 100644 --- a/assets/icons/bold/to-pip.svg +++ b/assets/icons/bold/to-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tornado-small.svg b/assets/icons/bold/tornado-small.svg index 9bf2b698..1ce1a988 100644 --- a/assets/icons/bold/tornado-small.svg +++ b/assets/icons/bold/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tornado.svg b/assets/icons/bold/tornado.svg index 1b313b51..2d713469 100644 --- a/assets/icons/bold/tornado.svg +++ b/assets/icons/bold/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tram.svg b/assets/icons/bold/tram.svg index a52c51f0..7bb2b481 100644 --- a/assets/icons/bold/tram.svg +++ b/assets/icons/bold/tram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/transfer-horizontal.svg b/assets/icons/bold/transfer-horizontal.svg index f670cf57..e08ace2a 100644 --- a/assets/icons/bold/transfer-horizontal.svg +++ b/assets/icons/bold/transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/transfer-vertical.svg b/assets/icons/bold/transfer-vertical.svg index 2d67b433..6d3587b9 100644 --- a/assets/icons/bold/transfer-vertical.svg +++ b/assets/icons/bold/transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/translation-2.svg b/assets/icons/bold/translation-2.svg index 03ffe567..34b5ac10 100644 --- a/assets/icons/bold/translation-2.svg +++ b/assets/icons/bold/translation-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/translation.svg b/assets/icons/bold/translation.svg index 6b2c8225..39b3f427 100644 --- a/assets/icons/bold/translation.svg +++ b/assets/icons/bold/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/transmission.svg b/assets/icons/bold/transmission.svg index 95dc23ee..086b6d5a 100644 --- a/assets/icons/bold/transmission.svg +++ b/assets/icons/bold/transmission.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/trash-bin-2.svg b/assets/icons/bold/trash-bin-2.svg index 11ca73d7..fe28a4b8 100644 --- a/assets/icons/bold/trash-bin-2.svg +++ b/assets/icons/bold/trash-bin-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/trash-bin-minimalistic-2.svg b/assets/icons/bold/trash-bin-minimalistic-2.svg index 291fb74b..951f1868 100644 --- a/assets/icons/bold/trash-bin-minimalistic-2.svg +++ b/assets/icons/bold/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/trash-bin-minimalistic.svg b/assets/icons/bold/trash-bin-minimalistic.svg index 8e4e50a2..f10408f6 100644 --- a/assets/icons/bold/trash-bin-minimalistic.svg +++ b/assets/icons/bold/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/trash-bin-trash.svg b/assets/icons/bold/trash-bin-trash.svg index 6bb7d8a3..539e7a8e 100644 --- a/assets/icons/bold/trash-bin-trash.svg +++ b/assets/icons/bold/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/treadmill-round.svg b/assets/icons/bold/treadmill-round.svg index 555836c6..4b3b3370 100644 --- a/assets/icons/bold/treadmill-round.svg +++ b/assets/icons/bold/treadmill-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/treadmill.svg b/assets/icons/bold/treadmill.svg index d8b99205..dca41a9c 100644 --- a/assets/icons/bold/treadmill.svg +++ b/assets/icons/bold/treadmill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning-2.svg b/assets/icons/bold/tuning-2.svg index e0e01102..e0354055 100644 --- a/assets/icons/bold/tuning-2.svg +++ b/assets/icons/bold/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning-3.svg b/assets/icons/bold/tuning-3.svg index e5456bf9..ae1c4369 100644 --- a/assets/icons/bold/tuning-3.svg +++ b/assets/icons/bold/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning-4.svg b/assets/icons/bold/tuning-4.svg index d74728ec..7c6da987 100644 --- a/assets/icons/bold/tuning-4.svg +++ b/assets/icons/bold/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning-square-2.svg b/assets/icons/bold/tuning-square-2.svg index adeba561..fff7d9ca 100644 --- a/assets/icons/bold/tuning-square-2.svg +++ b/assets/icons/bold/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning-square.svg b/assets/icons/bold/tuning-square.svg index 6294dbf4..37dd8d26 100644 --- a/assets/icons/bold/tuning-square.svg +++ b/assets/icons/bold/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tuning.svg b/assets/icons/bold/tuning.svg index 8e9c4696..41b4689a 100644 --- a/assets/icons/bold/tuning.svg +++ b/assets/icons/bold/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/turntable-music-note.svg b/assets/icons/bold/turntable-music-note.svg index 63acd6fd..b35d5538 100644 --- a/assets/icons/bold/turntable-music-note.svg +++ b/assets/icons/bold/turntable-music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/turntable.svg b/assets/icons/bold/turntable.svg index 96d82397..555767a0 100644 --- a/assets/icons/bold/turntable.svg +++ b/assets/icons/bold/turntable.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/tv.svg b/assets/icons/bold/tv.svg index cb2b59f6..b564268c 100644 --- a/assets/icons/bold/tv.svg +++ b/assets/icons/bold/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ufo-2.svg b/assets/icons/bold/ufo-2.svg index 50402656..b4f41a11 100644 --- a/assets/icons/bold/ufo-2.svg +++ b/assets/icons/bold/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ufo-3.svg b/assets/icons/bold/ufo-3.svg index 875ce1a0..2fc21116 100644 --- a/assets/icons/bold/ufo-3.svg +++ b/assets/icons/bold/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/ufo.svg b/assets/icons/bold/ufo.svg index 455ed58e..ce2eb8f1 100644 --- a/assets/icons/bold/ufo.svg +++ b/assets/icons/bold/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/umbrella.svg b/assets/icons/bold/umbrella.svg index a0171cb2..86dafbcc 100644 --- a/assets/icons/bold/umbrella.svg +++ b/assets/icons/bold/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/unlink-minimalistic.svg b/assets/icons/bold/unlink-minimalistic.svg new file mode 100644 index 00000000..344bb20f --- /dev/null +++ b/assets/icons/bold/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/unlink.svg b/assets/icons/bold/unlink.svg new file mode 100644 index 00000000..f8fa31ea --- /dev/null +++ b/assets/icons/bold/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/upload-minimalistic.svg b/assets/icons/bold/upload-minimalistic.svg index ba0e6957..755d7e72 100644 --- a/assets/icons/bold/upload-minimalistic.svg +++ b/assets/icons/bold/upload-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/upload-track-2.svg b/assets/icons/bold/upload-track-2.svg index f0a3a8ce..6ac140ef 100644 --- a/assets/icons/bold/upload-track-2.svg +++ b/assets/icons/bold/upload-track-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/upload-track.svg b/assets/icons/bold/upload-track.svg index 8a489c7b..b0a32f94 100644 --- a/assets/icons/bold/upload-track.svg +++ b/assets/icons/bold/upload-track.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/upload.svg b/assets/icons/bold/upload.svg index 4d89bb0a..c936a956 100644 --- a/assets/icons/bold/upload.svg +++ b/assets/icons/bold/upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-block-rounded.svg b/assets/icons/bold/user-block-rounded.svg index 790a2192..e4a77021 100644 --- a/assets/icons/bold/user-block-rounded.svg +++ b/assets/icons/bold/user-block-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-block.svg b/assets/icons/bold/user-block.svg index f6997e72..8a085b03 100644 --- a/assets/icons/bold/user-block.svg +++ b/assets/icons/bold/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-check-rounded.svg b/assets/icons/bold/user-check-rounded.svg index 3c4496d7..7df3d05d 100644 --- a/assets/icons/bold/user-check-rounded.svg +++ b/assets/icons/bold/user-check-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-check.svg b/assets/icons/bold/user-check.svg index a81b8aba..49d74db8 100644 --- a/assets/icons/bold/user-check.svg +++ b/assets/icons/bold/user-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-cross-rounded.svg b/assets/icons/bold/user-cross-rounded.svg index cb744d16..e3eadc66 100644 --- a/assets/icons/bold/user-cross-rounded.svg +++ b/assets/icons/bold/user-cross-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-cross.svg b/assets/icons/bold/user-cross.svg index d449fab1..b8658382 100644 --- a/assets/icons/bold/user-cross.svg +++ b/assets/icons/bold/user-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-hand-up.svg b/assets/icons/bold/user-hand-up.svg index 389e3250..1106b267 100644 --- a/assets/icons/bold/user-hand-up.svg +++ b/assets/icons/bold/user-hand-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-hands.svg b/assets/icons/bold/user-hands.svg index d20ef185..dc644f85 100644 --- a/assets/icons/bold/user-hands.svg +++ b/assets/icons/bold/user-hands.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-heart-rounded.svg b/assets/icons/bold/user-heart-rounded.svg index d275daaa..08e81474 100644 --- a/assets/icons/bold/user-heart-rounded.svg +++ b/assets/icons/bold/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-heart.svg b/assets/icons/bold/user-heart.svg index f7803dac..dd8cce43 100644 --- a/assets/icons/bold/user-heart.svg +++ b/assets/icons/bold/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-minus-rounded.svg b/assets/icons/bold/user-minus-rounded.svg index 6e4c7774..0af680cd 100644 --- a/assets/icons/bold/user-minus-rounded.svg +++ b/assets/icons/bold/user-minus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-minus.svg b/assets/icons/bold/user-minus.svg index 449319f4..cf26703d 100644 --- a/assets/icons/bold/user-minus.svg +++ b/assets/icons/bold/user-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-plus-rounded.svg b/assets/icons/bold/user-plus-rounded.svg index 2ca5f1a6..bfbd29c8 100644 --- a/assets/icons/bold/user-plus-rounded.svg +++ b/assets/icons/bold/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-plus.svg b/assets/icons/bold/user-plus.svg index 4ec9b521..eb1103eb 100644 --- a/assets/icons/bold/user-plus.svg +++ b/assets/icons/bold/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-rounded.svg b/assets/icons/bold/user-rounded.svg index 4e26dfbf..8d40a3a7 100644 --- a/assets/icons/bold/user-rounded.svg +++ b/assets/icons/bold/user-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-speak-rounded.svg b/assets/icons/bold/user-speak-rounded.svg index 5943e1c4..14d931fe 100644 --- a/assets/icons/bold/user-speak-rounded.svg +++ b/assets/icons/bold/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user-speak.svg b/assets/icons/bold/user-speak.svg index ad67f7b2..a94e0b83 100644 --- a/assets/icons/bold/user-speak.svg +++ b/assets/icons/bold/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/user.svg b/assets/icons/bold/user.svg index 06ac309a..e6aba1f4 100644 --- a/assets/icons/bold/user.svg +++ b/assets/icons/bold/user.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/users-group-rounded.svg b/assets/icons/bold/users-group-rounded.svg index 56b216f3..b4017c6f 100644 --- a/assets/icons/bold/users-group-rounded.svg +++ b/assets/icons/bold/users-group-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/users-group-two-rounded.svg b/assets/icons/bold/users-group-two-rounded.svg index 528bd1ee..97690851 100644 --- a/assets/icons/bold/users-group-two-rounded.svg +++ b/assets/icons/bold/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/vanity.svg b/assets/icons/bold/vanity.svg new file mode 100644 index 00000000..e823976c --- /dev/null +++ b/assets/icons/bold/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/video-frame-2.svg b/assets/icons/bold/video-frame-2.svg index 8e5b46ac..3ac35295 100644 --- a/assets/icons/bold/video-frame-2.svg +++ b/assets/icons/bold/video-frame-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/video-frame-play-horizontal.svg b/assets/icons/bold/video-frame-play-horizontal.svg index a2b9fc95..dd77bab1 100644 --- a/assets/icons/bold/video-frame-play-horizontal.svg +++ b/assets/icons/bold/video-frame-play-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/video-frame-play-vertical.svg b/assets/icons/bold/video-frame-play-vertical.svg index fba2a4da..87ea9cf8 100644 --- a/assets/icons/bold/video-frame-play-vertical.svg +++ b/assets/icons/bold/video-frame-play-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/video-frame-replace.svg b/assets/icons/bold/video-frame-replace.svg index 7487429a..7b141638 100644 --- a/assets/icons/bold/video-frame-replace.svg +++ b/assets/icons/bold/video-frame-replace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/video-frame.svg b/assets/icons/bold/video-frame.svg index 956ae51d..b4640be3 100644 --- a/assets/icons/bold/video-frame.svg +++ b/assets/icons/bold/video-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/video-library.svg b/assets/icons/bold/video-library.svg index 66d0ede8..f426c697 100644 --- a/assets/icons/bold/video-library.svg +++ b/assets/icons/bold/video-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/vinyl.svg b/assets/icons/bold/vinyl.svg index 626affaa..8a657619 100644 --- a/assets/icons/bold/vinyl.svg +++ b/assets/icons/bold/vinyl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/virus.svg b/assets/icons/bold/virus.svg index e7a6d69c..22d35f2a 100644 --- a/assets/icons/bold/virus.svg +++ b/assets/icons/bold/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volleyball-2.svg b/assets/icons/bold/volleyball-2.svg index 99bdd0c6..aaf1fa37 100644 --- a/assets/icons/bold/volleyball-2.svg +++ b/assets/icons/bold/volleyball-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volleyball.svg b/assets/icons/bold/volleyball.svg index 2f5fcac5..c85e2c66 100644 --- a/assets/icons/bold/volleyball.svg +++ b/assets/icons/bold/volleyball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volume-cross.svg b/assets/icons/bold/volume-cross.svg index f0b141ce..715c46f3 100644 --- a/assets/icons/bold/volume-cross.svg +++ b/assets/icons/bold/volume-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volume-knob.svg b/assets/icons/bold/volume-knob.svg index d43a7417..2121994e 100644 --- a/assets/icons/bold/volume-knob.svg +++ b/assets/icons/bold/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volume-loud.svg b/assets/icons/bold/volume-loud.svg index cd3f2e49..0b972eec 100644 --- a/assets/icons/bold/volume-loud.svg +++ b/assets/icons/bold/volume-loud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/volume-small.svg b/assets/icons/bold/volume-small.svg index abedb90f..a09ecf04 100644 --- a/assets/icons/bold/volume-small.svg +++ b/assets/icons/bold/volume-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wad-of-money.svg b/assets/icons/bold/wad-of-money.svg deleted file mode 100644 index 632ceb69..00000000 --- a/assets/icons/bold/wad-of-money.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/walking-round.svg b/assets/icons/bold/walking-round.svg index 650e39f9..3202295e 100644 --- a/assets/icons/bold/walking-round.svg +++ b/assets/icons/bold/walking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/walking.svg b/assets/icons/bold/walking.svg index c64c69d3..e8e3a593 100644 --- a/assets/icons/bold/walking.svg +++ b/assets/icons/bold/walking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wallet-money.svg b/assets/icons/bold/wallet-money.svg index f1065a6b..5d3dca1c 100644 --- a/assets/icons/bold/wallet-money.svg +++ b/assets/icons/bold/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wallpaper.svg b/assets/icons/bold/wallpaper.svg index e475efb0..f568f34c 100644 --- a/assets/icons/bold/wallpaper.svg +++ b/assets/icons/bold/wallpaper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/washing-machine-minimalistic.svg b/assets/icons/bold/washing-machine-minimalistic.svg index d7965a12..d06907cc 100644 --- a/assets/icons/bold/washing-machine-minimalistic.svg +++ b/assets/icons/bold/washing-machine-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/washing-machine.svg b/assets/icons/bold/washing-machine.svg index cf61906f..b3cf4b8d 100644 --- a/assets/icons/bold/washing-machine.svg +++ b/assets/icons/bold/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/watch-round.svg b/assets/icons/bold/watch-round.svg index a060ec7f..e11da880 100644 --- a/assets/icons/bold/watch-round.svg +++ b/assets/icons/bold/watch-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/watch-square-minimalistic-charge.svg b/assets/icons/bold/watch-square-minimalistic-charge.svg index 4a66097c..9090115b 100644 --- a/assets/icons/bold/watch-square-minimalistic-charge.svg +++ b/assets/icons/bold/watch-square-minimalistic-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/watch-square-minimalistic.svg b/assets/icons/bold/watch-square-minimalistic.svg index e77df8b2..8ceb0619 100644 --- a/assets/icons/bold/watch-square-minimalistic.svg +++ b/assets/icons/bold/watch-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/watch-square.svg b/assets/icons/bold/watch-square.svg index 5cc3c0e4..a354e070 100644 --- a/assets/icons/bold/watch-square.svg +++ b/assets/icons/bold/watch-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/water-sun.svg b/assets/icons/bold/water-sun.svg index 12909e82..5d8064db 100644 --- a/assets/icons/bold/water-sun.svg +++ b/assets/icons/bold/water-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/waterdrops.svg b/assets/icons/bold/waterdrops.svg index 89df8a41..f8900bde 100644 --- a/assets/icons/bold/waterdrops.svg +++ b/assets/icons/bold/waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/weigher.svg b/assets/icons/bold/weigher.svg deleted file mode 100644 index 50764aaf..00000000 --- a/assets/icons/bold/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/wheel-angle.svg b/assets/icons/bold/wheel-angle.svg index 94584457..8fd29a7d 100644 --- a/assets/icons/bold/wheel-angle.svg +++ b/assets/icons/bold/wheel-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wi-fi-router-minimalistic.svg b/assets/icons/bold/wi-fi-router-minimalistic.svg index 9b4989c3..6dae5c93 100644 --- a/assets/icons/bold/wi-fi-router-minimalistic.svg +++ b/assets/icons/bold/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wi-fi-router-round.svg b/assets/icons/bold/wi-fi-router-round.svg index 27d3f0a8..19f66980 100644 --- a/assets/icons/bold/wi-fi-router-round.svg +++ b/assets/icons/bold/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wi-fi-router.svg b/assets/icons/bold/wi-fi-router.svg index 658dcc30..c390c686 100644 --- a/assets/icons/bold/wi-fi-router.svg +++ b/assets/icons/bold/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-2.svg b/assets/icons/bold/widget-2.svg index 9ae30bd0..d2bba966 100644 --- a/assets/icons/bold/widget-2.svg +++ b/assets/icons/bold/widget-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-3.svg b/assets/icons/bold/widget-3.svg index 19cb2335..e8dc881e 100644 --- a/assets/icons/bold/widget-3.svg +++ b/assets/icons/bold/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-4.svg b/assets/icons/bold/widget-4.svg index eeb0d921..8dc29572 100644 --- a/assets/icons/bold/widget-4.svg +++ b/assets/icons/bold/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-5.svg b/assets/icons/bold/widget-5.svg index 58672963..721d4264 100644 --- a/assets/icons/bold/widget-5.svg +++ b/assets/icons/bold/widget-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-6.svg b/assets/icons/bold/widget-6.svg index 9d9bd451..07bd6acb 100644 --- a/assets/icons/bold/widget-6.svg +++ b/assets/icons/bold/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget-add.svg b/assets/icons/bold/widget-add.svg index dbd26fa2..57aaf849 100644 --- a/assets/icons/bold/widget-add.svg +++ b/assets/icons/bold/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/widget.svg b/assets/icons/bold/widget.svg index a8cfcdb3..daf90c33 100644 --- a/assets/icons/bold/widget.svg +++ b/assets/icons/bold/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/win-rar.svg b/assets/icons/bold/win-rar.svg new file mode 100644 index 00000000..29c860a0 --- /dev/null +++ b/assets/icons/bold/win-rar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold/window-frame.svg b/assets/icons/bold/window-frame.svg index 05cd4651..6cd1d918 100644 --- a/assets/icons/bold/window-frame.svg +++ b/assets/icons/bold/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wineglass-triangle.svg b/assets/icons/bold/wineglass-triangle.svg index 95d54856..be9d82a0 100644 --- a/assets/icons/bold/wineglass-triangle.svg +++ b/assets/icons/bold/wineglass-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/wineglass.svg b/assets/icons/bold/wineglass.svg index db69ff42..0fcd25f2 100644 --- a/assets/icons/bold/wineglass.svg +++ b/assets/icons/bold/wineglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/winrar.svg b/assets/icons/bold/winrar.svg deleted file mode 100644 index f918e67a..00000000 --- a/assets/icons/bold/winrar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold/wireless-charge.svg b/assets/icons/bold/wireless-charge.svg index 128919a2..f0f44c27 100644 --- a/assets/icons/bold/wireless-charge.svg +++ b/assets/icons/bold/wireless-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold/xxx.svg b/assets/icons/bold/xxx.svg index 29d2cc2a..6af04d94 100644 --- a/assets/icons/bold/xxx.svg +++ b/assets/icons/bold/xxx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/4k.svg b/assets/icons/bold_duotone/4k.svg deleted file mode 100644 index a2b09d61..00000000 --- a/assets/icons/bold_duotone/4k.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/accessibility.svg b/assets/icons/bold_duotone/accessibility.svg index 24727219..c87dd1e5 100644 --- a/assets/icons/bold_duotone/accessibility.svg +++ b/assets/icons/bold_duotone/accessibility.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/accumulator.svg b/assets/icons/bold_duotone/accumulator.svg deleted file mode 100644 index 8911d301..00000000 --- a/assets/icons/bold_duotone/accumulator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/add-circle.svg b/assets/icons/bold_duotone/add-circle.svg index e202da78..08a1c69c 100644 --- a/assets/icons/bold_duotone/add-circle.svg +++ b/assets/icons/bold_duotone/add-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/add-folder.svg b/assets/icons/bold_duotone/add-folder.svg index e07f7319..572ebaf6 100644 --- a/assets/icons/bold_duotone/add-folder.svg +++ b/assets/icons/bold_duotone/add-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/add-square.svg b/assets/icons/bold_duotone/add-square.svg index fbb41252..5a4b3a21 100644 --- a/assets/icons/bold_duotone/add-square.svg +++ b/assets/icons/bold_duotone/add-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/adhesive-plaster-2.svg b/assets/icons/bold_duotone/adhesive-plaster-2.svg index 79acabb4..f2b9e901 100644 --- a/assets/icons/bold_duotone/adhesive-plaster-2.svg +++ b/assets/icons/bold_duotone/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/adhesive-plaster.svg b/assets/icons/bold_duotone/adhesive-plaster.svg index 6c9a2f5b..e8162993 100644 --- a/assets/icons/bold_duotone/adhesive-plaster.svg +++ b/assets/icons/bold_duotone/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-case-charge.svg b/assets/icons/bold_duotone/airbuds-case-charge.svg index e0c5f124..c3a0e6ff 100644 --- a/assets/icons/bold_duotone/airbuds-case-charge.svg +++ b/assets/icons/bold_duotone/airbuds-case-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-case-minimalistic.svg b/assets/icons/bold_duotone/airbuds-case-minimalistic.svg index ae18cd79..104d14bc 100644 --- a/assets/icons/bold_duotone/airbuds-case-minimalistic.svg +++ b/assets/icons/bold_duotone/airbuds-case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-case-open.svg b/assets/icons/bold_duotone/airbuds-case-open.svg index d343521e..7f84ea8a 100644 --- a/assets/icons/bold_duotone/airbuds-case-open.svg +++ b/assets/icons/bold_duotone/airbuds-case-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-case.svg b/assets/icons/bold_duotone/airbuds-case.svg index e38e8476..f140bff8 100644 --- a/assets/icons/bold_duotone/airbuds-case.svg +++ b/assets/icons/bold_duotone/airbuds-case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-charge.svg b/assets/icons/bold_duotone/airbuds-charge.svg index ec3e3e4b..ec0b3c09 100644 --- a/assets/icons/bold_duotone/airbuds-charge.svg +++ b/assets/icons/bold_duotone/airbuds-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-check.svg b/assets/icons/bold_duotone/airbuds-check.svg index 6bdf1b3e..08835c6d 100644 --- a/assets/icons/bold_duotone/airbuds-check.svg +++ b/assets/icons/bold_duotone/airbuds-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-left.svg b/assets/icons/bold_duotone/airbuds-left.svg index 019d53cb..63651621 100644 --- a/assets/icons/bold_duotone/airbuds-left.svg +++ b/assets/icons/bold_duotone/airbuds-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-remove.svg b/assets/icons/bold_duotone/airbuds-remove.svg index dec7e3d1..476af401 100644 --- a/assets/icons/bold_duotone/airbuds-remove.svg +++ b/assets/icons/bold_duotone/airbuds-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds-right.svg b/assets/icons/bold_duotone/airbuds-right.svg index 6a064cc4..0a7e3420 100644 --- a/assets/icons/bold_duotone/airbuds-right.svg +++ b/assets/icons/bold_duotone/airbuds-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/airbuds.svg b/assets/icons/bold_duotone/airbuds.svg index 0f2867a8..bf350c69 100644 --- a/assets/icons/bold_duotone/airbuds.svg +++ b/assets/icons/bold_duotone/airbuds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-add.svg b/assets/icons/bold_duotone/alarm-add.svg index 3838cba6..39752488 100644 --- a/assets/icons/bold_duotone/alarm-add.svg +++ b/assets/icons/bold_duotone/alarm-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-pause.svg b/assets/icons/bold_duotone/alarm-pause.svg index 44cce158..17147637 100644 --- a/assets/icons/bold_duotone/alarm-pause.svg +++ b/assets/icons/bold_duotone/alarm-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-play.svg b/assets/icons/bold_duotone/alarm-play.svg index 73b1e60c..99b31557 100644 --- a/assets/icons/bold_duotone/alarm-play.svg +++ b/assets/icons/bold_duotone/alarm-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-remove.svg b/assets/icons/bold_duotone/alarm-remove.svg index 4f61aaeb..882def3d 100644 --- a/assets/icons/bold_duotone/alarm-remove.svg +++ b/assets/icons/bold_duotone/alarm-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-sleep.svg b/assets/icons/bold_duotone/alarm-sleep.svg index b7d10822..cd330905 100644 --- a/assets/icons/bold_duotone/alarm-sleep.svg +++ b/assets/icons/bold_duotone/alarm-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm-turn-off.svg b/assets/icons/bold_duotone/alarm-turn-off.svg index 488c7b80..06f931f2 100644 --- a/assets/icons/bold_duotone/alarm-turn-off.svg +++ b/assets/icons/bold_duotone/alarm-turn-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alarm.svg b/assets/icons/bold_duotone/alarm.svg index 167485eb..876f365d 100644 --- a/assets/icons/bold_duotone/alarm.svg +++ b/assets/icons/bold_duotone/alarm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/album.svg b/assets/icons/bold_duotone/album.svg index 9baaca16..608a3c4f 100644 --- a/assets/icons/bold_duotone/album.svg +++ b/assets/icons/bold_duotone/album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-bottom.svg b/assets/icons/bold_duotone/align-bottom.svg index 9d527565..4c4f1138 100644 --- a/assets/icons/bold_duotone/align-bottom.svg +++ b/assets/icons/bold_duotone/align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-horizonta-spacing.svg b/assets/icons/bold_duotone/align-horizonta-spacing.svg deleted file mode 100644 index 1d0a55f9..00000000 --- a/assets/icons/bold_duotone/align-horizonta-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-horizontal-center.svg b/assets/icons/bold_duotone/align-horizontal-center.svg index 9110528f..603f52ff 100644 --- a/assets/icons/bold_duotone/align-horizontal-center.svg +++ b/assets/icons/bold_duotone/align-horizontal-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-horizontal-spacing.svg b/assets/icons/bold_duotone/align-horizontal-spacing.svg new file mode 100644 index 00000000..2a119754 --- /dev/null +++ b/assets/icons/bold_duotone/align-horizontal-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-left.svg b/assets/icons/bold_duotone/align-left.svg index 25608a91..20823cd0 100644 --- a/assets/icons/bold_duotone/align-left.svg +++ b/assets/icons/bold_duotone/align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-right.svg b/assets/icons/bold_duotone/align-right.svg index f4ab6c96..c2659111 100644 --- a/assets/icons/bold_duotone/align-right.svg +++ b/assets/icons/bold_duotone/align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-top.svg b/assets/icons/bold_duotone/align-top.svg index 5335bef6..4139ef45 100644 --- a/assets/icons/bold_duotone/align-top.svg +++ b/assets/icons/bold_duotone/align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-vertical-center.svg b/assets/icons/bold_duotone/align-vertical-center.svg index 18498512..589530ce 100644 --- a/assets/icons/bold_duotone/align-vertical-center.svg +++ b/assets/icons/bold_duotone/align-vertical-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/align-vertical-spacing.svg b/assets/icons/bold_duotone/align-vertical-spacing.svg index 8417ece9..d8fd7edc 100644 --- a/assets/icons/bold_duotone/align-vertical-spacing.svg +++ b/assets/icons/bold_duotone/align-vertical-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alt-arrow-down.svg b/assets/icons/bold_duotone/alt-arrow-down.svg index 2e8db237..f7d9e7ce 100644 --- a/assets/icons/bold_duotone/alt-arrow-down.svg +++ b/assets/icons/bold_duotone/alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alt-arrow-left.svg b/assets/icons/bold_duotone/alt-arrow-left.svg index 9de4aadc..03855556 100644 --- a/assets/icons/bold_duotone/alt-arrow-left.svg +++ b/assets/icons/bold_duotone/alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alt-arrow-right.svg b/assets/icons/bold_duotone/alt-arrow-right.svg index 6f3b44c7..60411fb1 100644 --- a/assets/icons/bold_duotone/alt-arrow-right.svg +++ b/assets/icons/bold_duotone/alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/alt-arrow-up.svg b/assets/icons/bold_duotone/alt-arrow-up.svg index 4c2bd9bc..240982a0 100644 --- a/assets/icons/bold_duotone/alt-arrow-up.svg +++ b/assets/icons/bold_duotone/alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-check.svg b/assets/icons/bold_duotone/archive-check.svg index 2f9726fb..b7158690 100644 --- a/assets/icons/bold_duotone/archive-check.svg +++ b/assets/icons/bold_duotone/archive-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-down-minimalistic.svg b/assets/icons/bold_duotone/archive-down-minimalistic.svg new file mode 100644 index 00000000..5cb16485 --- /dev/null +++ b/assets/icons/bold_duotone/archive-down-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-down-minimlistic.svg b/assets/icons/bold_duotone/archive-down-minimlistic.svg deleted file mode 100644 index f2386b77..00000000 --- a/assets/icons/bold_duotone/archive-down-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-down.svg b/assets/icons/bold_duotone/archive-down.svg index 5c0781ca..a6b9c1b9 100644 --- a/assets/icons/bold_duotone/archive-down.svg +++ b/assets/icons/bold_duotone/archive-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-minimalistic.svg b/assets/icons/bold_duotone/archive-minimalistic.svg index ccd6103a..7ab876c8 100644 --- a/assets/icons/bold_duotone/archive-minimalistic.svg +++ b/assets/icons/bold_duotone/archive-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-up-minimalistic.svg b/assets/icons/bold_duotone/archive-up-minimalistic.svg new file mode 100644 index 00000000..b60fcf1e --- /dev/null +++ b/assets/icons/bold_duotone/archive-up-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-up-minimlistic.svg b/assets/icons/bold_duotone/archive-up-minimlistic.svg deleted file mode 100644 index b96f034b..00000000 --- a/assets/icons/bold_duotone/archive-up-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive-up.svg b/assets/icons/bold_duotone/archive-up.svg index cf56a50c..79870a59 100644 --- a/assets/icons/bold_duotone/archive-up.svg +++ b/assets/icons/bold_duotone/archive-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/archive.svg b/assets/icons/bold_duotone/archive.svg index dd5240ff..9570d3b6 100644 --- a/assets/icons/bold_duotone/archive.svg +++ b/assets/icons/bold_duotone/archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/armchair-2.svg b/assets/icons/bold_duotone/armchair-2.svg index f6df4481..6e880948 100644 --- a/assets/icons/bold_duotone/armchair-2.svg +++ b/assets/icons/bold_duotone/armchair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/armchair.svg b/assets/icons/bold_duotone/armchair.svg index 8a5d7f2e..b445962f 100644 --- a/assets/icons/bold_duotone/armchair.svg +++ b/assets/icons/bold_duotone/armchair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-down.svg b/assets/icons/bold_duotone/arrow-down.svg index bba9e745..71fc197e 100644 --- a/assets/icons/bold_duotone/arrow-down.svg +++ b/assets/icons/bold_duotone/arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-left-down.svg b/assets/icons/bold_duotone/arrow-left-down.svg index 6509092c..bcfbbe23 100644 --- a/assets/icons/bold_duotone/arrow-left-down.svg +++ b/assets/icons/bold_duotone/arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-left-up.svg b/assets/icons/bold_duotone/arrow-left-up.svg index cc291683..5a6498a9 100644 --- a/assets/icons/bold_duotone/arrow-left-up.svg +++ b/assets/icons/bold_duotone/arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-left.svg b/assets/icons/bold_duotone/arrow-left.svg index d7555a63..fc0dd816 100644 --- a/assets/icons/bold_duotone/arrow-left.svg +++ b/assets/icons/bold_duotone/arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-right-down.svg b/assets/icons/bold_duotone/arrow-right-down.svg index 4a679cea..bf5b3426 100644 --- a/assets/icons/bold_duotone/arrow-right-down.svg +++ b/assets/icons/bold_duotone/arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-right-up.svg b/assets/icons/bold_duotone/arrow-right-up.svg index 26f6dd02..bf1b16c5 100644 --- a/assets/icons/bold_duotone/arrow-right-up.svg +++ b/assets/icons/bold_duotone/arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-right.svg b/assets/icons/bold_duotone/arrow-right.svg index 722f6647..4a412c33 100644 --- a/assets/icons/bold_duotone/arrow-right.svg +++ b/assets/icons/bold_duotone/arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-to-down-left.svg b/assets/icons/bold_duotone/arrow-to-down-left.svg index b294bcb3..5ee34aed 100644 --- a/assets/icons/bold_duotone/arrow-to-down-left.svg +++ b/assets/icons/bold_duotone/arrow-to-down-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-to-down-right.svg b/assets/icons/bold_duotone/arrow-to-down-right.svg index 546e1c3c..5f9307d9 100644 --- a/assets/icons/bold_duotone/arrow-to-down-right.svg +++ b/assets/icons/bold_duotone/arrow-to-down-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-to-top-left.svg b/assets/icons/bold_duotone/arrow-to-top-left.svg index a7258e78..5f8dfc2f 100644 --- a/assets/icons/bold_duotone/arrow-to-top-left.svg +++ b/assets/icons/bold_duotone/arrow-to-top-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-to-top-right.svg b/assets/icons/bold_duotone/arrow-to-top-right.svg index 92458698..5fe503ec 100644 --- a/assets/icons/bold_duotone/arrow-to-top-right.svg +++ b/assets/icons/bold_duotone/arrow-to-top-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/arrow-up.svg b/assets/icons/bold_duotone/arrow-up.svg index a0d8fdcd..9bedc4c5 100644 --- a/assets/icons/bold_duotone/arrow-up.svg +++ b/assets/icons/bold_duotone/arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/asteroid.svg b/assets/icons/bold_duotone/asteroid.svg index d1d13be2..7d21eb4d 100644 --- a/assets/icons/bold_duotone/asteroid.svg +++ b/assets/icons/bold_duotone/asteroid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/atom.svg b/assets/icons/bold_duotone/atom.svg index 250f755a..d81c5072 100644 --- a/assets/icons/bold_duotone/atom.svg +++ b/assets/icons/bold_duotone/atom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/augmented-reality.svg b/assets/icons/bold_duotone/augmented-reality.svg index 32904ee6..eb05a043 100644 --- a/assets/icons/bold_duotone/augmented-reality.svg +++ b/assets/icons/bold_duotone/augmented-reality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/backpack.svg b/assets/icons/bold_duotone/backpack.svg index 35628b0e..e2a2a117 100644 --- a/assets/icons/bold_duotone/backpack.svg +++ b/assets/icons/bold_duotone/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/backspace.svg b/assets/icons/bold_duotone/backspace.svg index ace8621c..721731f5 100644 --- a/assets/icons/bold_duotone/backspace.svg +++ b/assets/icons/bold_duotone/backspace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bacteria.svg b/assets/icons/bold_duotone/bacteria.svg index b5dd1b90..b86235da 100644 --- a/assets/icons/bold_duotone/bacteria.svg +++ b/assets/icons/bold_duotone/bacteria.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-2.svg b/assets/icons/bold_duotone/bag-2.svg index fd521a9d..3d430b22 100644 --- a/assets/icons/bold_duotone/bag-2.svg +++ b/assets/icons/bold_duotone/bag-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-3.svg b/assets/icons/bold_duotone/bag-3.svg index 21a7392d..8f018f1e 100644 --- a/assets/icons/bold_duotone/bag-3.svg +++ b/assets/icons/bold_duotone/bag-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-4.svg b/assets/icons/bold_duotone/bag-4.svg index 17b3b2a2..eac891a0 100644 --- a/assets/icons/bold_duotone/bag-4.svg +++ b/assets/icons/bold_duotone/bag-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-5.svg b/assets/icons/bold_duotone/bag-5.svg index b41fa30c..cac5ff41 100644 --- a/assets/icons/bold_duotone/bag-5.svg +++ b/assets/icons/bold_duotone/bag-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-check.svg b/assets/icons/bold_duotone/bag-check.svg index 9535ac56..f2398e3b 100644 --- a/assets/icons/bold_duotone/bag-check.svg +++ b/assets/icons/bold_duotone/bag-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-cross.svg b/assets/icons/bold_duotone/bag-cross.svg index 343fed58..372bfefb 100644 --- a/assets/icons/bold_duotone/bag-cross.svg +++ b/assets/icons/bold_duotone/bag-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-heart.svg b/assets/icons/bold_duotone/bag-heart.svg index 8eeaa270..16802bfb 100644 --- a/assets/icons/bold_duotone/bag-heart.svg +++ b/assets/icons/bold_duotone/bag-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-music-2.svg b/assets/icons/bold_duotone/bag-music-2.svg index 76ebaf0a..efd4679f 100644 --- a/assets/icons/bold_duotone/bag-music-2.svg +++ b/assets/icons/bold_duotone/bag-music-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-music.svg b/assets/icons/bold_duotone/bag-music.svg index 5fd4a5b0..16409901 100644 --- a/assets/icons/bold_duotone/bag-music.svg +++ b/assets/icons/bold_duotone/bag-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag-smile.svg b/assets/icons/bold_duotone/bag-smile.svg index f9ca72f7..bfdfba85 100644 --- a/assets/icons/bold_duotone/bag-smile.svg +++ b/assets/icons/bold_duotone/bag-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bag.svg b/assets/icons/bold_duotone/bag.svg index 9403b49b..17b49555 100644 --- a/assets/icons/bold_duotone/bag.svg +++ b/assets/icons/bold_duotone/bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/balloon.svg b/assets/icons/bold_duotone/balloon.svg index a8db3f6a..96694fab 100644 --- a/assets/icons/bold_duotone/balloon.svg +++ b/assets/icons/bold_duotone/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/balls.svg b/assets/icons/bold_duotone/balls.svg index 4a1eeef2..9f06192c 100644 --- a/assets/icons/bold_duotone/balls.svg +++ b/assets/icons/bold_duotone/balls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/banknote-2.svg b/assets/icons/bold_duotone/banknote-2.svg index 3f0676c1..d1f5b189 100644 --- a/assets/icons/bold_duotone/banknote-2.svg +++ b/assets/icons/bold_duotone/banknote-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/banknote.svg b/assets/icons/bold_duotone/banknote.svg index 556a7339..1582c6c7 100644 --- a/assets/icons/bold_duotone/banknote.svg +++ b/assets/icons/bold_duotone/banknote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bar-chair.svg b/assets/icons/bold_duotone/bar-chair.svg index 8054a7d9..f72404a3 100644 --- a/assets/icons/bold_duotone/bar-chair.svg +++ b/assets/icons/bold_duotone/bar-chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/basketball.svg b/assets/icons/bold_duotone/basketball.svg index dbafba61..f3d0dc81 100644 --- a/assets/icons/bold_duotone/basketball.svg +++ b/assets/icons/bold_duotone/basketball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bath.svg b/assets/icons/bold_duotone/bath.svg index 86971544..5a488659 100644 --- a/assets/icons/bold_duotone/bath.svg +++ b/assets/icons/bold_duotone/bath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-charge-minimalistic.svg b/assets/icons/bold_duotone/battery-charge-minimalistic.svg index 7180f87b..9c444efc 100644 --- a/assets/icons/bold_duotone/battery-charge-minimalistic.svg +++ b/assets/icons/bold_duotone/battery-charge-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-charge.svg b/assets/icons/bold_duotone/battery-charge.svg index 077c322e..d71f87a6 100644 --- a/assets/icons/bold_duotone/battery-charge.svg +++ b/assets/icons/bold_duotone/battery-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-full-minimalistic.svg b/assets/icons/bold_duotone/battery-full-minimalistic.svg index 0ffe2a1d..afa7ebb4 100644 --- a/assets/icons/bold_duotone/battery-full-minimalistic.svg +++ b/assets/icons/bold_duotone/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-full.svg b/assets/icons/bold_duotone/battery-full.svg index 83c85f4b..090cfe4e 100644 --- a/assets/icons/bold_duotone/battery-full.svg +++ b/assets/icons/bold_duotone/battery-full.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-half-minimalistic.svg b/assets/icons/bold_duotone/battery-half-minimalistic.svg index 608dd819..3123d316 100644 --- a/assets/icons/bold_duotone/battery-half-minimalistic.svg +++ b/assets/icons/bold_duotone/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-half.svg b/assets/icons/bold_duotone/battery-half.svg index 1658a9f3..4df5296e 100644 --- a/assets/icons/bold_duotone/battery-half.svg +++ b/assets/icons/bold_duotone/battery-half.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-low-minimalistic.svg b/assets/icons/bold_duotone/battery-low-minimalistic.svg index 1f2506f7..22f4d4b3 100644 --- a/assets/icons/bold_duotone/battery-low-minimalistic.svg +++ b/assets/icons/bold_duotone/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/battery-low.svg b/assets/icons/bold_duotone/battery-low.svg index 86bf631a..16d37b7e 100644 --- a/assets/icons/bold_duotone/battery-low.svg +++ b/assets/icons/bold_duotone/battery-low.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bed.svg b/assets/icons/bold_duotone/bed.svg index a9712a50..df559d3d 100644 --- a/assets/icons/bold_duotone/bed.svg +++ b/assets/icons/bold_duotone/bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bedside-table-2.svg b/assets/icons/bold_duotone/bedside-table-2.svg index 1fcfd974..4e2a6a3c 100644 --- a/assets/icons/bold_duotone/bedside-table-2.svg +++ b/assets/icons/bold_duotone/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bedside-table-3.svg b/assets/icons/bold_duotone/bedside-table-3.svg index 78c9afa3..09371a4e 100644 --- a/assets/icons/bold_duotone/bedside-table-3.svg +++ b/assets/icons/bold_duotone/bedside-table-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bedside-table-4.svg b/assets/icons/bold_duotone/bedside-table-4.svg index bebb6012..86a47948 100644 --- a/assets/icons/bold_duotone/bedside-table-4.svg +++ b/assets/icons/bold_duotone/bedside-table-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bedside-table.svg b/assets/icons/bold_duotone/bedside-table.svg index 5ecaa303..d4225f82 100644 --- a/assets/icons/bold_duotone/bedside-table.svg +++ b/assets/icons/bold_duotone/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bell-bing.svg b/assets/icons/bold_duotone/bell-bing.svg deleted file mode 100644 index cdb5b5b5..00000000 --- a/assets/icons/bold_duotone/bell-bing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/bell-off.svg b/assets/icons/bold_duotone/bell-off.svg index 9e656cc8..f0d0682a 100644 --- a/assets/icons/bold_duotone/bell-off.svg +++ b/assets/icons/bold_duotone/bell-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bell-ring.svg b/assets/icons/bold_duotone/bell-ring.svg new file mode 100644 index 00000000..b3d92254 --- /dev/null +++ b/assets/icons/bold_duotone/bell-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bell.svg b/assets/icons/bold_duotone/bell.svg index 467c99ee..be250e96 100644 --- a/assets/icons/bold_duotone/bell.svg +++ b/assets/icons/bold_duotone/bell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/benzene-ring.svg b/assets/icons/bold_duotone/benzene-ring.svg index 01036642..e06f47c2 100644 --- a/assets/icons/bold_duotone/benzene-ring.svg +++ b/assets/icons/bold_duotone/benzene-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bicycling-round.svg b/assets/icons/bold_duotone/bicycling-round.svg index b7e8dc9a..b0b6d617 100644 --- a/assets/icons/bold_duotone/bicycling-round.svg +++ b/assets/icons/bold_duotone/bicycling-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bicycling.svg b/assets/icons/bold_duotone/bicycling.svg index 8b066208..1544ff3e 100644 --- a/assets/icons/bold_duotone/bicycling.svg +++ b/assets/icons/bold_duotone/bicycling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bill-2.svg b/assets/icons/bold_duotone/bill-2.svg new file mode 100644 index 00000000..5a844681 --- /dev/null +++ b/assets/icons/bold_duotone/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bill-check.svg b/assets/icons/bold_duotone/bill-check.svg index 999a5504..d97cb420 100644 --- a/assets/icons/bold_duotone/bill-check.svg +++ b/assets/icons/bold_duotone/bill-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bill-cross.svg b/assets/icons/bold_duotone/bill-cross.svg index dcfc72b1..112d70b2 100644 --- a/assets/icons/bold_duotone/bill-cross.svg +++ b/assets/icons/bold_duotone/bill-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bill-list.svg b/assets/icons/bold_duotone/bill-list.svg index cf22eb87..c2bd7913 100644 --- a/assets/icons/bold_duotone/bill-list.svg +++ b/assets/icons/bold_duotone/bill-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bill.svg b/assets/icons/bold_duotone/bill.svg index e10c7154..c59e1d10 100644 --- a/assets/icons/bold_duotone/bill.svg +++ b/assets/icons/bold_duotone/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/black-hole-2.svg b/assets/icons/bold_duotone/black-hole-2.svg index 91ab5248..98bc641f 100644 --- a/assets/icons/bold_duotone/black-hole-2.svg +++ b/assets/icons/bold_duotone/black-hole-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/black-hole-3.svg b/assets/icons/bold_duotone/black-hole-3.svg index 0fca102c..e557adf7 100644 --- a/assets/icons/bold_duotone/black-hole-3.svg +++ b/assets/icons/bold_duotone/black-hole-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/black-hole.svg b/assets/icons/bold_duotone/black-hole.svg index c039b46c..bf7850fb 100644 --- a/assets/icons/bold_duotone/black-hole.svg +++ b/assets/icons/bold_duotone/black-hole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bluetooth-circle.svg b/assets/icons/bold_duotone/bluetooth-circle.svg index 2f5b658f..39490a48 100644 --- a/assets/icons/bold_duotone/bluetooth-circle.svg +++ b/assets/icons/bold_duotone/bluetooth-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bluetooth-square.svg b/assets/icons/bold_duotone/bluetooth-square.svg index 53c4fcff..e5823399 100644 --- a/assets/icons/bold_duotone/bluetooth-square.svg +++ b/assets/icons/bold_duotone/bluetooth-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bluetooth-wave.svg b/assets/icons/bold_duotone/bluetooth-wave.svg index 87aca43e..0584d13a 100644 --- a/assets/icons/bold_duotone/bluetooth-wave.svg +++ b/assets/icons/bold_duotone/bluetooth-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bluetooth.svg b/assets/icons/bold_duotone/bluetooth.svg index 5761ede4..1c739a4e 100644 --- a/assets/icons/bold_duotone/bluetooth.svg +++ b/assets/icons/bold_duotone/bluetooth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/body-shape.svg b/assets/icons/bold_duotone/body-shape.svg index fb2d5c33..fed7d0df 100644 --- a/assets/icons/bold_duotone/body-shape.svg +++ b/assets/icons/bold_duotone/body-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/body.svg b/assets/icons/bold_duotone/body.svg index 5dfb7498..6b88d69a 100644 --- a/assets/icons/bold_duotone/body.svg +++ b/assets/icons/bold_duotone/body.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bolt-circle.svg b/assets/icons/bold_duotone/bolt-circle.svg index f4a3a708..21ac2bed 100644 --- a/assets/icons/bold_duotone/bolt-circle.svg +++ b/assets/icons/bold_duotone/bolt-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bolt.svg b/assets/icons/bold_duotone/bolt.svg index 282025fb..a47e02ab 100644 --- a/assets/icons/bold_duotone/bolt.svg +++ b/assets/icons/bold_duotone/bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bomb-emoji.svg b/assets/icons/bold_duotone/bomb-emoji.svg index 31e04023..0a23d62f 100644 --- a/assets/icons/bold_duotone/bomb-emoji.svg +++ b/assets/icons/bold_duotone/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bomb-minimalistic.svg b/assets/icons/bold_duotone/bomb-minimalistic.svg index af385228..2e34e03a 100644 --- a/assets/icons/bold_duotone/bomb-minimalistic.svg +++ b/assets/icons/bold_duotone/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bomb.svg b/assets/icons/bold_duotone/bomb.svg index 97ca0444..78e76959 100644 --- a/assets/icons/bold_duotone/bomb.svg +++ b/assets/icons/bold_duotone/bomb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bone-broken.svg b/assets/icons/bold_duotone/bone-broken.svg deleted file mode 100644 index f4cd3e8a..00000000 --- a/assets/icons/bold_duotone/bone-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/bone-crack.svg b/assets/icons/bold_duotone/bone-crack.svg index 4740c5cc..3dfdd1b6 100644 --- a/assets/icons/bold_duotone/bone-crack.svg +++ b/assets/icons/bold_duotone/bone-crack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bone-fracture.svg b/assets/icons/bold_duotone/bone-fracture.svg new file mode 100644 index 00000000..86661972 --- /dev/null +++ b/assets/icons/bold_duotone/bone-fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bone.svg b/assets/icons/bold_duotone/bone.svg index 03112005..a9479532 100644 --- a/assets/icons/bold_duotone/bone.svg +++ b/assets/icons/bold_duotone/bone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bones.svg b/assets/icons/bold_duotone/bones.svg index d1b7f7ba..98546f8c 100644 --- a/assets/icons/bold_duotone/bones.svg +++ b/assets/icons/bold_duotone/bones.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/book-2.svg b/assets/icons/bold_duotone/book-2.svg index 4893627a..0d36a897 100644 --- a/assets/icons/bold_duotone/book-2.svg +++ b/assets/icons/bold_duotone/book-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/book-bookmark-minimalistic.svg b/assets/icons/bold_duotone/book-bookmark-minimalistic.svg index f7d72e10..65d9a1ba 100644 --- a/assets/icons/bold_duotone/book-bookmark-minimalistic.svg +++ b/assets/icons/bold_duotone/book-bookmark-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/book-bookmark.svg b/assets/icons/bold_duotone/book-bookmark.svg index d0d61248..4f459542 100644 --- a/assets/icons/bold_duotone/book-bookmark.svg +++ b/assets/icons/bold_duotone/book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/book-minimalistic.svg b/assets/icons/bold_duotone/book-minimalistic.svg index 12d6cff7..508eb6f4 100644 --- a/assets/icons/bold_duotone/book-minimalistic.svg +++ b/assets/icons/bold_duotone/book-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/book.svg b/assets/icons/bold_duotone/book.svg index 20f0d9e9..8fe5baff 100644 --- a/assets/icons/bold_duotone/book.svg +++ b/assets/icons/bold_duotone/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bookmark-circle.svg b/assets/icons/bold_duotone/bookmark-circle.svg index 3733c945..cd8084cc 100644 --- a/assets/icons/bold_duotone/bookmark-circle.svg +++ b/assets/icons/bold_duotone/bookmark-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bookmark-opened.svg b/assets/icons/bold_duotone/bookmark-opened.svg index cdea6692..9803843b 100644 --- a/assets/icons/bold_duotone/bookmark-opened.svg +++ b/assets/icons/bold_duotone/bookmark-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bookmark-square-minimalistic.svg b/assets/icons/bold_duotone/bookmark-square-minimalistic.svg index 173ac413..07949fbd 100644 --- a/assets/icons/bold_duotone/bookmark-square-minimalistic.svg +++ b/assets/icons/bold_duotone/bookmark-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bookmark-square.svg b/assets/icons/bold_duotone/bookmark-square.svg index 91832d20..92eac4c6 100644 --- a/assets/icons/bold_duotone/bookmark-square.svg +++ b/assets/icons/bold_duotone/bookmark-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bookmark.svg b/assets/icons/bold_duotone/bookmark.svg index 12870063..25d6e7fb 100644 --- a/assets/icons/bold_duotone/bookmark.svg +++ b/assets/icons/bold_duotone/bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/boombox.svg b/assets/icons/bold_duotone/boombox.svg index f6cb9e5f..5f3b8fda 100644 --- a/assets/icons/bold_duotone/boombox.svg +++ b/assets/icons/bold_duotone/boombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bottle.svg b/assets/icons/bold_duotone/bottle.svg index a8b6e3f1..d5390c06 100644 --- a/assets/icons/bold_duotone/bottle.svg +++ b/assets/icons/bold_duotone/bottle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bowling.svg b/assets/icons/bold_duotone/bowling.svg index ce255f03..2f7c0042 100644 --- a/assets/icons/bold_duotone/bowling.svg +++ b/assets/icons/bold_duotone/bowling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/box-minimalistic.svg b/assets/icons/bold_duotone/box-minimalistic.svg index c107696c..94539812 100644 --- a/assets/icons/bold_duotone/box-minimalistic.svg +++ b/assets/icons/bold_duotone/box-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/box.svg b/assets/icons/bold_duotone/box.svg index a3dcd588..262da1e4 100644 --- a/assets/icons/bold_duotone/box.svg +++ b/assets/icons/bold_duotone/box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/branching-paths-down.svg b/assets/icons/bold_duotone/branching-paths-down.svg index 4dea4869..5820eca8 100644 --- a/assets/icons/bold_duotone/branching-paths-down.svg +++ b/assets/icons/bold_duotone/branching-paths-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/branching-paths-up.svg b/assets/icons/bold_duotone/branching-paths-up.svg index cb265f18..1ecc8d95 100644 --- a/assets/icons/bold_duotone/branching-paths-up.svg +++ b/assets/icons/bold_duotone/branching-paths-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/broom.svg b/assets/icons/bold_duotone/broom.svg index 40fb6da8..e07e05d6 100644 --- a/assets/icons/bold_duotone/broom.svg +++ b/assets/icons/bold_duotone/broom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bug-minimalistic.svg b/assets/icons/bold_duotone/bug-minimalistic.svg index 08f17a96..556b14ca 100644 --- a/assets/icons/bold_duotone/bug-minimalistic.svg +++ b/assets/icons/bold_duotone/bug-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bug.svg b/assets/icons/bold_duotone/bug.svg index f7107469..b8ace557 100644 --- a/assets/icons/bold_duotone/bug.svg +++ b/assets/icons/bold_duotone/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/buildings-2.svg b/assets/icons/bold_duotone/buildings-2.svg index 579745ba..63a4c3da 100644 --- a/assets/icons/bold_duotone/buildings-2.svg +++ b/assets/icons/bold_duotone/buildings-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/buildings-3.svg b/assets/icons/bold_duotone/buildings-3.svg index 3a1bc1f1..1eaaecd1 100644 --- a/assets/icons/bold_duotone/buildings-3.svg +++ b/assets/icons/bold_duotone/buildings-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/buildings.svg b/assets/icons/bold_duotone/buildings.svg index b3659af5..f2dff318 100644 --- a/assets/icons/bold_duotone/buildings.svg +++ b/assets/icons/bold_duotone/buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/bus.svg b/assets/icons/bold_duotone/bus.svg index a4a8f6fb..33aed320 100644 --- a/assets/icons/bold_duotone/bus.svg +++ b/assets/icons/bold_duotone/bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calculator-minimalistic.svg b/assets/icons/bold_duotone/calculator-minimalistic.svg index 9dee9fed..ad2ce5dc 100644 --- a/assets/icons/bold_duotone/calculator-minimalistic.svg +++ b/assets/icons/bold_duotone/calculator-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calculator.svg b/assets/icons/bold_duotone/calculator.svg index f1a736ff..bb65d91c 100644 --- a/assets/icons/bold_duotone/calculator.svg +++ b/assets/icons/bold_duotone/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar-add.svg b/assets/icons/bold_duotone/calendar-add.svg index 186030ac..a6ae9ba8 100644 --- a/assets/icons/bold_duotone/calendar-add.svg +++ b/assets/icons/bold_duotone/calendar-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar-date.svg b/assets/icons/bold_duotone/calendar-date.svg index 2f1cf5b6..a7c59dea 100644 --- a/assets/icons/bold_duotone/calendar-date.svg +++ b/assets/icons/bold_duotone/calendar-date.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar-mark.svg b/assets/icons/bold_duotone/calendar-mark.svg index 23f15f7e..5a35a7d0 100644 --- a/assets/icons/bold_duotone/calendar-mark.svg +++ b/assets/icons/bold_duotone/calendar-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar-minimalistic.svg b/assets/icons/bold_duotone/calendar-minimalistic.svg index c053dcf3..aebc50eb 100644 --- a/assets/icons/bold_duotone/calendar-minimalistic.svg +++ b/assets/icons/bold_duotone/calendar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar-search.svg b/assets/icons/bold_duotone/calendar-search.svg index 13f4f3e8..043cb808 100644 --- a/assets/icons/bold_duotone/calendar-search.svg +++ b/assets/icons/bold_duotone/calendar-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/calendar.svg b/assets/icons/bold_duotone/calendar.svg index 513d1f64..c2d78aa6 100644 --- a/assets/icons/bold_duotone/calendar.svg +++ b/assets/icons/bold_duotone/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-cancel-rounded.svg b/assets/icons/bold_duotone/call-cancel-rounded.svg index b82c1003..b10c656d 100644 --- a/assets/icons/bold_duotone/call-cancel-rounded.svg +++ b/assets/icons/bold_duotone/call-cancel-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-cancel.svg b/assets/icons/bold_duotone/call-cancel.svg index 4930220c..0f6e878d 100644 --- a/assets/icons/bold_duotone/call-cancel.svg +++ b/assets/icons/bold_duotone/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-chat-rounded.svg b/assets/icons/bold_duotone/call-chat-rounded.svg index 1ba834d4..9f40cac7 100644 --- a/assets/icons/bold_duotone/call-chat-rounded.svg +++ b/assets/icons/bold_duotone/call-chat-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-chat.svg b/assets/icons/bold_duotone/call-chat.svg index dd4bf4af..984befad 100644 --- a/assets/icons/bold_duotone/call-chat.svg +++ b/assets/icons/bold_duotone/call-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-dropped-rounded.svg b/assets/icons/bold_duotone/call-dropped-rounded.svg index 92f9207f..4c5c9971 100644 --- a/assets/icons/bold_duotone/call-dropped-rounded.svg +++ b/assets/icons/bold_duotone/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-dropped.svg b/assets/icons/bold_duotone/call-dropped.svg index dee4833a..16fc69a7 100644 --- a/assets/icons/bold_duotone/call-dropped.svg +++ b/assets/icons/bold_duotone/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-medicine-rounded.svg b/assets/icons/bold_duotone/call-medicine-rounded.svg index 369cdcf6..2ae51136 100644 --- a/assets/icons/bold_duotone/call-medicine-rounded.svg +++ b/assets/icons/bold_duotone/call-medicine-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/call-medicine.svg b/assets/icons/bold_duotone/call-medicine.svg index 683d7e93..c1adb160 100644 --- a/assets/icons/bold_duotone/call-medicine.svg +++ b/assets/icons/bold_duotone/call-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/camera-add.svg b/assets/icons/bold_duotone/camera-add.svg index 3a1eacf9..22ba7146 100644 --- a/assets/icons/bold_duotone/camera-add.svg +++ b/assets/icons/bold_duotone/camera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/camera-minimalistic.svg b/assets/icons/bold_duotone/camera-minimalistic.svg index a4eb12e0..f9ae98f0 100644 --- a/assets/icons/bold_duotone/camera-minimalistic.svg +++ b/assets/icons/bold_duotone/camera-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/camera-rotate.svg b/assets/icons/bold_duotone/camera-rotate.svg index 1715e490..b725256f 100644 --- a/assets/icons/bold_duotone/camera-rotate.svg +++ b/assets/icons/bold_duotone/camera-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/camera-square.svg b/assets/icons/bold_duotone/camera-square.svg index 7cc15ca1..1725e3a5 100644 --- a/assets/icons/bold_duotone/camera-square.svg +++ b/assets/icons/bold_duotone/camera-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/camera.svg b/assets/icons/bold_duotone/camera.svg index 7af95bad..99de11ee 100644 --- a/assets/icons/bold_duotone/camera.svg +++ b/assets/icons/bold_duotone/camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/car-battery.svg b/assets/icons/bold_duotone/car-battery.svg new file mode 100644 index 00000000..59e8c1ad --- /dev/null +++ b/assets/icons/bold_duotone/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-2.svg b/assets/icons/bold_duotone/card-2.svg index 6560110e..2cc4055c 100644 --- a/assets/icons/bold_duotone/card-2.svg +++ b/assets/icons/bold_duotone/card-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-receive.svg b/assets/icons/bold_duotone/card-receive.svg new file mode 100644 index 00000000..276d5921 --- /dev/null +++ b/assets/icons/bold_duotone/card-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-recive.svg b/assets/icons/bold_duotone/card-recive.svg deleted file mode 100644 index 6f51489b..00000000 --- a/assets/icons/bold_duotone/card-recive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-search.svg b/assets/icons/bold_duotone/card-search.svg index 7e48249a..cfa11aa9 100644 --- a/assets/icons/bold_duotone/card-search.svg +++ b/assets/icons/bold_duotone/card-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-send.svg b/assets/icons/bold_duotone/card-send.svg index 761b2a19..884092e5 100644 --- a/assets/icons/bold_duotone/card-send.svg +++ b/assets/icons/bold_duotone/card-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card-transfer.svg b/assets/icons/bold_duotone/card-transfer.svg index d27263e9..5b89d088 100644 --- a/assets/icons/bold_duotone/card-transfer.svg +++ b/assets/icons/bold_duotone/card-transfer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/card.svg b/assets/icons/bold_duotone/card.svg index 9929f870..d0977ed2 100644 --- a/assets/icons/bold_duotone/card.svg +++ b/assets/icons/bold_duotone/card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cardholder.svg b/assets/icons/bold_duotone/cardholder.svg index 3c4a240f..e2ff4b7f 100644 --- a/assets/icons/bold_duotone/cardholder.svg +++ b/assets/icons/bold_duotone/cardholder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-2.svg b/assets/icons/bold_duotone/cart-2.svg index 8d5ce3f0..13f0929a 100644 --- a/assets/icons/bold_duotone/cart-2.svg +++ b/assets/icons/bold_duotone/cart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-3.svg b/assets/icons/bold_duotone/cart-3.svg index e0f9b4c1..aa697593 100644 --- a/assets/icons/bold_duotone/cart-3.svg +++ b/assets/icons/bold_duotone/cart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-4.svg b/assets/icons/bold_duotone/cart-4.svg new file mode 100644 index 00000000..af17143a --- /dev/null +++ b/assets/icons/bold_duotone/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-5.svg b/assets/icons/bold_duotone/cart-5.svg index 127546fb..c7a59b55 100644 --- a/assets/icons/bold_duotone/cart-5.svg +++ b/assets/icons/bold_duotone/cart-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-check.svg b/assets/icons/bold_duotone/cart-check.svg index 18367a65..b8e189f7 100644 --- a/assets/icons/bold_duotone/cart-check.svg +++ b/assets/icons/bold_duotone/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-cross.svg b/assets/icons/bold_duotone/cart-cross.svg index afd7f3a6..35029ae4 100644 --- a/assets/icons/bold_duotone/cart-cross.svg +++ b/assets/icons/bold_duotone/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-large-2.svg b/assets/icons/bold_duotone/cart-large-2.svg index 77dc478a..2cf6810c 100644 --- a/assets/icons/bold_duotone/cart-large-2.svg +++ b/assets/icons/bold_duotone/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-large-3.svg b/assets/icons/bold_duotone/cart-large-3.svg index 997eda1f..d6ef74ec 100644 --- a/assets/icons/bold_duotone/cart-large-3.svg +++ b/assets/icons/bold_duotone/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-large-4.svg b/assets/icons/bold_duotone/cart-large-4.svg index 39d63b99..9d3eff97 100644 --- a/assets/icons/bold_duotone/cart-large-4.svg +++ b/assets/icons/bold_duotone/cart-large-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-large-minimalistic.svg b/assets/icons/bold_duotone/cart-large-minimalistic.svg index 865bbebc..060b0f33 100644 --- a/assets/icons/bold_duotone/cart-large-minimalistic.svg +++ b/assets/icons/bold_duotone/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-large.svg b/assets/icons/bold_duotone/cart-large.svg index adc6ace2..6e252499 100644 --- a/assets/icons/bold_duotone/cart-large.svg +++ b/assets/icons/bold_duotone/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart-plus.svg b/assets/icons/bold_duotone/cart-plus.svg index 189a898f..b9805d23 100644 --- a/assets/icons/bold_duotone/cart-plus.svg +++ b/assets/icons/bold_duotone/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cart.svg b/assets/icons/bold_duotone/cart.svg index 679da80b..b29c5830 100644 --- a/assets/icons/bold_duotone/cart.svg +++ b/assets/icons/bold_duotone/cart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/case-minimalistic.svg b/assets/icons/bold_duotone/case-minimalistic.svg index 09a5ac06..79e009df 100644 --- a/assets/icons/bold_duotone/case-minimalistic.svg +++ b/assets/icons/bold_duotone/case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/case-round-minimalistic.svg b/assets/icons/bold_duotone/case-round-minimalistic.svg index 3d8fc716..32092cf1 100644 --- a/assets/icons/bold_duotone/case-round-minimalistic.svg +++ b/assets/icons/bold_duotone/case-round-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/case-round.svg b/assets/icons/bold_duotone/case-round.svg index ca4a27d2..81df5b4c 100644 --- a/assets/icons/bold_duotone/case-round.svg +++ b/assets/icons/bold_duotone/case-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/case.svg b/assets/icons/bold_duotone/case.svg index a81c606a..bad10533 100644 --- a/assets/icons/bold_duotone/case.svg +++ b/assets/icons/bold_duotone/case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cash-out.svg b/assets/icons/bold_duotone/cash-out.svg index 4b262669..5956a42f 100644 --- a/assets/icons/bold_duotone/cash-out.svg +++ b/assets/icons/bold_duotone/cash-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cassette-2.svg b/assets/icons/bold_duotone/cassette-2.svg index 85f80a75..fe470083 100644 --- a/assets/icons/bold_duotone/cassette-2.svg +++ b/assets/icons/bold_duotone/cassette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cassette.svg b/assets/icons/bold_duotone/cassette.svg index f9d7bc39..4936b3ff 100644 --- a/assets/icons/bold_duotone/cassette.svg +++ b/assets/icons/bold_duotone/cassette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cat.svg b/assets/icons/bold_duotone/cat.svg index 1a210062..1b40db46 100644 --- a/assets/icons/bold_duotone/cat.svg +++ b/assets/icons/bold_duotone/cat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chair-2.svg b/assets/icons/bold_duotone/chair-2.svg index 2fb21fe6..112ec798 100644 --- a/assets/icons/bold_duotone/chair-2.svg +++ b/assets/icons/bold_duotone/chair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chair.svg b/assets/icons/bold_duotone/chair.svg index c0dc5e0f..2ca939f7 100644 --- a/assets/icons/bold_duotone/chair.svg +++ b/assets/icons/bold_duotone/chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chandelier.svg b/assets/icons/bold_duotone/chandelier.svg index 470d85c1..ab308dcd 100644 --- a/assets/icons/bold_duotone/chandelier.svg +++ b/assets/icons/bold_duotone/chandelier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chart-2.svg b/assets/icons/bold_duotone/chart-2.svg index eada8cc4..f144607c 100644 --- a/assets/icons/bold_duotone/chart-2.svg +++ b/assets/icons/bold_duotone/chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chart-square.svg b/assets/icons/bold_duotone/chart-square.svg index e5042073..73894f94 100644 --- a/assets/icons/bold_duotone/chart-square.svg +++ b/assets/icons/bold_duotone/chart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chart.svg b/assets/icons/bold_duotone/chart.svg index 2a309a93..36686154 100644 --- a/assets/icons/bold_duotone/chart.svg +++ b/assets/icons/bold_duotone/chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-dots.svg b/assets/icons/bold_duotone/chat-dots.svg index 28a72593..4dc24f1c 100644 --- a/assets/icons/bold_duotone/chat-dots.svg +++ b/assets/icons/bold_duotone/chat-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-line.svg b/assets/icons/bold_duotone/chat-line.svg index 988c71e7..ffc09666 100644 --- a/assets/icons/bold_duotone/chat-line.svg +++ b/assets/icons/bold_duotone/chat-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-call.svg b/assets/icons/bold_duotone/chat-round-call.svg index a7e52354..8de9fe53 100644 --- a/assets/icons/bold_duotone/chat-round-call.svg +++ b/assets/icons/bold_duotone/chat-round-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-check.svg b/assets/icons/bold_duotone/chat-round-check.svg index 9ddc5731..62f927b3 100644 --- a/assets/icons/bold_duotone/chat-round-check.svg +++ b/assets/icons/bold_duotone/chat-round-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-dots.svg b/assets/icons/bold_duotone/chat-round-dots.svg index e6312ade..b5ffdbba 100644 --- a/assets/icons/bold_duotone/chat-round-dots.svg +++ b/assets/icons/bold_duotone/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-like.svg b/assets/icons/bold_duotone/chat-round-like.svg index d8aafd09..683d9b64 100644 --- a/assets/icons/bold_duotone/chat-round-like.svg +++ b/assets/icons/bold_duotone/chat-round-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-line.svg b/assets/icons/bold_duotone/chat-round-line.svg index 329e50e5..370abeed 100644 --- a/assets/icons/bold_duotone/chat-round-line.svg +++ b/assets/icons/bold_duotone/chat-round-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-money.svg b/assets/icons/bold_duotone/chat-round-money.svg index 50be82e2..8bb100e0 100644 --- a/assets/icons/bold_duotone/chat-round-money.svg +++ b/assets/icons/bold_duotone/chat-round-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-unread.svg b/assets/icons/bold_duotone/chat-round-unread.svg index 8adc927f..ac7d509d 100644 --- a/assets/icons/bold_duotone/chat-round-unread.svg +++ b/assets/icons/bold_duotone/chat-round-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round-video.svg b/assets/icons/bold_duotone/chat-round-video.svg index abae4ae0..3b757736 100644 --- a/assets/icons/bold_duotone/chat-round-video.svg +++ b/assets/icons/bold_duotone/chat-round-video.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-round.svg b/assets/icons/bold_duotone/chat-round.svg index fd723243..5b90e84f 100644 --- a/assets/icons/bold_duotone/chat-round.svg +++ b/assets/icons/bold_duotone/chat-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-2.svg b/assets/icons/bold_duotone/chat-square-2.svg index aee16262..ac8d537f 100644 --- a/assets/icons/bold_duotone/chat-square-2.svg +++ b/assets/icons/bold_duotone/chat-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-arrow.svg b/assets/icons/bold_duotone/chat-square-arrow.svg index 9a2ffa98..d2194843 100644 --- a/assets/icons/bold_duotone/chat-square-arrow.svg +++ b/assets/icons/bold_duotone/chat-square-arrow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-call.svg b/assets/icons/bold_duotone/chat-square-call.svg index c12070db..9f0a8e7d 100644 --- a/assets/icons/bold_duotone/chat-square-call.svg +++ b/assets/icons/bold_duotone/chat-square-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-check.svg b/assets/icons/bold_duotone/chat-square-check.svg index a90314b0..cb2a2ef3 100644 --- a/assets/icons/bold_duotone/chat-square-check.svg +++ b/assets/icons/bold_duotone/chat-square-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-code.svg b/assets/icons/bold_duotone/chat-square-code.svg index 75099f62..10fa4126 100644 --- a/assets/icons/bold_duotone/chat-square-code.svg +++ b/assets/icons/bold_duotone/chat-square-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square-like.svg b/assets/icons/bold_duotone/chat-square-like.svg index 9fd769e5..681647be 100644 --- a/assets/icons/bold_duotone/chat-square-like.svg +++ b/assets/icons/bold_duotone/chat-square-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-square.svg b/assets/icons/bold_duotone/chat-square.svg index bca38679..910c5a59 100644 --- a/assets/icons/bold_duotone/chat-square.svg +++ b/assets/icons/bold_duotone/chat-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chat-unread.svg b/assets/icons/bold_duotone/chat-unread.svg index 1f22d440..448b75e1 100644 --- a/assets/icons/bold_duotone/chat-unread.svg +++ b/assets/icons/bold_duotone/chat-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/check-circle.svg b/assets/icons/bold_duotone/check-circle.svg index 177adf22..48897b02 100644 --- a/assets/icons/bold_duotone/check-circle.svg +++ b/assets/icons/bold_duotone/check-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/check-read.svg b/assets/icons/bold_duotone/check-read.svg index 05d0d188..71fa34bb 100644 --- a/assets/icons/bold_duotone/check-read.svg +++ b/assets/icons/bold_duotone/check-read.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/check-square.svg b/assets/icons/bold_duotone/check-square.svg index 4431b039..204c1dc2 100644 --- a/assets/icons/bold_duotone/check-square.svg +++ b/assets/icons/bold_duotone/check-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/checklist-minimalistic.svg b/assets/icons/bold_duotone/checklist-minimalistic.svg index e4e00cf6..27654098 100644 --- a/assets/icons/bold_duotone/checklist-minimalistic.svg +++ b/assets/icons/bold_duotone/checklist-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/checklist.svg b/assets/icons/bold_duotone/checklist.svg index a8ba1ce9..ecef36e1 100644 --- a/assets/icons/bold_duotone/checklist.svg +++ b/assets/icons/bold_duotone/checklist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chef-hat-heart.svg b/assets/icons/bold_duotone/chef-hat-heart.svg index 779ed45c..2af40f08 100644 --- a/assets/icons/bold_duotone/chef-hat-heart.svg +++ b/assets/icons/bold_duotone/chef-hat-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chef-hat-minimalistic.svg b/assets/icons/bold_duotone/chef-hat-minimalistic.svg index d4e3715a..db6578ce 100644 --- a/assets/icons/bold_duotone/chef-hat-minimalistic.svg +++ b/assets/icons/bold_duotone/chef-hat-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/chef-hat.svg b/assets/icons/bold_duotone/chef-hat.svg index dd920904..98765838 100644 --- a/assets/icons/bold_duotone/chef-hat.svg +++ b/assets/icons/bold_duotone/chef-hat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/circle-bottom-down.svg b/assets/icons/bold_duotone/circle-bottom-down.svg index 13ecd628..f0ca21de 100644 --- a/assets/icons/bold_duotone/circle-bottom-down.svg +++ b/assets/icons/bold_duotone/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/circle-bottom-up.svg b/assets/icons/bold_duotone/circle-bottom-up.svg index 07c0fee0..c3795067 100644 --- a/assets/icons/bold_duotone/circle-bottom-up.svg +++ b/assets/icons/bold_duotone/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/circle-top-down.svg b/assets/icons/bold_duotone/circle-top-down.svg index 0e0d7d6c..e4fd597f 100644 --- a/assets/icons/bold_duotone/circle-top-down.svg +++ b/assets/icons/bold_duotone/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/circle-top-up.svg b/assets/icons/bold_duotone/circle-top-up.svg index 0723adb1..b4fb659d 100644 --- a/assets/icons/bold_duotone/circle-top-up.svg +++ b/assets/icons/bold_duotone/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/city.svg b/assets/icons/bold_duotone/city.svg index 4739f8eb..eb6b63ed 100644 --- a/assets/icons/bold_duotone/city.svg +++ b/assets/icons/bold_duotone/city.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard-edit.svg b/assets/icons/bold_duotone/clapperboard-edit.svg index 3819d69f..88f79f8f 100644 --- a/assets/icons/bold_duotone/clapperboard-edit.svg +++ b/assets/icons/bold_duotone/clapperboard-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard-open-play.svg b/assets/icons/bold_duotone/clapperboard-open-play.svg index 5fb24c80..cf5e26a5 100644 --- a/assets/icons/bold_duotone/clapperboard-open-play.svg +++ b/assets/icons/bold_duotone/clapperboard-open-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard-open.svg b/assets/icons/bold_duotone/clapperboard-open.svg index 19a693d3..b94aa39e 100644 --- a/assets/icons/bold_duotone/clapperboard-open.svg +++ b/assets/icons/bold_duotone/clapperboard-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard-play.svg b/assets/icons/bold_duotone/clapperboard-play.svg index 24645538..82753667 100644 --- a/assets/icons/bold_duotone/clapperboard-play.svg +++ b/assets/icons/bold_duotone/clapperboard-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard-text.svg b/assets/icons/bold_duotone/clapperboard-text.svg index 41dd95c2..b3109bd7 100644 --- a/assets/icons/bold_duotone/clapperboard-text.svg +++ b/assets/icons/bold_duotone/clapperboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clapperboard.svg b/assets/icons/bold_duotone/clapperboard.svg index c7334d84..750f1337 100644 --- a/assets/icons/bold_duotone/clapperboard.svg +++ b/assets/icons/bold_duotone/clapperboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-add.svg b/assets/icons/bold_duotone/clipboard-add.svg index 5fdad8f2..fa01a1d9 100644 --- a/assets/icons/bold_duotone/clipboard-add.svg +++ b/assets/icons/bold_duotone/clipboard-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-check.svg b/assets/icons/bold_duotone/clipboard-check.svg index bf8cd88e..b5417f43 100644 --- a/assets/icons/bold_duotone/clipboard-check.svg +++ b/assets/icons/bold_duotone/clipboard-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-heart.svg b/assets/icons/bold_duotone/clipboard-heart.svg index 8cdb389a..2e1d20f6 100644 --- a/assets/icons/bold_duotone/clipboard-heart.svg +++ b/assets/icons/bold_duotone/clipboard-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-list.svg b/assets/icons/bold_duotone/clipboard-list.svg index 40084f54..3ad3f8ef 100644 --- a/assets/icons/bold_duotone/clipboard-list.svg +++ b/assets/icons/bold_duotone/clipboard-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-remove.svg b/assets/icons/bold_duotone/clipboard-remove.svg index 02941803..bb8aa130 100644 --- a/assets/icons/bold_duotone/clipboard-remove.svg +++ b/assets/icons/bold_duotone/clipboard-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard-text.svg b/assets/icons/bold_duotone/clipboard-text.svg index 306b0886..794e84d1 100644 --- a/assets/icons/bold_duotone/clipboard-text.svg +++ b/assets/icons/bold_duotone/clipboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clipboard.svg b/assets/icons/bold_duotone/clipboard.svg index aa7528c8..c05b6473 100644 --- a/assets/icons/bold_duotone/clipboard.svg +++ b/assets/icons/bold_duotone/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clock-circle.svg b/assets/icons/bold_duotone/clock-circle.svg index 6f6febbd..cfdad70c 100644 --- a/assets/icons/bold_duotone/clock-circle.svg +++ b/assets/icons/bold_duotone/clock-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clock-square.svg b/assets/icons/bold_duotone/clock-square.svg index 104eb2d2..fee01b2d 100644 --- a/assets/icons/bold_duotone/clock-square.svg +++ b/assets/icons/bold_duotone/clock-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/close-circle.svg b/assets/icons/bold_duotone/close-circle.svg index 6f838921..00ff3df3 100644 --- a/assets/icons/bold_duotone/close-circle.svg +++ b/assets/icons/bold_duotone/close-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/close-square.svg b/assets/icons/bold_duotone/close-square.svg index 97e0869c..d1e6a600 100644 --- a/assets/icons/bold_duotone/close-square.svg +++ b/assets/icons/bold_duotone/close-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/closet-2.svg b/assets/icons/bold_duotone/closet-2.svg index 19c9dc5e..fb990ce9 100644 --- a/assets/icons/bold_duotone/closet-2.svg +++ b/assets/icons/bold_duotone/closet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/closet.svg b/assets/icons/bold_duotone/closet.svg index 5db8d57d..e6fd96e3 100644 --- a/assets/icons/bold_duotone/closet.svg +++ b/assets/icons/bold_duotone/closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-bolt-minimalistic.svg b/assets/icons/bold_duotone/cloud-bolt-minimalistic.svg index 64c82788..656f4a9d 100644 --- a/assets/icons/bold_duotone/cloud-bolt-minimalistic.svg +++ b/assets/icons/bold_duotone/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-bolt.svg b/assets/icons/bold_duotone/cloud-bolt.svg index 571bf4f5..fc2a0c40 100644 --- a/assets/icons/bold_duotone/cloud-bolt.svg +++ b/assets/icons/bold_duotone/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-check.svg b/assets/icons/bold_duotone/cloud-check.svg index 7dfd1e63..624ceed3 100644 --- a/assets/icons/bold_duotone/cloud-check.svg +++ b/assets/icons/bold_duotone/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-cross.svg b/assets/icons/bold_duotone/cloud-cross.svg index 0ba27775..026d1f98 100644 --- a/assets/icons/bold_duotone/cloud-cross.svg +++ b/assets/icons/bold_duotone/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-download.svg b/assets/icons/bold_duotone/cloud-download.svg index d4dcc2b0..b5baa56f 100644 --- a/assets/icons/bold_duotone/cloud-download.svg +++ b/assets/icons/bold_duotone/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-file.svg b/assets/icons/bold_duotone/cloud-file.svg index 5568739e..535ba979 100644 --- a/assets/icons/bold_duotone/cloud-file.svg +++ b/assets/icons/bold_duotone/cloud-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-minus.svg b/assets/icons/bold_duotone/cloud-minus.svg index c28d03a8..f5d5c241 100644 --- a/assets/icons/bold_duotone/cloud-minus.svg +++ b/assets/icons/bold_duotone/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-plus.svg b/assets/icons/bold_duotone/cloud-plus.svg index 2bfdeb5c..0c176f8c 100644 --- a/assets/icons/bold_duotone/cloud-plus.svg +++ b/assets/icons/bold_duotone/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-rain.svg b/assets/icons/bold_duotone/cloud-rain.svg index 00e733b3..93add08b 100644 --- a/assets/icons/bold_duotone/cloud-rain.svg +++ b/assets/icons/bold_duotone/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-snowfall-minimalistic.svg b/assets/icons/bold_duotone/cloud-snowfall-minimalistic.svg index d4105d71..f5e59479 100644 --- a/assets/icons/bold_duotone/cloud-snowfall-minimalistic.svg +++ b/assets/icons/bold_duotone/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-snowfall.svg b/assets/icons/bold_duotone/cloud-snowfall.svg index 431a4cff..4999ad67 100644 --- a/assets/icons/bold_duotone/cloud-snowfall.svg +++ b/assets/icons/bold_duotone/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-storage.svg b/assets/icons/bold_duotone/cloud-storage.svg index e63dccac..ee1d6d4d 100644 --- a/assets/icons/bold_duotone/cloud-storage.svg +++ b/assets/icons/bold_duotone/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-storm.svg b/assets/icons/bold_duotone/cloud-storm.svg index a00f74cb..d910bc6f 100644 --- a/assets/icons/bold_duotone/cloud-storm.svg +++ b/assets/icons/bold_duotone/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-sun-2.svg b/assets/icons/bold_duotone/cloud-sun-2.svg index 99c7d270..007a48e1 100644 --- a/assets/icons/bold_duotone/cloud-sun-2.svg +++ b/assets/icons/bold_duotone/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-sun.svg b/assets/icons/bold_duotone/cloud-sun.svg index 2a671104..cb9b3046 100644 --- a/assets/icons/bold_duotone/cloud-sun.svg +++ b/assets/icons/bold_duotone/cloud-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-upload.svg b/assets/icons/bold_duotone/cloud-upload.svg index ea90852b..91dabadc 100644 --- a/assets/icons/bold_duotone/cloud-upload.svg +++ b/assets/icons/bold_duotone/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-waterdrop.svg b/assets/icons/bold_duotone/cloud-waterdrop.svg index 97cf0adf..16850d74 100644 --- a/assets/icons/bold_duotone/cloud-waterdrop.svg +++ b/assets/icons/bold_duotone/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud-waterdrops.svg b/assets/icons/bold_duotone/cloud-waterdrops.svg index fca4d7c8..9faafd23 100644 --- a/assets/icons/bold_duotone/cloud-waterdrops.svg +++ b/assets/icons/bold_duotone/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloud.svg b/assets/icons/bold_duotone/cloud.svg index 2916def6..b1254720 100644 --- a/assets/icons/bold_duotone/cloud.svg +++ b/assets/icons/bold_duotone/cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/clouds.svg b/assets/icons/bold_duotone/clouds.svg index 06eb9e99..971ff18b 100644 --- a/assets/icons/bold_duotone/clouds.svg +++ b/assets/icons/bold_duotone/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cloudy-moon.svg b/assets/icons/bold_duotone/cloudy-moon.svg index 7c7fef65..ce525a16 100644 --- a/assets/icons/bold_duotone/cloudy-moon.svg +++ b/assets/icons/bold_duotone/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code-2.svg b/assets/icons/bold_duotone/code-2.svg index d29324a2..b6e7f7d7 100644 --- a/assets/icons/bold_duotone/code-2.svg +++ b/assets/icons/bold_duotone/code-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code-circle.svg b/assets/icons/bold_duotone/code-circle.svg index 7050e0c3..8ebbb0f4 100644 --- a/assets/icons/bold_duotone/code-circle.svg +++ b/assets/icons/bold_duotone/code-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code-file.svg b/assets/icons/bold_duotone/code-file.svg index a7734bc6..43c386ea 100644 --- a/assets/icons/bold_duotone/code-file.svg +++ b/assets/icons/bold_duotone/code-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code-scan.svg b/assets/icons/bold_duotone/code-scan.svg index c59b14ed..3cbe294f 100644 --- a/assets/icons/bold_duotone/code-scan.svg +++ b/assets/icons/bold_duotone/code-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code-square.svg b/assets/icons/bold_duotone/code-square.svg index b40ae93b..76beaa41 100644 --- a/assets/icons/bold_duotone/code-square.svg +++ b/assets/icons/bold_duotone/code-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/code.svg b/assets/icons/bold_duotone/code.svg index 06040cba..5a5bbee3 100644 --- a/assets/icons/bold_duotone/code.svg +++ b/assets/icons/bold_duotone/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/colour-tuneing.svg b/assets/icons/bold_duotone/colour-tuneing.svg deleted file mode 100644 index 60ff8fe2..00000000 --- a/assets/icons/bold_duotone/colour-tuneing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/colour-tuning.svg b/assets/icons/bold_duotone/colour-tuning.svg new file mode 100644 index 00000000..8d1c4fd8 --- /dev/null +++ b/assets/icons/bold_duotone/colour-tuning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/command.svg b/assets/icons/bold_duotone/command.svg index 11ccf589..6229e83a 100644 --- a/assets/icons/bold_duotone/command.svg +++ b/assets/icons/bold_duotone/command.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/compass-big.svg b/assets/icons/bold_duotone/compass-big.svg index 62ef6038..343fbff9 100644 --- a/assets/icons/bold_duotone/compass-big.svg +++ b/assets/icons/bold_duotone/compass-big.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/compass-square.svg b/assets/icons/bold_duotone/compass-square.svg index d0a3011d..888cf89d 100644 --- a/assets/icons/bold_duotone/compass-square.svg +++ b/assets/icons/bold_duotone/compass-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/compass.svg b/assets/icons/bold_duotone/compass.svg index d397537f..77167a39 100644 --- a/assets/icons/bold_duotone/compass.svg +++ b/assets/icons/bold_duotone/compass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/condicioner-2.svg b/assets/icons/bold_duotone/condicioner-2.svg deleted file mode 100644 index f7094d30..00000000 --- a/assets/icons/bold_duotone/condicioner-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/condicioner.svg b/assets/icons/bold_duotone/condicioner.svg deleted file mode 100644 index 68475eaf..00000000 --- a/assets/icons/bold_duotone/condicioner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/conditioner-2.svg b/assets/icons/bold_duotone/conditioner-2.svg new file mode 100644 index 00000000..c17ad197 --- /dev/null +++ b/assets/icons/bold_duotone/conditioner-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/conditioner.svg b/assets/icons/bold_duotone/conditioner.svg new file mode 100644 index 00000000..716667c5 --- /dev/null +++ b/assets/icons/bold_duotone/conditioner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/confetti-minimalistic.svg b/assets/icons/bold_duotone/confetti-minimalistic.svg index 56883f80..45461327 100644 --- a/assets/icons/bold_duotone/confetti-minimalistic.svg +++ b/assets/icons/bold_duotone/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/confetti.svg b/assets/icons/bold_duotone/confetti.svg index a88ff8fe..30026c85 100644 --- a/assets/icons/bold_duotone/confetti.svg +++ b/assets/icons/bold_duotone/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/confounded-circle.svg b/assets/icons/bold_duotone/confounded-circle.svg index da45f1b6..e5bbb580 100644 --- a/assets/icons/bold_duotone/confounded-circle.svg +++ b/assets/icons/bold_duotone/confounded-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/confounded-square.svg b/assets/icons/bold_duotone/confounded-square.svg index cb79b780..419f6353 100644 --- a/assets/icons/bold_duotone/confounded-square.svg +++ b/assets/icons/bold_duotone/confounded-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/copy.svg b/assets/icons/bold_duotone/copy.svg index df89a41e..8698fbf8 100644 --- a/assets/icons/bold_duotone/copy.svg +++ b/assets/icons/bold_duotone/copy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/copyright.svg b/assets/icons/bold_duotone/copyright.svg index c8f4cbd4..965833fd 100644 --- a/assets/icons/bold_duotone/copyright.svg +++ b/assets/icons/bold_duotone/copyright.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/corkscrew.svg b/assets/icons/bold_duotone/corkscrew.svg index ed5220a1..22a447a9 100644 --- a/assets/icons/bold_duotone/corkscrew.svg +++ b/assets/icons/bold_duotone/corkscrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cosmetic.svg b/assets/icons/bold_duotone/cosmetic.svg index ec113bc6..1fe2e283 100644 --- a/assets/icons/bold_duotone/cosmetic.svg +++ b/assets/icons/bold_duotone/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/course-down.svg b/assets/icons/bold_duotone/course-down.svg index 57f2f26d..9f26fe00 100644 --- a/assets/icons/bold_duotone/course-down.svg +++ b/assets/icons/bold_duotone/course-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/course-up.svg b/assets/icons/bold_duotone/course-up.svg index e4ae706c..9a7ac8ee 100644 --- a/assets/icons/bold_duotone/course-up.svg +++ b/assets/icons/bold_duotone/course-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cpu-bolt.svg b/assets/icons/bold_duotone/cpu-bolt.svg index 1917c4de..5da66d4b 100644 --- a/assets/icons/bold_duotone/cpu-bolt.svg +++ b/assets/icons/bold_duotone/cpu-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cpu.svg b/assets/icons/bold_duotone/cpu.svg index 114ef460..24ca5414 100644 --- a/assets/icons/bold_duotone/cpu.svg +++ b/assets/icons/bold_duotone/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/creative-commons.svg b/assets/icons/bold_duotone/creative-commons.svg index 904f6c7a..d5b6f87d 100644 --- a/assets/icons/bold_duotone/creative-commons.svg +++ b/assets/icons/bold_duotone/creative-commons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crop-minimalistic.svg b/assets/icons/bold_duotone/crop-minimalistic.svg index 0542febb..3fb5db05 100644 --- a/assets/icons/bold_duotone/crop-minimalistic.svg +++ b/assets/icons/bold_duotone/crop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crop.svg b/assets/icons/bold_duotone/crop.svg index a2a7ddd4..54c7351d 100644 --- a/assets/icons/bold_duotone/crop.svg +++ b/assets/icons/bold_duotone/crop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crown-line.svg b/assets/icons/bold_duotone/crown-line.svg index 97e1f6a1..e17b23f7 100644 --- a/assets/icons/bold_duotone/crown-line.svg +++ b/assets/icons/bold_duotone/crown-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crown-minimalistic.svg b/assets/icons/bold_duotone/crown-minimalistic.svg index ae2a739d..79f32e67 100644 --- a/assets/icons/bold_duotone/crown-minimalistic.svg +++ b/assets/icons/bold_duotone/crown-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crown-star.svg b/assets/icons/bold_duotone/crown-star.svg index d62d59b3..e61caa9a 100644 --- a/assets/icons/bold_duotone/crown-star.svg +++ b/assets/icons/bold_duotone/crown-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/crown.svg b/assets/icons/bold_duotone/crown.svg index 83198dfc..9bb5bf14 100644 --- a/assets/icons/bold_duotone/crown.svg +++ b/assets/icons/bold_duotone/crown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup-first.svg b/assets/icons/bold_duotone/cup-first.svg index a93d8a89..9c61fda6 100644 --- a/assets/icons/bold_duotone/cup-first.svg +++ b/assets/icons/bold_duotone/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup-hot.svg b/assets/icons/bold_duotone/cup-hot.svg index b5462c26..c6f9f1f6 100644 --- a/assets/icons/bold_duotone/cup-hot.svg +++ b/assets/icons/bold_duotone/cup-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup-music.svg b/assets/icons/bold_duotone/cup-music.svg index 37380e26..fab7f00e 100644 --- a/assets/icons/bold_duotone/cup-music.svg +++ b/assets/icons/bold_duotone/cup-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup-paper.svg b/assets/icons/bold_duotone/cup-paper.svg index 10515f73..1e838aa6 100644 --- a/assets/icons/bold_duotone/cup-paper.svg +++ b/assets/icons/bold_duotone/cup-paper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup-star.svg b/assets/icons/bold_duotone/cup-star.svg index 5cc5b334..248b84c7 100644 --- a/assets/icons/bold_duotone/cup-star.svg +++ b/assets/icons/bold_duotone/cup-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cup.svg b/assets/icons/bold_duotone/cup.svg index 163ee0f0..de8c91d6 100644 --- a/assets/icons/bold_duotone/cup.svg +++ b/assets/icons/bold_duotone/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cursor-square.svg b/assets/icons/bold_duotone/cursor-square.svg index efd94dab..992152b0 100644 --- a/assets/icons/bold_duotone/cursor-square.svg +++ b/assets/icons/bold_duotone/cursor-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/cursor.svg b/assets/icons/bold_duotone/cursor.svg index fdeb1481..1d0564a0 100644 --- a/assets/icons/bold_duotone/cursor.svg +++ b/assets/icons/bold_duotone/cursor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/danger-circle.svg b/assets/icons/bold_duotone/danger-circle.svg index 98e2ebaa..d2f63fe1 100644 --- a/assets/icons/bold_duotone/danger-circle.svg +++ b/assets/icons/bold_duotone/danger-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/danger-square.svg b/assets/icons/bold_duotone/danger-square.svg index c182db77..8643dc36 100644 --- a/assets/icons/bold_duotone/danger-square.svg +++ b/assets/icons/bold_duotone/danger-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/danger-triangle.svg b/assets/icons/bold_duotone/danger-triangle.svg index d178048c..4e1c2325 100644 --- a/assets/icons/bold_duotone/danger-triangle.svg +++ b/assets/icons/bold_duotone/danger-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/danger.svg b/assets/icons/bold_duotone/danger.svg index 9486c21d..900aed86 100644 --- a/assets/icons/bold_duotone/danger.svg +++ b/assets/icons/bold_duotone/danger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/database.svg b/assets/icons/bold_duotone/database.svg index 967238ef..add023f9 100644 --- a/assets/icons/bold_duotone/database.svg +++ b/assets/icons/bold_duotone/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/delivery.svg b/assets/icons/bold_duotone/delivery.svg index 1d5172e5..05d40b4c 100644 --- a/assets/icons/bold_duotone/delivery.svg +++ b/assets/icons/bold_duotone/delivery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/devices.svg b/assets/icons/bold_duotone/devices.svg index 58f97164..90041b93 100644 --- a/assets/icons/bold_duotone/devices.svg +++ b/assets/icons/bold_duotone/devices.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/diagram-down.svg b/assets/icons/bold_duotone/diagram-down.svg index c7ca7552..99db74c8 100644 --- a/assets/icons/bold_duotone/diagram-down.svg +++ b/assets/icons/bold_duotone/diagram-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/diagram-up.svg b/assets/icons/bold_duotone/diagram-up.svg index a34746b2..93f1e123 100644 --- a/assets/icons/bold_duotone/diagram-up.svg +++ b/assets/icons/bold_duotone/diagram-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dialog-2.svg b/assets/icons/bold_duotone/dialog-2.svg index 71531157..cd3e14e0 100644 --- a/assets/icons/bold_duotone/dialog-2.svg +++ b/assets/icons/bold_duotone/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dialog.svg b/assets/icons/bold_duotone/dialog.svg index 9a31ecf2..85ed599f 100644 --- a/assets/icons/bold_duotone/dialog.svg +++ b/assets/icons/bold_duotone/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/diploma-verified.svg b/assets/icons/bold_duotone/diploma-verified.svg index 8e359d9b..2ebcd0d1 100644 --- a/assets/icons/bold_duotone/diploma-verified.svg +++ b/assets/icons/bold_duotone/diploma-verified.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/diploma.svg b/assets/icons/bold_duotone/diploma.svg index 27aeab50..c0f250a5 100644 --- a/assets/icons/bold_duotone/diploma.svg +++ b/assets/icons/bold_duotone/diploma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/diskette.svg b/assets/icons/bold_duotone/diskette.svg index 843ea821..b6433458 100644 --- a/assets/icons/bold_duotone/diskette.svg +++ b/assets/icons/bold_duotone/diskette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dislike.svg b/assets/icons/bold_duotone/dislike.svg index 590fe845..0febfbe9 100644 --- a/assets/icons/bold_duotone/dislike.svg +++ b/assets/icons/bold_duotone/dislike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/display.svg b/assets/icons/bold_duotone/display.svg index 8185fef7..56011326 100644 --- a/assets/icons/bold_duotone/display.svg +++ b/assets/icons/bold_duotone/display.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dna.svg b/assets/icons/bold_duotone/dna.svg index f8061c8b..0f675057 100644 --- a/assets/icons/bold_duotone/dna.svg +++ b/assets/icons/bold_duotone/dna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/document-2.svg b/assets/icons/bold_duotone/document-2.svg new file mode 100644 index 00000000..2c38a7e8 --- /dev/null +++ b/assets/icons/bold_duotone/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/document-add.svg b/assets/icons/bold_duotone/document-add.svg index 31fbb616..0d969761 100644 --- a/assets/icons/bold_duotone/document-add.svg +++ b/assets/icons/bold_duotone/document-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/document-medicine.svg b/assets/icons/bold_duotone/document-medicine.svg index f23f6b65..ec36d56b 100644 --- a/assets/icons/bold_duotone/document-medicine.svg +++ b/assets/icons/bold_duotone/document-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/document-text.svg b/assets/icons/bold_duotone/document-text.svg index 31a9b266..7e0b913a 100644 --- a/assets/icons/bold_duotone/document-text.svg +++ b/assets/icons/bold_duotone/document-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/document.svg b/assets/icons/bold_duotone/document.svg index 981dd12b..99fee8a8 100644 --- a/assets/icons/bold_duotone/document.svg +++ b/assets/icons/bold_duotone/document.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/documents-minimalistic.svg b/assets/icons/bold_duotone/documents-minimalistic.svg index b318171e..23f4eb86 100644 --- a/assets/icons/bold_duotone/documents-minimalistic.svg +++ b/assets/icons/bold_duotone/documents-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/documents.svg b/assets/icons/bold_duotone/documents.svg index f4c3d18d..444235c9 100644 --- a/assets/icons/bold_duotone/documents.svg +++ b/assets/icons/bold_duotone/documents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dollar-minimalistic.svg b/assets/icons/bold_duotone/dollar-minimalistic.svg index 2bea7367..55a881f1 100644 --- a/assets/icons/bold_duotone/dollar-minimalistic.svg +++ b/assets/icons/bold_duotone/dollar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/donut-bitten.svg b/assets/icons/bold_duotone/donut-bitten.svg index 7d594b6e..7282bca3 100644 --- a/assets/icons/bold_duotone/donut-bitten.svg +++ b/assets/icons/bold_duotone/donut-bitten.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/donut.svg b/assets/icons/bold_duotone/donut.svg index 3ca52fc4..b3bb4125 100644 --- a/assets/icons/bold_duotone/donut.svg +++ b/assets/icons/bold_duotone/donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/double-alt-arrow-down.svg b/assets/icons/bold_duotone/double-alt-arrow-down.svg index 2a593e00..2bf3a53b 100644 --- a/assets/icons/bold_duotone/double-alt-arrow-down.svg +++ b/assets/icons/bold_duotone/double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/double-alt-arrow-left.svg b/assets/icons/bold_duotone/double-alt-arrow-left.svg index 64349eff..869fb70a 100644 --- a/assets/icons/bold_duotone/double-alt-arrow-left.svg +++ b/assets/icons/bold_duotone/double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/double-alt-arrow-right.svg b/assets/icons/bold_duotone/double-alt-arrow-right.svg index 08d74d76..d8321c97 100644 --- a/assets/icons/bold_duotone/double-alt-arrow-right.svg +++ b/assets/icons/bold_duotone/double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/double-alt-arrow-up.svg b/assets/icons/bold_duotone/double-alt-arrow-up.svg index 154d777c..b2de0be4 100644 --- a/assets/icons/bold_duotone/double-alt-arrow-up.svg +++ b/assets/icons/bold_duotone/double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/download-square.svg b/assets/icons/bold_duotone/download-square.svg index 8fc68e29..4be70acc 100644 --- a/assets/icons/bold_duotone/download-square.svg +++ b/assets/icons/bold_duotone/download-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/download-twice-square.svg b/assets/icons/bold_duotone/download-twice-square.svg index 4bbc9ae9..6b9e0878 100644 --- a/assets/icons/bold_duotone/download-twice-square.svg +++ b/assets/icons/bold_duotone/download-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/download.svg b/assets/icons/bold_duotone/download.svg index b7c69f31..15bd1c6b 100644 --- a/assets/icons/bold_duotone/download.svg +++ b/assets/icons/bold_duotone/download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dropper-2.svg b/assets/icons/bold_duotone/dropper-2.svg index 08f04018..97ae931c 100644 --- a/assets/icons/bold_duotone/dropper-2.svg +++ b/assets/icons/bold_duotone/dropper-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dropper-3.svg b/assets/icons/bold_duotone/dropper-3.svg index 8d21a8c1..fd2d815e 100644 --- a/assets/icons/bold_duotone/dropper-3.svg +++ b/assets/icons/bold_duotone/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dropper-minimalistic-2.svg b/assets/icons/bold_duotone/dropper-minimalistic-2.svg index b6a7f862..51246111 100644 --- a/assets/icons/bold_duotone/dropper-minimalistic-2.svg +++ b/assets/icons/bold_duotone/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dropper-minimalistic.svg b/assets/icons/bold_duotone/dropper-minimalistic.svg index 5e83789d..39cd9387 100644 --- a/assets/icons/bold_duotone/dropper-minimalistic.svg +++ b/assets/icons/bold_duotone/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dropper.svg b/assets/icons/bold_duotone/dropper.svg index b79c4efd..930d67a0 100644 --- a/assets/icons/bold_duotone/dropper.svg +++ b/assets/icons/bold_duotone/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbell-large-minimalistic.svg b/assets/icons/bold_duotone/dumbbell-large-minimalistic.svg index eed90f83..55f1efda 100644 --- a/assets/icons/bold_duotone/dumbbell-large-minimalistic.svg +++ b/assets/icons/bold_duotone/dumbbell-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbell-large.svg b/assets/icons/bold_duotone/dumbbell-large.svg index 2bdfbd31..d78cb64a 100644 --- a/assets/icons/bold_duotone/dumbbell-large.svg +++ b/assets/icons/bold_duotone/dumbbell-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbell-small.svg b/assets/icons/bold_duotone/dumbbell-small.svg index 6e76b6ef..85bd5da3 100644 --- a/assets/icons/bold_duotone/dumbbell-small.svg +++ b/assets/icons/bold_duotone/dumbbell-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbell.svg b/assets/icons/bold_duotone/dumbbell.svg index 1385b88c..887a98e2 100644 --- a/assets/icons/bold_duotone/dumbbell.svg +++ b/assets/icons/bold_duotone/dumbbell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbells-2.svg b/assets/icons/bold_duotone/dumbbells-2.svg index 4f82e93c..a7ec513a 100644 --- a/assets/icons/bold_duotone/dumbbells-2.svg +++ b/assets/icons/bold_duotone/dumbbells-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/dumbbells.svg b/assets/icons/bold_duotone/dumbbells.svg index ee945aa0..dd81961a 100644 --- a/assets/icons/bold_duotone/dumbbells.svg +++ b/assets/icons/bold_duotone/dumbbells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/earth.svg b/assets/icons/bold_duotone/earth.svg index ff6e622e..ac08485d 100644 --- a/assets/icons/bold_duotone/earth.svg +++ b/assets/icons/bold_duotone/earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/electric-refueling.svg b/assets/icons/bold_duotone/electric-refueling.svg index f9128c44..95b23e38 100644 --- a/assets/icons/bold_duotone/electric-refueling.svg +++ b/assets/icons/bold_duotone/electric-refueling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/emoji-funny-circle.svg b/assets/icons/bold_duotone/emoji-funny-circle.svg index ebbd20f5..0e379c42 100644 --- a/assets/icons/bold_duotone/emoji-funny-circle.svg +++ b/assets/icons/bold_duotone/emoji-funny-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/emoji-funny-square.svg b/assets/icons/bold_duotone/emoji-funny-square.svg index d40d77b5..8deb2a18 100644 --- a/assets/icons/bold_duotone/emoji-funny-square.svg +++ b/assets/icons/bold_duotone/emoji-funny-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/end-call-rounded.svg b/assets/icons/bold_duotone/end-call-rounded.svg index 5d4b3358..d9cfe0fa 100644 --- a/assets/icons/bold_duotone/end-call-rounded.svg +++ b/assets/icons/bold_duotone/end-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/end-call.svg b/assets/icons/bold_duotone/end-call.svg index 55dcd93f..2d21d601 100644 --- a/assets/icons/bold_duotone/end-call.svg +++ b/assets/icons/bold_duotone/end-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eraser-circle.svg b/assets/icons/bold_duotone/eraser-circle.svg index 348083c8..d9de4cc4 100644 --- a/assets/icons/bold_duotone/eraser-circle.svg +++ b/assets/icons/bold_duotone/eraser-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eraser-square.svg b/assets/icons/bold_duotone/eraser-square.svg index ba390e2c..349afc9f 100644 --- a/assets/icons/bold_duotone/eraser-square.svg +++ b/assets/icons/bold_duotone/eraser-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eraser.svg b/assets/icons/bold_duotone/eraser.svg index 134c1ea8..4d8c5c46 100644 --- a/assets/icons/bold_duotone/eraser.svg +++ b/assets/icons/bold_duotone/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/euro.svg b/assets/icons/bold_duotone/euro.svg index 7232b942..5539308a 100644 --- a/assets/icons/bold_duotone/euro.svg +++ b/assets/icons/bold_duotone/euro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/exit.svg b/assets/icons/bold_duotone/exit.svg index c8c3dfdd..a8199d15 100644 --- a/assets/icons/bold_duotone/exit.svg +++ b/assets/icons/bold_duotone/exit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/explicit.svg b/assets/icons/bold_duotone/explicit.svg index 0e8e8113..3f41182c 100644 --- a/assets/icons/bold_duotone/explicit.svg +++ b/assets/icons/bold_duotone/explicit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/export.svg b/assets/icons/bold_duotone/export.svg index 03c4f7a3..ea2d1072 100644 --- a/assets/icons/bold_duotone/export.svg +++ b/assets/icons/bold_duotone/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/expressionless-circle.svg b/assets/icons/bold_duotone/expressionless-circle.svg index bcc2506c..07602747 100644 --- a/assets/icons/bold_duotone/expressionless-circle.svg +++ b/assets/icons/bold_duotone/expressionless-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/expressionless-square.svg b/assets/icons/bold_duotone/expressionless-square.svg index a44def57..e31402dd 100644 --- a/assets/icons/bold_duotone/expressionless-square.svg +++ b/assets/icons/bold_duotone/expressionless-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eye-closed.svg b/assets/icons/bold_duotone/eye-closed.svg index 017f2abd..5e59b607 100644 --- a/assets/icons/bold_duotone/eye-closed.svg +++ b/assets/icons/bold_duotone/eye-closed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eye-scan.svg b/assets/icons/bold_duotone/eye-scan.svg index e19c9c76..14817f02 100644 --- a/assets/icons/bold_duotone/eye-scan.svg +++ b/assets/icons/bold_duotone/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/eye.svg b/assets/icons/bold_duotone/eye.svg index 1db50994..63d27e39 100644 --- a/assets/icons/bold_duotone/eye.svg +++ b/assets/icons/bold_duotone/eye.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/face-scan-circle.svg b/assets/icons/bold_duotone/face-scan-circle.svg index 42fd40ac..4205e2d6 100644 --- a/assets/icons/bold_duotone/face-scan-circle.svg +++ b/assets/icons/bold_duotone/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/face-scan-square.svg b/assets/icons/bold_duotone/face-scan-square.svg index c998dd6d..465cef98 100644 --- a/assets/icons/bold_duotone/face-scan-square.svg +++ b/assets/icons/bold_duotone/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/facemask-circle.svg b/assets/icons/bold_duotone/facemask-circle.svg index 96a4170b..53853318 100644 --- a/assets/icons/bold_duotone/facemask-circle.svg +++ b/assets/icons/bold_duotone/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/facemask-square.svg b/assets/icons/bold_duotone/facemask-square.svg index 0291a5af..9bf47279 100644 --- a/assets/icons/bold_duotone/facemask-square.svg +++ b/assets/icons/bold_duotone/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/feed.svg b/assets/icons/bold_duotone/feed.svg index 603fc259..ff2a4482 100644 --- a/assets/icons/bold_duotone/feed.svg +++ b/assets/icons/bold_duotone/feed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ferris-wheel.svg b/assets/icons/bold_duotone/ferris-wheel.svg index eef7fc21..6d34c408 100644 --- a/assets/icons/bold_duotone/ferris-wheel.svg +++ b/assets/icons/bold_duotone/ferris-wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/figma-file.svg b/assets/icons/bold_duotone/figma-file.svg index 9bd7ab89..317d57e0 100644 --- a/assets/icons/bold_duotone/figma-file.svg +++ b/assets/icons/bold_duotone/figma-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/figma.svg b/assets/icons/bold_duotone/figma.svg index dda5cf1f..c321e6ba 100644 --- a/assets/icons/bold_duotone/figma.svg +++ b/assets/icons/bold_duotone/figma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-check.svg b/assets/icons/bold_duotone/file-check.svg index 6fce76d2..b3c21450 100644 --- a/assets/icons/bold_duotone/file-check.svg +++ b/assets/icons/bold_duotone/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-corrupted.svg b/assets/icons/bold_duotone/file-corrupted.svg index bbbbdac5..2f043ca3 100644 --- a/assets/icons/bold_duotone/file-corrupted.svg +++ b/assets/icons/bold_duotone/file-corrupted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-download.svg b/assets/icons/bold_duotone/file-download.svg index a4dae65c..08afa54c 100644 --- a/assets/icons/bold_duotone/file-download.svg +++ b/assets/icons/bold_duotone/file-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-favorite.svg b/assets/icons/bold_duotone/file-favorite.svg new file mode 100644 index 00000000..698ce0f4 --- /dev/null +++ b/assets/icons/bold_duotone/file-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-favourite.svg b/assets/icons/bold_duotone/file-favourite.svg deleted file mode 100644 index 9dec312a..00000000 --- a/assets/icons/bold_duotone/file-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-left.svg b/assets/icons/bold_duotone/file-left.svg index d6287d0c..f5003e16 100644 --- a/assets/icons/bold_duotone/file-left.svg +++ b/assets/icons/bold_duotone/file-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-remove.svg b/assets/icons/bold_duotone/file-remove.svg index a6da4982..f08d3e61 100644 --- a/assets/icons/bold_duotone/file-remove.svg +++ b/assets/icons/bold_duotone/file-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-right.svg b/assets/icons/bold_duotone/file-right.svg index 00b73fa9..eb8ae517 100644 --- a/assets/icons/bold_duotone/file-right.svg +++ b/assets/icons/bold_duotone/file-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-send.svg b/assets/icons/bold_duotone/file-send.svg index 14025509..740b5ff5 100644 --- a/assets/icons/bold_duotone/file-send.svg +++ b/assets/icons/bold_duotone/file-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-smile.svg b/assets/icons/bold_duotone/file-smile.svg index 5041c07c..ba419d4f 100644 --- a/assets/icons/bold_duotone/file-smile.svg +++ b/assets/icons/bold_duotone/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file-text.svg b/assets/icons/bold_duotone/file-text.svg index f78a8582..fc76c47e 100644 --- a/assets/icons/bold_duotone/file-text.svg +++ b/assets/icons/bold_duotone/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/file.svg b/assets/icons/bold_duotone/file.svg index 461f2487..b6d86dab 100644 --- a/assets/icons/bold_duotone/file.svg +++ b/assets/icons/bold_duotone/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/filter.svg b/assets/icons/bold_duotone/filter.svg index 07b48db9..cf5f6c2f 100644 --- a/assets/icons/bold_duotone/filter.svg +++ b/assets/icons/bold_duotone/filter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/filters.svg b/assets/icons/bold_duotone/filters.svg index a06cde42..71d3f5ae 100644 --- a/assets/icons/bold_duotone/filters.svg +++ b/assets/icons/bold_duotone/filters.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fire-minimalistic.svg b/assets/icons/bold_duotone/fire-minimalistic.svg index ae838890..f018532a 100644 --- a/assets/icons/bold_duotone/fire-minimalistic.svg +++ b/assets/icons/bold_duotone/fire-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fire-square.svg b/assets/icons/bold_duotone/fire-square.svg index a43141d2..7ea6bd8a 100644 --- a/assets/icons/bold_duotone/fire-square.svg +++ b/assets/icons/bold_duotone/fire-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fire.svg b/assets/icons/bold_duotone/fire.svg index c830d0c9..bb949c2c 100644 --- a/assets/icons/bold_duotone/fire.svg +++ b/assets/icons/bold_duotone/fire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flag-2.svg b/assets/icons/bold_duotone/flag-2.svg index f27c67c4..b8dd71a8 100644 --- a/assets/icons/bold_duotone/flag-2.svg +++ b/assets/icons/bold_duotone/flag-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flag.svg b/assets/icons/bold_duotone/flag.svg index dff279b5..a598f889 100644 --- a/assets/icons/bold_duotone/flag.svg +++ b/assets/icons/bold_duotone/flag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flame.svg b/assets/icons/bold_duotone/flame.svg index 7d494678..b73324c9 100644 --- a/assets/icons/bold_duotone/flame.svg +++ b/assets/icons/bold_duotone/flame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flash-drive.svg b/assets/icons/bold_duotone/flash-drive.svg index 09726aec..2e61cba5 100644 --- a/assets/icons/bold_duotone/flash-drive.svg +++ b/assets/icons/bold_duotone/flash-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flashlight-on.svg b/assets/icons/bold_duotone/flashlight-on.svg index 84de7fa1..85f2cc5c 100644 --- a/assets/icons/bold_duotone/flashlight-on.svg +++ b/assets/icons/bold_duotone/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flashlight.svg b/assets/icons/bold_duotone/flashlight.svg index b5c59c4d..11b29699 100644 --- a/assets/icons/bold_duotone/flashlight.svg +++ b/assets/icons/bold_duotone/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flip-horizontal.svg b/assets/icons/bold_duotone/flip-horizontal.svg index 588d46aa..ac98f6be 100644 --- a/assets/icons/bold_duotone/flip-horizontal.svg +++ b/assets/icons/bold_duotone/flip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/flip-vertical.svg b/assets/icons/bold_duotone/flip-vertical.svg index 6b314e13..9efadd72 100644 --- a/assets/icons/bold_duotone/flip-vertical.svg +++ b/assets/icons/bold_duotone/flip-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/floor-lamp-minimalistic.svg b/assets/icons/bold_duotone/floor-lamp-minimalistic.svg index 2d458f0f..16a04c01 100644 --- a/assets/icons/bold_duotone/floor-lamp-minimalistic.svg +++ b/assets/icons/bold_duotone/floor-lamp-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/floor-lamp.svg b/assets/icons/bold_duotone/floor-lamp.svg index f4fa6ee5..e3605989 100644 --- a/assets/icons/bold_duotone/floor-lamp.svg +++ b/assets/icons/bold_duotone/floor-lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fog.svg b/assets/icons/bold_duotone/fog.svg index 6bb571a9..62ee4056 100644 --- a/assets/icons/bold_duotone/fog.svg +++ b/assets/icons/bold_duotone/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-2.svg b/assets/icons/bold_duotone/folder-2.svg index 3ce04df1..15dd5e74 100644 --- a/assets/icons/bold_duotone/folder-2.svg +++ b/assets/icons/bold_duotone/folder-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-check.svg b/assets/icons/bold_duotone/folder-check.svg index 0275bd64..492617ba 100644 --- a/assets/icons/bold_duotone/folder-check.svg +++ b/assets/icons/bold_duotone/folder-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-cloud.svg b/assets/icons/bold_duotone/folder-cloud.svg index abfe8279..78b3dd87 100644 --- a/assets/icons/bold_duotone/folder-cloud.svg +++ b/assets/icons/bold_duotone/folder-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-error.svg b/assets/icons/bold_duotone/folder-error.svg index 9d4465e1..bf948b1a 100644 --- a/assets/icons/bold_duotone/folder-error.svg +++ b/assets/icons/bold_duotone/folder-error.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-favorite-bookmark.svg b/assets/icons/bold_duotone/folder-favorite-bookmark.svg new file mode 100644 index 00000000..2e593fd3 --- /dev/null +++ b/assets/icons/bold_duotone/folder-favorite-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-favorite-star.svg b/assets/icons/bold_duotone/folder-favorite-star.svg new file mode 100644 index 00000000..d9f157eb --- /dev/null +++ b/assets/icons/bold_duotone/folder-favorite-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-favourite-bookmark.svg b/assets/icons/bold_duotone/folder-favourite-bookmark.svg deleted file mode 100644 index 64deb850..00000000 --- a/assets/icons/bold_duotone/folder-favourite-bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-favourite-star.svg b/assets/icons/bold_duotone/folder-favourite-star.svg deleted file mode 100644 index a97adc41..00000000 --- a/assets/icons/bold_duotone/folder-favourite-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-open.svg b/assets/icons/bold_duotone/folder-open.svg index d53822af..90c6804f 100644 --- a/assets/icons/bold_duotone/folder-open.svg +++ b/assets/icons/bold_duotone/folder-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-path-connect.svg b/assets/icons/bold_duotone/folder-path-connect.svg index f586c995..6e4f84c7 100644 --- a/assets/icons/bold_duotone/folder-path-connect.svg +++ b/assets/icons/bold_duotone/folder-path-connect.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-security.svg b/assets/icons/bold_duotone/folder-security.svg index 2b9b3c9d..096f8cc0 100644 --- a/assets/icons/bold_duotone/folder-security.svg +++ b/assets/icons/bold_duotone/folder-security.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder-with-files.svg b/assets/icons/bold_duotone/folder-with-files.svg index 3f1756b8..5b24ca07 100644 --- a/assets/icons/bold_duotone/folder-with-files.svg +++ b/assets/icons/bold_duotone/folder-with-files.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/folder.svg b/assets/icons/bold_duotone/folder.svg index aab065f1..c22e7851 100644 --- a/assets/icons/bold_duotone/folder.svg +++ b/assets/icons/bold_duotone/folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/football.svg b/assets/icons/bold_duotone/football.svg index 61747834..cc7af314 100644 --- a/assets/icons/bold_duotone/football.svg +++ b/assets/icons/bold_duotone/football.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/forbidden-circle.svg b/assets/icons/bold_duotone/forbidden-circle.svg index b253d3c8..5bf53d89 100644 --- a/assets/icons/bold_duotone/forbidden-circle.svg +++ b/assets/icons/bold_duotone/forbidden-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/forbidden.svg b/assets/icons/bold_duotone/forbidden.svg index 4c92b164..59ef8f80 100644 --- a/assets/icons/bold_duotone/forbidden.svg +++ b/assets/icons/bold_duotone/forbidden.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/forward-2.svg b/assets/icons/bold_duotone/forward-2.svg index be7288e1..8b6a9053 100644 --- a/assets/icons/bold_duotone/forward-2.svg +++ b/assets/icons/bold_duotone/forward-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/forward-right.svg b/assets/icons/bold_duotone/forward-right.svg new file mode 100644 index 00000000..8cab527b --- /dev/null +++ b/assets/icons/bold_duotone/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/forward.svg b/assets/icons/bold_duotone/forward.svg index df7f29aa..33c87f8e 100644 --- a/assets/icons/bold_duotone/forward.svg +++ b/assets/icons/bold_duotone/forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/four-k.svg b/assets/icons/bold_duotone/four-k.svg new file mode 100644 index 00000000..aeea5c61 --- /dev/null +++ b/assets/icons/bold_duotone/four-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fridge.svg b/assets/icons/bold_duotone/fridge.svg index 11f8590f..2dcf6fe5 100644 --- a/assets/icons/bold_duotone/fridge.svg +++ b/assets/icons/bold_duotone/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/fuel.svg b/assets/icons/bold_duotone/fuel.svg index b994a3ad..502572bd 100644 --- a/assets/icons/bold_duotone/fuel.svg +++ b/assets/icons/bold_duotone/fuel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/full-screen-circle.svg b/assets/icons/bold_duotone/full-screen-circle.svg index ca48d723..dc6bdfdc 100644 --- a/assets/icons/bold_duotone/full-screen-circle.svg +++ b/assets/icons/bold_duotone/full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/full-screen-square.svg b/assets/icons/bold_duotone/full-screen-square.svg index 8878fef6..753122b7 100644 --- a/assets/icons/bold_duotone/full-screen-square.svg +++ b/assets/icons/bold_duotone/full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/full-screen.svg b/assets/icons/bold_duotone/full-screen.svg index 2e7a088b..6da02eac 100644 --- a/assets/icons/bold_duotone/full-screen.svg +++ b/assets/icons/bold_duotone/full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-add.svg b/assets/icons/bold_duotone/gallery-add.svg index a2ca71bd..70efea09 100644 --- a/assets/icons/bold_duotone/gallery-add.svg +++ b/assets/icons/bold_duotone/gallery-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-check.svg b/assets/icons/bold_duotone/gallery-check.svg index bae74f8b..861a47f0 100644 --- a/assets/icons/bold_duotone/gallery-check.svg +++ b/assets/icons/bold_duotone/gallery-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-circle.svg b/assets/icons/bold_duotone/gallery-circle.svg index 8d7e0ab6..0fc13ed4 100644 --- a/assets/icons/bold_duotone/gallery-circle.svg +++ b/assets/icons/bold_duotone/gallery-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-download.svg b/assets/icons/bold_duotone/gallery-download.svg index ae49fcad..963212e2 100644 --- a/assets/icons/bold_duotone/gallery-download.svg +++ b/assets/icons/bold_duotone/gallery-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-edit.svg b/assets/icons/bold_duotone/gallery-edit.svg index d5bd8cf0..4d15768e 100644 --- a/assets/icons/bold_duotone/gallery-edit.svg +++ b/assets/icons/bold_duotone/gallery-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-favorite.svg b/assets/icons/bold_duotone/gallery-favorite.svg new file mode 100644 index 00000000..61e9572e --- /dev/null +++ b/assets/icons/bold_duotone/gallery-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-favourite.svg b/assets/icons/bold_duotone/gallery-favourite.svg deleted file mode 100644 index c585c960..00000000 --- a/assets/icons/bold_duotone/gallery-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-minimalistic.svg b/assets/icons/bold_duotone/gallery-minimalistic.svg index ad2fc439..2326a4bf 100644 --- a/assets/icons/bold_duotone/gallery-minimalistic.svg +++ b/assets/icons/bold_duotone/gallery-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-remove.svg b/assets/icons/bold_duotone/gallery-remove.svg index 0e55a970..a15f7126 100644 --- a/assets/icons/bold_duotone/gallery-remove.svg +++ b/assets/icons/bold_duotone/gallery-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-round.svg b/assets/icons/bold_duotone/gallery-round.svg index 469620ad..1063b70d 100644 --- a/assets/icons/bold_duotone/gallery-round.svg +++ b/assets/icons/bold_duotone/gallery-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-send.svg b/assets/icons/bold_duotone/gallery-send.svg index c0a6f465..75bdc1ad 100644 --- a/assets/icons/bold_duotone/gallery-send.svg +++ b/assets/icons/bold_duotone/gallery-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery-wide.svg b/assets/icons/bold_duotone/gallery-wide.svg index 1e00d662..ffc9fa7a 100644 --- a/assets/icons/bold_duotone/gallery-wide.svg +++ b/assets/icons/bold_duotone/gallery-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gallery.svg b/assets/icons/bold_duotone/gallery.svg index b0412904..66a882b7 100644 --- a/assets/icons/bold_duotone/gallery.svg +++ b/assets/icons/bold_duotone/gallery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gameboy.svg b/assets/icons/bold_duotone/gameboy.svg index 7022077b..f6177fe4 100644 --- a/assets/icons/bold_duotone/gameboy.svg +++ b/assets/icons/bold_duotone/gameboy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gamepad-charge.svg b/assets/icons/bold_duotone/gamepad-charge.svg index d5565e3f..17e1c1d7 100644 --- a/assets/icons/bold_duotone/gamepad-charge.svg +++ b/assets/icons/bold_duotone/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gamepad-minimalistic.svg b/assets/icons/bold_duotone/gamepad-minimalistic.svg index 03c1d3b8..20b1ff4d 100644 --- a/assets/icons/bold_duotone/gamepad-minimalistic.svg +++ b/assets/icons/bold_duotone/gamepad-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gamepad-no-charge.svg b/assets/icons/bold_duotone/gamepad-no-charge.svg index c521f7e8..df11bd61 100644 --- a/assets/icons/bold_duotone/gamepad-no-charge.svg +++ b/assets/icons/bold_duotone/gamepad-no-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gamepad-old.svg b/assets/icons/bold_duotone/gamepad-old.svg index aa27aa38..802561dc 100644 --- a/assets/icons/bold_duotone/gamepad-old.svg +++ b/assets/icons/bold_duotone/gamepad-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gamepad.svg b/assets/icons/bold_duotone/gamepad.svg index 2f28c7d8..c7dd18ed 100644 --- a/assets/icons/bold_duotone/gamepad.svg +++ b/assets/icons/bold_duotone/gamepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/garage.svg b/assets/icons/bold_duotone/garage.svg index d490488d..c59872f5 100644 --- a/assets/icons/bold_duotone/garage.svg +++ b/assets/icons/bold_duotone/garage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gas-station.svg b/assets/icons/bold_duotone/gas-station.svg index aff2d7e4..c35743b7 100644 --- a/assets/icons/bold_duotone/gas-station.svg +++ b/assets/icons/bold_duotone/gas-station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ghost-smile.svg b/assets/icons/bold_duotone/ghost-smile.svg index be037cf2..b6b9d340 100644 --- a/assets/icons/bold_duotone/ghost-smile.svg +++ b/assets/icons/bold_duotone/ghost-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ghost.svg b/assets/icons/bold_duotone/ghost.svg index bdd28c27..f9e426c8 100644 --- a/assets/icons/bold_duotone/ghost.svg +++ b/assets/icons/bold_duotone/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gift.svg b/assets/icons/bold_duotone/gift.svg index 5e1a7f0f..6922fdf8 100644 --- a/assets/icons/bold_duotone/gift.svg +++ b/assets/icons/bold_duotone/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/glasses.svg b/assets/icons/bold_duotone/glasses.svg index 931bb861..94ac0976 100644 --- a/assets/icons/bold_duotone/glasses.svg +++ b/assets/icons/bold_duotone/glasses.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/global.svg b/assets/icons/bold_duotone/global.svg index 92981a0d..f6643e22 100644 --- a/assets/icons/bold_duotone/global.svg +++ b/assets/icons/bold_duotone/global.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/globe.svg b/assets/icons/bold_duotone/globe.svg new file mode 100644 index 00000000..923d4945 --- /dev/null +++ b/assets/icons/bold_duotone/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/globus.svg b/assets/icons/bold_duotone/globus.svg deleted file mode 100644 index 47767a0e..00000000 --- a/assets/icons/bold_duotone/globus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/golf.svg b/assets/icons/bold_duotone/golf.svg index a2dd8362..b7dbeebf 100644 --- a/assets/icons/bold_duotone/golf.svg +++ b/assets/icons/bold_duotone/golf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/gps.svg b/assets/icons/bold_duotone/gps.svg index 021e1d17..97fe21b4 100644 --- a/assets/icons/bold_duotone/gps.svg +++ b/assets/icons/bold_duotone/gps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph-down-new.svg b/assets/icons/bold_duotone/graph-down-new.svg index 5a202291..c3e38eb7 100644 --- a/assets/icons/bold_duotone/graph-down-new.svg +++ b/assets/icons/bold_duotone/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph-down.svg b/assets/icons/bold_duotone/graph-down.svg index f0336d65..af67e984 100644 --- a/assets/icons/bold_duotone/graph-down.svg +++ b/assets/icons/bold_duotone/graph-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph-new-up.svg b/assets/icons/bold_duotone/graph-new-up.svg index 1fd05d1a..665181f9 100644 --- a/assets/icons/bold_duotone/graph-new-up.svg +++ b/assets/icons/bold_duotone/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph-new.svg b/assets/icons/bold_duotone/graph-new.svg index b596b4fb..2abda214 100644 --- a/assets/icons/bold_duotone/graph-new.svg +++ b/assets/icons/bold_duotone/graph-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph-up.svg b/assets/icons/bold_duotone/graph-up.svg index 452a6e2a..67871818 100644 --- a/assets/icons/bold_duotone/graph-up.svg +++ b/assets/icons/bold_duotone/graph-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/graph.svg b/assets/icons/bold_duotone/graph.svg index 2a54b607..32d00ca8 100644 --- a/assets/icons/bold_duotone/graph.svg +++ b/assets/icons/bold_duotone/graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hamburger-menu.svg b/assets/icons/bold_duotone/hamburger-menu.svg index ffb59130..88567332 100644 --- a/assets/icons/bold_duotone/hamburger-menu.svg +++ b/assets/icons/bold_duotone/hamburger-menu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hand-heart.svg b/assets/icons/bold_duotone/hand-heart.svg index 33038938..07abcf5a 100644 --- a/assets/icons/bold_duotone/hand-heart.svg +++ b/assets/icons/bold_duotone/hand-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hand-money.svg b/assets/icons/bold_duotone/hand-money.svg index eb89511e..00e08d6e 100644 --- a/assets/icons/bold_duotone/hand-money.svg +++ b/assets/icons/bold_duotone/hand-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hand-pills.svg b/assets/icons/bold_duotone/hand-pills.svg index 330e6f9b..41769a68 100644 --- a/assets/icons/bold_duotone/hand-pills.svg +++ b/assets/icons/bold_duotone/hand-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hand-shake.svg b/assets/icons/bold_duotone/hand-shake.svg index aff07949..2b63dee8 100644 --- a/assets/icons/bold_duotone/hand-shake.svg +++ b/assets/icons/bold_duotone/hand-shake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hand-stars.svg b/assets/icons/bold_duotone/hand-stars.svg index 56a87a7d..25c3800b 100644 --- a/assets/icons/bold_duotone/hand-stars.svg +++ b/assets/icons/bold_duotone/hand-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hanger-2.svg b/assets/icons/bold_duotone/hanger-2.svg index bb23be6f..1089e942 100644 --- a/assets/icons/bold_duotone/hanger-2.svg +++ b/assets/icons/bold_duotone/hanger-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hanger.svg b/assets/icons/bold_duotone/hanger.svg index dca0de70..f64405d7 100644 --- a/assets/icons/bold_duotone/hanger.svg +++ b/assets/icons/bold_duotone/hanger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hashtag-chat.svg b/assets/icons/bold_duotone/hashtag-chat.svg index 0d8b7865..ba5b2dd6 100644 --- a/assets/icons/bold_duotone/hashtag-chat.svg +++ b/assets/icons/bold_duotone/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hashtag-circle.svg b/assets/icons/bold_duotone/hashtag-circle.svg index 101bb91b..58072f8a 100644 --- a/assets/icons/bold_duotone/hashtag-circle.svg +++ b/assets/icons/bold_duotone/hashtag-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hashtag-square.svg b/assets/icons/bold_duotone/hashtag-square.svg index b3c0ff1d..10c2a51a 100644 --- a/assets/icons/bold_duotone/hashtag-square.svg +++ b/assets/icons/bold_duotone/hashtag-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hashtag.svg b/assets/icons/bold_duotone/hashtag.svg index ce122dbc..1d718eb7 100644 --- a/assets/icons/bold_duotone/hashtag.svg +++ b/assets/icons/bold_duotone/hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/headphones-round-sound.svg b/assets/icons/bold_duotone/headphones-round-sound.svg index 7a8a4c2b..31f3ee41 100644 --- a/assets/icons/bold_duotone/headphones-round-sound.svg +++ b/assets/icons/bold_duotone/headphones-round-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/headphones-round.svg b/assets/icons/bold_duotone/headphones-round.svg index 12bfdd44..d31dcad5 100644 --- a/assets/icons/bold_duotone/headphones-round.svg +++ b/assets/icons/bold_duotone/headphones-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/headphones-square-sound.svg b/assets/icons/bold_duotone/headphones-square-sound.svg index 042899af..b4956800 100644 --- a/assets/icons/bold_duotone/headphones-square-sound.svg +++ b/assets/icons/bold_duotone/headphones-square-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/headphones-square.svg b/assets/icons/bold_duotone/headphones-square.svg index 07a4f61e..31dd5f1c 100644 --- a/assets/icons/bold_duotone/headphones-square.svg +++ b/assets/icons/bold_duotone/headphones-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/health.svg b/assets/icons/bold_duotone/health.svg index eebb5b20..4ea52736 100644 --- a/assets/icons/bold_duotone/health.svg +++ b/assets/icons/bold_duotone/health.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-angle.svg b/assets/icons/bold_duotone/heart-angle.svg index 56c17bf5..f709f3ea 100644 --- a/assets/icons/bold_duotone/heart-angle.svg +++ b/assets/icons/bold_duotone/heart-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-broken.svg b/assets/icons/bold_duotone/heart-broken.svg deleted file mode 100644 index b978eec4..00000000 --- a/assets/icons/bold_duotone/heart-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-crack.svg b/assets/icons/bold_duotone/heart-crack.svg new file mode 100644 index 00000000..d62a360a --- /dev/null +++ b/assets/icons/bold_duotone/heart-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-lock.svg b/assets/icons/bold_duotone/heart-lock.svg index 5ed7fa4a..4fbc231d 100644 --- a/assets/icons/bold_duotone/heart-lock.svg +++ b/assets/icons/bold_duotone/heart-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-pulse-2.svg b/assets/icons/bold_duotone/heart-pulse-2.svg index 1d728140..b5332ee9 100644 --- a/assets/icons/bold_duotone/heart-pulse-2.svg +++ b/assets/icons/bold_duotone/heart-pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-pulse.svg b/assets/icons/bold_duotone/heart-pulse.svg index fc82f75b..4de9a248 100644 --- a/assets/icons/bold_duotone/heart-pulse.svg +++ b/assets/icons/bold_duotone/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-shine.svg b/assets/icons/bold_duotone/heart-shine.svg index cbf26477..efa9ea50 100644 --- a/assets/icons/bold_duotone/heart-shine.svg +++ b/assets/icons/bold_duotone/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart-unlock.svg b/assets/icons/bold_duotone/heart-unlock.svg index d4158ef7..5280a6cf 100644 --- a/assets/icons/bold_duotone/heart-unlock.svg +++ b/assets/icons/bold_duotone/heart-unlock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/heart.svg b/assets/icons/bold_duotone/heart.svg index b36fd738..4959d25d 100644 --- a/assets/icons/bold_duotone/heart.svg +++ b/assets/icons/bold_duotone/heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hearts.svg b/assets/icons/bold_duotone/hearts.svg index 06d4e063..2c6bdb87 100644 --- a/assets/icons/bold_duotone/hearts.svg +++ b/assets/icons/bold_duotone/hearts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/help.svg b/assets/icons/bold_duotone/help.svg index 4d022d31..a55ea010 100644 --- a/assets/icons/bold_duotone/help.svg +++ b/assets/icons/bold_duotone/help.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/high-definition.svg b/assets/icons/bold_duotone/high-definition.svg index 52a19f32..a402fb5e 100644 --- a/assets/icons/bold_duotone/high-definition.svg +++ b/assets/icons/bold_duotone/high-definition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/high-quality.svg b/assets/icons/bold_duotone/high-quality.svg index 5f58f138..d31d7b80 100644 --- a/assets/icons/bold_duotone/high-quality.svg +++ b/assets/icons/bold_duotone/high-quality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hiking-minimalistic.svg b/assets/icons/bold_duotone/hiking-minimalistic.svg index 722387bb..86d78e09 100644 --- a/assets/icons/bold_duotone/hiking-minimalistic.svg +++ b/assets/icons/bold_duotone/hiking-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hiking-round.svg b/assets/icons/bold_duotone/hiking-round.svg index 9bb4cdb8..a7db0192 100644 --- a/assets/icons/bold_duotone/hiking-round.svg +++ b/assets/icons/bold_duotone/hiking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hiking.svg b/assets/icons/bold_duotone/hiking.svg index 74b074ab..c60ad7e3 100644 --- a/assets/icons/bold_duotone/hiking.svg +++ b/assets/icons/bold_duotone/hiking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/history-2.svg b/assets/icons/bold_duotone/history-2.svg index ea364fd3..6b06bd11 100644 --- a/assets/icons/bold_duotone/history-2.svg +++ b/assets/icons/bold_duotone/history-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/history-3.svg b/assets/icons/bold_duotone/history-3.svg index ddcc153d..b908da5e 100644 --- a/assets/icons/bold_duotone/history-3.svg +++ b/assets/icons/bold_duotone/history-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/history.svg b/assets/icons/bold_duotone/history.svg index 5efb9f77..95a78688 100644 --- a/assets/icons/bold_duotone/history.svg +++ b/assets/icons/bold_duotone/history.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-2.svg b/assets/icons/bold_duotone/home-2.svg index 5972438e..543855c0 100644 --- a/assets/icons/bold_duotone/home-2.svg +++ b/assets/icons/bold_duotone/home-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-add-angle.svg b/assets/icons/bold_duotone/home-add-angle.svg index 28a21cdd..e012d607 100644 --- a/assets/icons/bold_duotone/home-add-angle.svg +++ b/assets/icons/bold_duotone/home-add-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-add.svg b/assets/icons/bold_duotone/home-add.svg index 4baedc87..49f87705 100644 --- a/assets/icons/bold_duotone/home-add.svg +++ b/assets/icons/bold_duotone/home-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-angle-2.svg b/assets/icons/bold_duotone/home-angle-2.svg index 53a7cea0..6a7a3435 100644 --- a/assets/icons/bold_duotone/home-angle-2.svg +++ b/assets/icons/bold_duotone/home-angle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-angle.svg b/assets/icons/bold_duotone/home-angle.svg index 775c5827..ef09546a 100644 --- a/assets/icons/bold_duotone/home-angle.svg +++ b/assets/icons/bold_duotone/home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-smile-angle.svg b/assets/icons/bold_duotone/home-smile-angle.svg index 7685a513..45389ed0 100644 --- a/assets/icons/bold_duotone/home-smile-angle.svg +++ b/assets/icons/bold_duotone/home-smile-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-smile.svg b/assets/icons/bold_duotone/home-smile.svg index f31886dd..9fc83466 100644 --- a/assets/icons/bold_duotone/home-smile.svg +++ b/assets/icons/bold_duotone/home-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-wi-fi-angle.svg b/assets/icons/bold_duotone/home-wi-fi-angle.svg new file mode 100644 index 00000000..15d97c68 --- /dev/null +++ b/assets/icons/bold_duotone/home-wi-fi-angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-wi-fi.svg b/assets/icons/bold_duotone/home-wi-fi.svg new file mode 100644 index 00000000..d78c4815 --- /dev/null +++ b/assets/icons/bold_duotone/home-wi-fi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-wifi-angle.svg b/assets/icons/bold_duotone/home-wifi-angle.svg deleted file mode 100644 index 5056a4cc..00000000 --- a/assets/icons/bold_duotone/home-wifi-angle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/home-wifi.svg b/assets/icons/bold_duotone/home-wifi.svg deleted file mode 100644 index 4def6f0c..00000000 --- a/assets/icons/bold_duotone/home-wifi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/home.svg b/assets/icons/bold_duotone/home.svg index 4a6d3578..1f4e1438 100644 --- a/assets/icons/bold_duotone/home.svg +++ b/assets/icons/bold_duotone/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hospital.svg b/assets/icons/bold_duotone/hospital.svg index e2fd3be0..10b9bd57 100644 --- a/assets/icons/bold_duotone/hospital.svg +++ b/assets/icons/bold_duotone/hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hourglass-line.svg b/assets/icons/bold_duotone/hourglass-line.svg index 8037cbde..44da5442 100644 --- a/assets/icons/bold_duotone/hourglass-line.svg +++ b/assets/icons/bold_duotone/hourglass-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/hourglass.svg b/assets/icons/bold_duotone/hourglass.svg index 5ae8dcda..0d1ec21c 100644 --- a/assets/icons/bold_duotone/hourglass.svg +++ b/assets/icons/bold_duotone/hourglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/house.svg b/assets/icons/bold_duotone/house.svg new file mode 100644 index 00000000..c208baf4 --- /dev/null +++ b/assets/icons/bold_duotone/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/i-phone.svg b/assets/icons/bold_duotone/i-phone.svg new file mode 100644 index 00000000..d608aba0 --- /dev/null +++ b/assets/icons/bold_duotone/i-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/import.svg b/assets/icons/bold_duotone/import.svg index 50b2aab3..4455339c 100644 --- a/assets/icons/bold_duotone/import.svg +++ b/assets/icons/bold_duotone/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox-archive.svg b/assets/icons/bold_duotone/inbox-archive.svg index 4eff2e38..0c9aaa8c 100644 --- a/assets/icons/bold_duotone/inbox-archive.svg +++ b/assets/icons/bold_duotone/inbox-archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox-in.svg b/assets/icons/bold_duotone/inbox-in.svg index 4f5a57fd..10d00da7 100644 --- a/assets/icons/bold_duotone/inbox-in.svg +++ b/assets/icons/bold_duotone/inbox-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox-line.svg b/assets/icons/bold_duotone/inbox-line.svg index e47335f0..69a6df2a 100644 --- a/assets/icons/bold_duotone/inbox-line.svg +++ b/assets/icons/bold_duotone/inbox-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox-out.svg b/assets/icons/bold_duotone/inbox-out.svg index 22020216..0e6826fb 100644 --- a/assets/icons/bold_duotone/inbox-out.svg +++ b/assets/icons/bold_duotone/inbox-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox-unread.svg b/assets/icons/bold_duotone/inbox-unread.svg index 03d9c755..275deda6 100644 --- a/assets/icons/bold_duotone/inbox-unread.svg +++ b/assets/icons/bold_duotone/inbox-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/inbox.svg b/assets/icons/bold_duotone/inbox.svg index 94b437fb..8e1c0350 100644 --- a/assets/icons/bold_duotone/inbox.svg +++ b/assets/icons/bold_duotone/inbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/incognito.svg b/assets/icons/bold_duotone/incognito.svg index 374cacc8..a8e16975 100644 --- a/assets/icons/bold_duotone/incognito.svg +++ b/assets/icons/bold_duotone/incognito.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/incoming-call-rounded.svg b/assets/icons/bold_duotone/incoming-call-rounded.svg index 955359d6..912c9510 100644 --- a/assets/icons/bold_duotone/incoming-call-rounded.svg +++ b/assets/icons/bold_duotone/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/incoming-call.svg b/assets/icons/bold_duotone/incoming-call.svg index 0ec2f0e0..4a7de505 100644 --- a/assets/icons/bold_duotone/incoming-call.svg +++ b/assets/icons/bold_duotone/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/infinite.svg b/assets/icons/bold_duotone/infinite.svg new file mode 100644 index 00000000..82b01c27 --- /dev/null +++ b/assets/icons/bold_duotone/infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/infinity.svg b/assets/icons/bold_duotone/infinity.svg deleted file mode 100644 index 4b59e3ac..00000000 --- a/assets/icons/bold_duotone/infinity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/info-circle.svg b/assets/icons/bold_duotone/info-circle.svg index 79dfb2a1..5a2ccc19 100644 --- a/assets/icons/bold_duotone/info-circle.svg +++ b/assets/icons/bold_duotone/info-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/info-square.svg b/assets/icons/bold_duotone/info-square.svg index 26c40e42..512c9858 100644 --- a/assets/icons/bold_duotone/info-square.svg +++ b/assets/icons/bold_duotone/info-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/iphone.svg b/assets/icons/bold_duotone/iphone.svg deleted file mode 100644 index 46707d6b..00000000 --- a/assets/icons/bold_duotone/iphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/jar-of-pills-2.svg b/assets/icons/bold_duotone/jar-of-pills-2.svg index 8afb82dc..19cb523e 100644 --- a/assets/icons/bold_duotone/jar-of-pills-2.svg +++ b/assets/icons/bold_duotone/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/jar-of-pills.svg b/assets/icons/bold_duotone/jar-of-pills.svg index 35464d78..59de3fed 100644 --- a/assets/icons/bold_duotone/jar-of-pills.svg +++ b/assets/icons/bold_duotone/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-minimalistic-2.svg b/assets/icons/bold_duotone/key-minimalistic-2.svg index 6b73c39c..b31f745c 100644 --- a/assets/icons/bold_duotone/key-minimalistic-2.svg +++ b/assets/icons/bold_duotone/key-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-minimalistic-square-2.svg b/assets/icons/bold_duotone/key-minimalistic-square-2.svg index 87b19d72..6c43947e 100644 --- a/assets/icons/bold_duotone/key-minimalistic-square-2.svg +++ b/assets/icons/bold_duotone/key-minimalistic-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-minimalistic-square-3.svg b/assets/icons/bold_duotone/key-minimalistic-square-3.svg index d7fd4f8b..f354b270 100644 --- a/assets/icons/bold_duotone/key-minimalistic-square-3.svg +++ b/assets/icons/bold_duotone/key-minimalistic-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-minimalistic-square.svg b/assets/icons/bold_duotone/key-minimalistic-square.svg index ebbbca80..97a50119 100644 --- a/assets/icons/bold_duotone/key-minimalistic-square.svg +++ b/assets/icons/bold_duotone/key-minimalistic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-minimalistic.svg b/assets/icons/bold_duotone/key-minimalistic.svg index 2c6c55b3..9ac491c6 100644 --- a/assets/icons/bold_duotone/key-minimalistic.svg +++ b/assets/icons/bold_duotone/key-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-square-2.svg b/assets/icons/bold_duotone/key-square-2.svg index a5fd3626..1d24ed25 100644 --- a/assets/icons/bold_duotone/key-square-2.svg +++ b/assets/icons/bold_duotone/key-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key-square.svg b/assets/icons/bold_duotone/key-square.svg index 6f736ec9..58e9893a 100644 --- a/assets/icons/bold_duotone/key-square.svg +++ b/assets/icons/bold_duotone/key-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/key.svg b/assets/icons/bold_duotone/key.svg index fc7a9d88..36ebea93 100644 --- a/assets/icons/bold_duotone/key.svg +++ b/assets/icons/bold_duotone/key.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/keyboard.svg b/assets/icons/bold_duotone/keyboard.svg index 31a135b6..91f83b6a 100644 --- a/assets/icons/bold_duotone/keyboard.svg +++ b/assets/icons/bold_duotone/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/kick-scooter.svg b/assets/icons/bold_duotone/kick-scooter.svg index f3177331..39ca7ce9 100644 --- a/assets/icons/bold_duotone/kick-scooter.svg +++ b/assets/icons/bold_duotone/kick-scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ladle.svg b/assets/icons/bold_duotone/ladle.svg index 73fedcb2..10dd9e2f 100644 --- a/assets/icons/bold_duotone/ladle.svg +++ b/assets/icons/bold_duotone/ladle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lamp.svg b/assets/icons/bold_duotone/lamp.svg index b865bacc..02a1a31b 100644 --- a/assets/icons/bold_duotone/lamp.svg +++ b/assets/icons/bold_duotone/lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/laptop-2.svg b/assets/icons/bold_duotone/laptop-2.svg index 38a53cda..cc0e5538 100644 --- a/assets/icons/bold_duotone/laptop-2.svg +++ b/assets/icons/bold_duotone/laptop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/laptop-3.svg b/assets/icons/bold_duotone/laptop-3.svg index 97e86771..00e7975a 100644 --- a/assets/icons/bold_duotone/laptop-3.svg +++ b/assets/icons/bold_duotone/laptop-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/laptop-minimalistic.svg b/assets/icons/bold_duotone/laptop-minimalistic.svg index 4736e745..39cd9424 100644 --- a/assets/icons/bold_duotone/laptop-minimalistic.svg +++ b/assets/icons/bold_duotone/laptop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/laptop.svg b/assets/icons/bold_duotone/laptop.svg index 39e7d09e..23b3c926 100644 --- a/assets/icons/bold_duotone/laptop.svg +++ b/assets/icons/bold_duotone/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/layers-minimalistic.svg b/assets/icons/bold_duotone/layers-minimalistic.svg index f9fdfe63..5a15eebc 100644 --- a/assets/icons/bold_duotone/layers-minimalistic.svg +++ b/assets/icons/bold_duotone/layers-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/layers.svg b/assets/icons/bold_duotone/layers.svg index 9beb7703..578ab5a3 100644 --- a/assets/icons/bold_duotone/layers.svg +++ b/assets/icons/bold_duotone/layers.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/leaf.svg b/assets/icons/bold_duotone/leaf.svg index 55872fae..c3967397 100644 --- a/assets/icons/bold_duotone/leaf.svg +++ b/assets/icons/bold_duotone/leaf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/letter-opened.svg b/assets/icons/bold_duotone/letter-opened.svg index e2e626ea..80ef3ee2 100644 --- a/assets/icons/bold_duotone/letter-opened.svg +++ b/assets/icons/bold_duotone/letter-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/letter-unread.svg b/assets/icons/bold_duotone/letter-unread.svg index 6a3457eb..1aec3faf 100644 --- a/assets/icons/bold_duotone/letter-unread.svg +++ b/assets/icons/bold_duotone/letter-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/letter.svg b/assets/icons/bold_duotone/letter.svg index e5f0ece3..652f2025 100644 --- a/assets/icons/bold_duotone/letter.svg +++ b/assets/icons/bold_duotone/letter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/library.svg b/assets/icons/bold_duotone/library.svg index 9f3c9f20..6848bd45 100644 --- a/assets/icons/bold_duotone/library.svg +++ b/assets/icons/bold_duotone/library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lightbulb-bolt.svg b/assets/icons/bold_duotone/lightbulb-bolt.svg index 63dd4123..bbdd527b 100644 --- a/assets/icons/bold_duotone/lightbulb-bolt.svg +++ b/assets/icons/bold_duotone/lightbulb-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lightbulb-minimalistic.svg b/assets/icons/bold_duotone/lightbulb-minimalistic.svg index e1ad69c8..1c7ce5c9 100644 --- a/assets/icons/bold_duotone/lightbulb-minimalistic.svg +++ b/assets/icons/bold_duotone/lightbulb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lightbulb.svg b/assets/icons/bold_duotone/lightbulb.svg index a3fa19aa..26e8983e 100644 --- a/assets/icons/bold_duotone/lightbulb.svg +++ b/assets/icons/bold_duotone/lightbulb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lightning.svg b/assets/icons/bold_duotone/lightning.svg index 13d5a08f..dc247eab 100644 --- a/assets/icons/bold_duotone/lightning.svg +++ b/assets/icons/bold_duotone/lightning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/like.svg b/assets/icons/bold_duotone/like.svg index 2ef882c4..9eaf287b 100644 --- a/assets/icons/bold_duotone/like.svg +++ b/assets/icons/bold_duotone/like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-broken-minimalistic.svg b/assets/icons/bold_duotone/link-broken-minimalistic.svg deleted file mode 100644 index 7ace6304..00000000 --- a/assets/icons/bold_duotone/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-broken.svg b/assets/icons/bold_duotone/link-broken.svg deleted file mode 100644 index 0a7b159d..00000000 --- a/assets/icons/bold_duotone/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-circle.svg b/assets/icons/bold_duotone/link-circle.svg index 77fb2e8e..10c40638 100644 --- a/assets/icons/bold_duotone/link-circle.svg +++ b/assets/icons/bold_duotone/link-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-minimalistic-2.svg b/assets/icons/bold_duotone/link-minimalistic-2.svg index d3ece12b..eb7f32a7 100644 --- a/assets/icons/bold_duotone/link-minimalistic-2.svg +++ b/assets/icons/bold_duotone/link-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-minimalistic.svg b/assets/icons/bold_duotone/link-minimalistic.svg index b55594e0..f229953a 100644 --- a/assets/icons/bold_duotone/link-minimalistic.svg +++ b/assets/icons/bold_duotone/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-round-angle.svg b/assets/icons/bold_duotone/link-round-angle.svg index 8f45bc98..da18bec1 100644 --- a/assets/icons/bold_duotone/link-round-angle.svg +++ b/assets/icons/bold_duotone/link-round-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-round.svg b/assets/icons/bold_duotone/link-round.svg index daea6437..8dd0cf1c 100644 --- a/assets/icons/bold_duotone/link-round.svg +++ b/assets/icons/bold_duotone/link-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link-square.svg b/assets/icons/bold_duotone/link-square.svg index b60a674e..48b8197f 100644 --- a/assets/icons/bold_duotone/link-square.svg +++ b/assets/icons/bold_duotone/link-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/link.svg b/assets/icons/bold_duotone/link.svg index b8d13381..4275ce0a 100644 --- a/assets/icons/bold_duotone/link.svg +++ b/assets/icons/bold_duotone/link.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-arrow-down.svg b/assets/icons/bold_duotone/list-arrow-down.svg index 3a58e3db..79ebe0eb 100644 --- a/assets/icons/bold_duotone/list-arrow-down.svg +++ b/assets/icons/bold_duotone/list-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-arrow-up-minimalistic.svg b/assets/icons/bold_duotone/list-arrow-up-minimalistic.svg index 0ad9670e..975056d5 100644 --- a/assets/icons/bold_duotone/list-arrow-up-minimalistic.svg +++ b/assets/icons/bold_duotone/list-arrow-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-arrow-up.svg b/assets/icons/bold_duotone/list-arrow-up.svg index 3fdeebcb..2cebc621 100644 --- a/assets/icons/bold_duotone/list-arrow-up.svg +++ b/assets/icons/bold_duotone/list-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-check-minimalistic.svg b/assets/icons/bold_duotone/list-check-minimalistic.svg index 3243a111..b9e67e94 100644 --- a/assets/icons/bold_duotone/list-check-minimalistic.svg +++ b/assets/icons/bold_duotone/list-check-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-check.svg b/assets/icons/bold_duotone/list-check.svg index 55a449bf..2c773206 100644 --- a/assets/icons/bold_duotone/list-check.svg +++ b/assets/icons/bold_duotone/list-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-cross-minimalistic.svg b/assets/icons/bold_duotone/list-cross-minimalistic.svg index 421deb7b..51b6b1c8 100644 --- a/assets/icons/bold_duotone/list-cross-minimalistic.svg +++ b/assets/icons/bold_duotone/list-cross-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-cross.svg b/assets/icons/bold_duotone/list-cross.svg index 4c6aaca2..739f0526 100644 --- a/assets/icons/bold_duotone/list-cross.svg +++ b/assets/icons/bold_duotone/list-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-down.svg b/assets/icons/bold_duotone/list-down.svg index 771fbcb6..1137b40e 100644 --- a/assets/icons/bold_duotone/list-down.svg +++ b/assets/icons/bold_duotone/list-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-heart-minimalistic.svg b/assets/icons/bold_duotone/list-heart-minimalistic.svg index ee8da63f..c529f15a 100644 --- a/assets/icons/bold_duotone/list-heart-minimalistic.svg +++ b/assets/icons/bold_duotone/list-heart-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-heart.svg b/assets/icons/bold_duotone/list-heart.svg index a5194374..f70e2b9a 100644 --- a/assets/icons/bold_duotone/list-heart.svg +++ b/assets/icons/bold_duotone/list-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-up-minimalistic.svg b/assets/icons/bold_duotone/list-up-minimalistic.svg index 15d11892..5b2fb9a6 100644 --- a/assets/icons/bold_duotone/list-up-minimalistic.svg +++ b/assets/icons/bold_duotone/list-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-up.svg b/assets/icons/bold_duotone/list-up.svg index 1ed490df..5fb4e093 100644 --- a/assets/icons/bold_duotone/list-up.svg +++ b/assets/icons/bold_duotone/list-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list-vertical.svg b/assets/icons/bold_duotone/list-vertical.svg new file mode 100644 index 00000000..d22bb4d8 --- /dev/null +++ b/assets/icons/bold_duotone/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/list.svg b/assets/icons/bold_duotone/list.svg index c62024da..195c644b 100644 --- a/assets/icons/bold_duotone/list.svg +++ b/assets/icons/bold_duotone/list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-keyhole-minimalistic-unlocked.svg b/assets/icons/bold_duotone/lock-keyhole-minimalistic-unlocked.svg index 1ed97361..28ff0a84 100644 --- a/assets/icons/bold_duotone/lock-keyhole-minimalistic-unlocked.svg +++ b/assets/icons/bold_duotone/lock-keyhole-minimalistic-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-keyhole-minimalistic.svg b/assets/icons/bold_duotone/lock-keyhole-minimalistic.svg index e274339e..7ccbb814 100644 --- a/assets/icons/bold_duotone/lock-keyhole-minimalistic.svg +++ b/assets/icons/bold_duotone/lock-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-keyhole-unlocked.svg b/assets/icons/bold_duotone/lock-keyhole-unlocked.svg index 53fa42e4..644328a4 100644 --- a/assets/icons/bold_duotone/lock-keyhole-unlocked.svg +++ b/assets/icons/bold_duotone/lock-keyhole-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-keyhole.svg b/assets/icons/bold_duotone/lock-keyhole.svg index cc9132c0..86634a94 100644 --- a/assets/icons/bold_duotone/lock-keyhole.svg +++ b/assets/icons/bold_duotone/lock-keyhole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-password-unlocked.svg b/assets/icons/bold_duotone/lock-password-unlocked.svg index 08e3f8fa..01a01f87 100644 --- a/assets/icons/bold_duotone/lock-password-unlocked.svg +++ b/assets/icons/bold_duotone/lock-password-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-password.svg b/assets/icons/bold_duotone/lock-password.svg index dcd79a18..32d846c3 100644 --- a/assets/icons/bold_duotone/lock-password.svg +++ b/assets/icons/bold_duotone/lock-password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock-unlocked.svg b/assets/icons/bold_duotone/lock-unlocked.svg index e37b3f85..4e27f44c 100644 --- a/assets/icons/bold_duotone/lock-unlocked.svg +++ b/assets/icons/bold_duotone/lock-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/lock.svg b/assets/icons/bold_duotone/lock.svg index 08c6cc0d..f9c677b2 100644 --- a/assets/icons/bold_duotone/lock.svg +++ b/assets/icons/bold_duotone/lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/login-2.svg b/assets/icons/bold_duotone/login-2.svg index 466be0e6..d6a8c95e 100644 --- a/assets/icons/bold_duotone/login-2.svg +++ b/assets/icons/bold_duotone/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/login-3.svg b/assets/icons/bold_duotone/login-3.svg index f9c4f68e..0d760900 100644 --- a/assets/icons/bold_duotone/login-3.svg +++ b/assets/icons/bold_duotone/login-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/login.svg b/assets/icons/bold_duotone/login.svg index 69373272..1d9bb837 100644 --- a/assets/icons/bold_duotone/login.svg +++ b/assets/icons/bold_duotone/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/logout-2.svg b/assets/icons/bold_duotone/logout-2.svg new file mode 100644 index 00000000..341560e5 --- /dev/null +++ b/assets/icons/bold_duotone/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/logout-3.svg b/assets/icons/bold_duotone/logout-3.svg index 15b3e96c..4e323a4d 100644 --- a/assets/icons/bold_duotone/logout-3.svg +++ b/assets/icons/bold_duotone/logout-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/logout.svg b/assets/icons/bold_duotone/logout.svg new file mode 100644 index 00000000..b90f7c55 --- /dev/null +++ b/assets/icons/bold_duotone/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-stick-2.svg b/assets/icons/bold_duotone/magic-stick-2.svg deleted file mode 100644 index 9b8e6237..00000000 --- a/assets/icons/bold_duotone/magic-stick-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-stick-3.svg b/assets/icons/bold_duotone/magic-stick-3.svg deleted file mode 100644 index 31fdb388..00000000 --- a/assets/icons/bold_duotone/magic-stick-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-stick.svg b/assets/icons/bold_duotone/magic-stick.svg deleted file mode 100644 index 53b42365..00000000 --- a/assets/icons/bold_duotone/magic-stick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-wand-2.svg b/assets/icons/bold_duotone/magic-wand-2.svg new file mode 100644 index 00000000..96f1ed9c --- /dev/null +++ b/assets/icons/bold_duotone/magic-wand-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-wand-3.svg b/assets/icons/bold_duotone/magic-wand-3.svg new file mode 100644 index 00000000..eba03e1a --- /dev/null +++ b/assets/icons/bold_duotone/magic-wand-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magic-wand.svg b/assets/icons/bold_duotone/magic-wand.svg new file mode 100644 index 00000000..a684d6df --- /dev/null +++ b/assets/icons/bold_duotone/magic-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnet-wave.svg b/assets/icons/bold_duotone/magnet-wave.svg index e34d35d7..af45a6d3 100644 --- a/assets/icons/bold_duotone/magnet-wave.svg +++ b/assets/icons/bold_duotone/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnet.svg b/assets/icons/bold_duotone/magnet.svg index 68abaece..d51c7350 100644 --- a/assets/icons/bold_duotone/magnet.svg +++ b/assets/icons/bold_duotone/magnet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifer-bug.svg b/assets/icons/bold_duotone/magnifer-bug.svg deleted file mode 100644 index 6b0e445b..00000000 --- a/assets/icons/bold_duotone/magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifer-zoom-in.svg b/assets/icons/bold_duotone/magnifer-zoom-in.svg deleted file mode 100644 index 16b73e84..00000000 --- a/assets/icons/bold_duotone/magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifer-zoom-out.svg b/assets/icons/bold_duotone/magnifer-zoom-out.svg deleted file mode 100644 index 575374a8..00000000 --- a/assets/icons/bold_duotone/magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifer.svg b/assets/icons/bold_duotone/magnifer.svg deleted file mode 100644 index 07dd3d2c..00000000 --- a/assets/icons/bold_duotone/magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifier-bug.svg b/assets/icons/bold_duotone/magnifier-bug.svg new file mode 100644 index 00000000..1e597d12 --- /dev/null +++ b/assets/icons/bold_duotone/magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifier-zoom-in.svg b/assets/icons/bold_duotone/magnifier-zoom-in.svg new file mode 100644 index 00000000..e5bc0428 --- /dev/null +++ b/assets/icons/bold_duotone/magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifier-zoom-out.svg b/assets/icons/bold_duotone/magnifier-zoom-out.svg new file mode 100644 index 00000000..93ff48bc --- /dev/null +++ b/assets/icons/bold_duotone/magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/magnifier.svg b/assets/icons/bold_duotone/magnifier.svg new file mode 100644 index 00000000..58cd4bf9 --- /dev/null +++ b/assets/icons/bold_duotone/magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mailbox.svg b/assets/icons/bold_duotone/mailbox.svg index e9bd932f..aca8f280 100644 --- a/assets/icons/bold_duotone/mailbox.svg +++ b/assets/icons/bold_duotone/mailbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-arrow-down.svg b/assets/icons/bold_duotone/map-arrow-down.svg index 7dc7b6cc..98a4a8d1 100644 --- a/assets/icons/bold_duotone/map-arrow-down.svg +++ b/assets/icons/bold_duotone/map-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-arrow-left.svg b/assets/icons/bold_duotone/map-arrow-left.svg index 13863139..74fe4433 100644 --- a/assets/icons/bold_duotone/map-arrow-left.svg +++ b/assets/icons/bold_duotone/map-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-arrow-right.svg b/assets/icons/bold_duotone/map-arrow-right.svg index 0475dde1..7b97d68f 100644 --- a/assets/icons/bold_duotone/map-arrow-right.svg +++ b/assets/icons/bold_duotone/map-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-arrow-square.svg b/assets/icons/bold_duotone/map-arrow-square.svg index ce896873..67406dad 100644 --- a/assets/icons/bold_duotone/map-arrow-square.svg +++ b/assets/icons/bold_duotone/map-arrow-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-arrow-up.svg b/assets/icons/bold_duotone/map-arrow-up.svg index f8323ab9..97b3fef0 100644 --- a/assets/icons/bold_duotone/map-arrow-up.svg +++ b/assets/icons/bold_duotone/map-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-add.svg b/assets/icons/bold_duotone/map-point-add.svg index 316bda71..2ecb3a56 100644 --- a/assets/icons/bold_duotone/map-point-add.svg +++ b/assets/icons/bold_duotone/map-point-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-favorite.svg b/assets/icons/bold_duotone/map-point-favorite.svg new file mode 100644 index 00000000..72d7bb23 --- /dev/null +++ b/assets/icons/bold_duotone/map-point-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-favourite.svg b/assets/icons/bold_duotone/map-point-favourite.svg deleted file mode 100644 index 3d233e79..00000000 --- a/assets/icons/bold_duotone/map-point-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-remove.svg b/assets/icons/bold_duotone/map-point-remove.svg index 9777a320..f41cdc15 100644 --- a/assets/icons/bold_duotone/map-point-remove.svg +++ b/assets/icons/bold_duotone/map-point-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-school.svg b/assets/icons/bold_duotone/map-point-school.svg index 48dc1cb6..50f08679 100644 --- a/assets/icons/bold_duotone/map-point-school.svg +++ b/assets/icons/bold_duotone/map-point-school.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-search.svg b/assets/icons/bold_duotone/map-point-search.svg index 6a22e038..36716df2 100644 --- a/assets/icons/bold_duotone/map-point-search.svg +++ b/assets/icons/bold_duotone/map-point-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point-wave.svg b/assets/icons/bold_duotone/map-point-wave.svg index 7f4d48b9..8d036aa2 100644 --- a/assets/icons/bold_duotone/map-point-wave.svg +++ b/assets/icons/bold_duotone/map-point-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map-point.svg b/assets/icons/bold_duotone/map-point.svg index ba664d95..efe185bc 100644 --- a/assets/icons/bold_duotone/map-point.svg +++ b/assets/icons/bold_duotone/map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/map.svg b/assets/icons/bold_duotone/map.svg index 577eae2e..4b342c9c 100644 --- a/assets/icons/bold_duotone/map.svg +++ b/assets/icons/bold_duotone/map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mask-happly.svg b/assets/icons/bold_duotone/mask-happly.svg deleted file mode 100644 index d7a215ef..00000000 --- a/assets/icons/bold_duotone/mask-happly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/mask-happy.svg b/assets/icons/bold_duotone/mask-happy.svg new file mode 100644 index 00000000..3854aeb4 --- /dev/null +++ b/assets/icons/bold_duotone/mask-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mask-sad.svg b/assets/icons/bold_duotone/mask-sad.svg index ed634566..20e22396 100644 --- a/assets/icons/bold_duotone/mask-sad.svg +++ b/assets/icons/bold_duotone/mask-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/masks.svg b/assets/icons/bold_duotone/masks.svg index 8858095e..979d0c1f 100644 --- a/assets/icons/bold_duotone/masks.svg +++ b/assets/icons/bold_duotone/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/maximize-square-2.svg b/assets/icons/bold_duotone/maximize-square-2.svg index 823048db..2224de18 100644 --- a/assets/icons/bold_duotone/maximize-square-2.svg +++ b/assets/icons/bold_duotone/maximize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/maximize-square-3.svg b/assets/icons/bold_duotone/maximize-square-3.svg index cd100d77..65a23272 100644 --- a/assets/icons/bold_duotone/maximize-square-3.svg +++ b/assets/icons/bold_duotone/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/maximize-square-minimalistic.svg b/assets/icons/bold_duotone/maximize-square-minimalistic.svg index 453416e7..08071bad 100644 --- a/assets/icons/bold_duotone/maximize-square-minimalistic.svg +++ b/assets/icons/bold_duotone/maximize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/maximize-square.svg b/assets/icons/bold_duotone/maximize-square.svg index 077cedf7..c671d718 100644 --- a/assets/icons/bold_duotone/maximize-square.svg +++ b/assets/icons/bold_duotone/maximize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/maximize.svg b/assets/icons/bold_duotone/maximize.svg index 1e9e4a8d..d90266ef 100644 --- a/assets/icons/bold_duotone/maximize.svg +++ b/assets/icons/bold_duotone/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-ribbon-star.svg b/assets/icons/bold_duotone/medal-ribbon-star.svg index afeb3c47..a63fa5c1 100644 --- a/assets/icons/bold_duotone/medal-ribbon-star.svg +++ b/assets/icons/bold_duotone/medal-ribbon-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-ribbon.svg b/assets/icons/bold_duotone/medal-ribbon.svg index d8e00589..adeda09c 100644 --- a/assets/icons/bold_duotone/medal-ribbon.svg +++ b/assets/icons/bold_duotone/medal-ribbon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-ribbons-star.svg b/assets/icons/bold_duotone/medal-ribbons-star.svg index 3b1a4f0b..db115e08 100644 --- a/assets/icons/bold_duotone/medal-ribbons-star.svg +++ b/assets/icons/bold_duotone/medal-ribbons-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-star-circle.svg b/assets/icons/bold_duotone/medal-star-circle.svg index 669e27f1..aeb00d86 100644 --- a/assets/icons/bold_duotone/medal-star-circle.svg +++ b/assets/icons/bold_duotone/medal-star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-star-square.svg b/assets/icons/bold_duotone/medal-star-square.svg index 24da5bbb..4e559a10 100644 --- a/assets/icons/bold_duotone/medal-star-square.svg +++ b/assets/icons/bold_duotone/medal-star-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medal-star.svg b/assets/icons/bold_duotone/medal-star.svg index 47b5234f..7a93cb19 100644 --- a/assets/icons/bold_duotone/medal-star.svg +++ b/assets/icons/bold_duotone/medal-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/medical-kit.svg b/assets/icons/bold_duotone/medical-kit.svg index a37e099d..41cf5beb 100644 --- a/assets/icons/bold_duotone/medical-kit.svg +++ b/assets/icons/bold_duotone/medical-kit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/meditation-round.svg b/assets/icons/bold_duotone/meditation-round.svg index c60307d0..cacef528 100644 --- a/assets/icons/bold_duotone/meditation-round.svg +++ b/assets/icons/bold_duotone/meditation-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/meditation.svg b/assets/icons/bold_duotone/meditation.svg index ee2edb03..e5e90a8e 100644 --- a/assets/icons/bold_duotone/meditation.svg +++ b/assets/icons/bold_duotone/meditation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/men.svg b/assets/icons/bold_duotone/men.svg index 16655169..a2608a88 100644 --- a/assets/icons/bold_duotone/men.svg +++ b/assets/icons/bold_duotone/men.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mention-circle.svg b/assets/icons/bold_duotone/mention-circle.svg index a410d4bc..80186ba5 100644 --- a/assets/icons/bold_duotone/mention-circle.svg +++ b/assets/icons/bold_duotone/mention-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mention-square.svg b/assets/icons/bold_duotone/mention-square.svg index 8c66a40a..97b40546 100644 --- a/assets/icons/bold_duotone/mention-square.svg +++ b/assets/icons/bold_duotone/mention-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/menu-dots-circle.svg b/assets/icons/bold_duotone/menu-dots-circle.svg index c24db51b..a4688386 100644 --- a/assets/icons/bold_duotone/menu-dots-circle.svg +++ b/assets/icons/bold_duotone/menu-dots-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/menu-dots-square.svg b/assets/icons/bold_duotone/menu-dots-square.svg index 81cd1fa7..2ef3d90e 100644 --- a/assets/icons/bold_duotone/menu-dots-square.svg +++ b/assets/icons/bold_duotone/menu-dots-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/menu-dots.svg b/assets/icons/bold_duotone/menu-dots.svg index 4f538ca6..7725a32a 100644 --- a/assets/icons/bold_duotone/menu-dots.svg +++ b/assets/icons/bold_duotone/menu-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/microphone-2.svg b/assets/icons/bold_duotone/microphone-2.svg index 8d114d40..ad759954 100644 --- a/assets/icons/bold_duotone/microphone-2.svg +++ b/assets/icons/bold_duotone/microphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/microphone-3.svg b/assets/icons/bold_duotone/microphone-3.svg index b230da4f..32da3808 100644 --- a/assets/icons/bold_duotone/microphone-3.svg +++ b/assets/icons/bold_duotone/microphone-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/microphone-large.svg b/assets/icons/bold_duotone/microphone-large.svg index 55cc6eaa..9f62a49f 100644 --- a/assets/icons/bold_duotone/microphone-large.svg +++ b/assets/icons/bold_duotone/microphone-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/microphone.svg b/assets/icons/bold_duotone/microphone.svg index fffcb0da..ec879990 100644 --- a/assets/icons/bold_duotone/microphone.svg +++ b/assets/icons/bold_duotone/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifer-bug.svg b/assets/icons/bold_duotone/minimalistic-magnifer-bug.svg deleted file mode 100644 index 136edf7d..00000000 --- a/assets/icons/bold_duotone/minimalistic-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifer-zoom-in.svg b/assets/icons/bold_duotone/minimalistic-magnifer-zoom-in.svg deleted file mode 100644 index 41c01bf6..00000000 --- a/assets/icons/bold_duotone/minimalistic-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifer-zoom-out.svg b/assets/icons/bold_duotone/minimalistic-magnifer-zoom-out.svg deleted file mode 100644 index 8b68e747..00000000 --- a/assets/icons/bold_duotone/minimalistic-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifer.svg b/assets/icons/bold_duotone/minimalistic-magnifer.svg deleted file mode 100644 index c014d5e6..00000000 --- a/assets/icons/bold_duotone/minimalistic-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifier-bug.svg b/assets/icons/bold_duotone/minimalistic-magnifier-bug.svg new file mode 100644 index 00000000..4df4adf2 --- /dev/null +++ b/assets/icons/bold_duotone/minimalistic-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifier-zoom-in.svg b/assets/icons/bold_duotone/minimalistic-magnifier-zoom-in.svg new file mode 100644 index 00000000..9bb4d738 --- /dev/null +++ b/assets/icons/bold_duotone/minimalistic-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifier-zoom-out.svg b/assets/icons/bold_duotone/minimalistic-magnifier-zoom-out.svg new file mode 100644 index 00000000..44dc698b --- /dev/null +++ b/assets/icons/bold_duotone/minimalistic-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimalistic-magnifier.svg b/assets/icons/bold_duotone/minimalistic-magnifier.svg new file mode 100644 index 00000000..b5e47299 --- /dev/null +++ b/assets/icons/bold_duotone/minimalistic-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimize-square-2.svg b/assets/icons/bold_duotone/minimize-square-2.svg index 51baf8f0..46a17638 100644 --- a/assets/icons/bold_duotone/minimize-square-2.svg +++ b/assets/icons/bold_duotone/minimize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimize-square-3.svg b/assets/icons/bold_duotone/minimize-square-3.svg index 27b7e6d1..323f62d9 100644 --- a/assets/icons/bold_duotone/minimize-square-3.svg +++ b/assets/icons/bold_duotone/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimize-square-minimalistic.svg b/assets/icons/bold_duotone/minimize-square-minimalistic.svg index b5a6ff52..eefd4043 100644 --- a/assets/icons/bold_duotone/minimize-square-minimalistic.svg +++ b/assets/icons/bold_duotone/minimize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimize-square.svg b/assets/icons/bold_duotone/minimize-square.svg index 25ca3a88..90b2eb39 100644 --- a/assets/icons/bold_duotone/minimize-square.svg +++ b/assets/icons/bold_duotone/minimize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minimize.svg b/assets/icons/bold_duotone/minimize.svg index f59b1876..0063a99c 100644 --- a/assets/icons/bold_duotone/minimize.svg +++ b/assets/icons/bold_duotone/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minus-circle.svg b/assets/icons/bold_duotone/minus-circle.svg index ea1634bb..d61ad84d 100644 --- a/assets/icons/bold_duotone/minus-circle.svg +++ b/assets/icons/bold_duotone/minus-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/minus-square.svg b/assets/icons/bold_duotone/minus-square.svg index 17a4d3dc..7aefaabc 100644 --- a/assets/icons/bold_duotone/minus-square.svg +++ b/assets/icons/bold_duotone/minus-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mirror-2.svg b/assets/icons/bold_duotone/mirror-2.svg new file mode 100644 index 00000000..be0c23a2 --- /dev/null +++ b/assets/icons/bold_duotone/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mirror-left.svg b/assets/icons/bold_duotone/mirror-left.svg index accd1d27..e116a720 100644 --- a/assets/icons/bold_duotone/mirror-left.svg +++ b/assets/icons/bold_duotone/mirror-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mirror-right.svg b/assets/icons/bold_duotone/mirror-right.svg index 388a04c8..baa2e7aa 100644 --- a/assets/icons/bold_duotone/mirror-right.svg +++ b/assets/icons/bold_duotone/mirror-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mirror.svg b/assets/icons/bold_duotone/mirror.svg index 97b15c20..0ee9d011 100644 --- a/assets/icons/bold_duotone/mirror.svg +++ b/assets/icons/bold_duotone/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/money-bag.svg b/assets/icons/bold_duotone/money-bag.svg index f0976b58..144234e7 100644 --- a/assets/icons/bold_duotone/money-bag.svg +++ b/assets/icons/bold_duotone/money-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/money-roll.svg b/assets/icons/bold_duotone/money-roll.svg new file mode 100644 index 00000000..1035348d --- /dev/null +++ b/assets/icons/bold_duotone/money-roll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/monitor-camera.svg b/assets/icons/bold_duotone/monitor-camera.svg index 17c344da..57b42413 100644 --- a/assets/icons/bold_duotone/monitor-camera.svg +++ b/assets/icons/bold_duotone/monitor-camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/monitor-smartphone.svg b/assets/icons/bold_duotone/monitor-smartphone.svg index 553b8129..7b291eb7 100644 --- a/assets/icons/bold_duotone/monitor-smartphone.svg +++ b/assets/icons/bold_duotone/monitor-smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/monitor.svg b/assets/icons/bold_duotone/monitor.svg index 3ac89697..3e58992a 100644 --- a/assets/icons/bold_duotone/monitor.svg +++ b/assets/icons/bold_duotone/monitor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/moon-fog.svg b/assets/icons/bold_duotone/moon-fog.svg index 76b336ce..9e00e5a2 100644 --- a/assets/icons/bold_duotone/moon-fog.svg +++ b/assets/icons/bold_duotone/moon-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/moon-sleep.svg b/assets/icons/bold_duotone/moon-sleep.svg index e0a87c7c..684c3552 100644 --- a/assets/icons/bold_duotone/moon-sleep.svg +++ b/assets/icons/bold_duotone/moon-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/moon-stars.svg b/assets/icons/bold_duotone/moon-stars.svg index 7682238e..2c09f64f 100644 --- a/assets/icons/bold_duotone/moon-stars.svg +++ b/assets/icons/bold_duotone/moon-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/moon.svg b/assets/icons/bold_duotone/moon.svg index 21b20529..8c1ba31b 100644 --- a/assets/icons/bold_duotone/moon.svg +++ b/assets/icons/bold_duotone/moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mouse-circle.svg b/assets/icons/bold_duotone/mouse-circle.svg index 26566523..11205eb6 100644 --- a/assets/icons/bold_duotone/mouse-circle.svg +++ b/assets/icons/bold_duotone/mouse-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mouse-minimalistic.svg b/assets/icons/bold_duotone/mouse-minimalistic.svg index 2ce8d545..525792b7 100644 --- a/assets/icons/bold_duotone/mouse-minimalistic.svg +++ b/assets/icons/bold_duotone/mouse-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mouse.svg b/assets/icons/bold_duotone/mouse.svg index b24417be..15601d26 100644 --- a/assets/icons/bold_duotone/mouse.svg +++ b/assets/icons/bold_duotone/mouse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/move-to-folder.svg b/assets/icons/bold_duotone/move-to-folder.svg index 098638ef..c2054d99 100644 --- a/assets/icons/bold_duotone/move-to-folder.svg +++ b/assets/icons/bold_duotone/move-to-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/mug.svg b/assets/icons/bold_duotone/mug.svg new file mode 100644 index 00000000..0e9df846 --- /dev/null +++ b/assets/icons/bold_duotone/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/multiple-forward-left.svg b/assets/icons/bold_duotone/multiple-forward-left.svg index 0846e1ec..9d85c8ba 100644 --- a/assets/icons/bold_duotone/multiple-forward-left.svg +++ b/assets/icons/bold_duotone/multiple-forward-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/multiple-forward-right.svg b/assets/icons/bold_duotone/multiple-forward-right.svg index 4a441a58..f437bc56 100644 --- a/assets/icons/bold_duotone/multiple-forward-right.svg +++ b/assets/icons/bold_duotone/multiple-forward-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-library-2.svg b/assets/icons/bold_duotone/music-library-2.svg index fc440f56..496b7426 100644 --- a/assets/icons/bold_duotone/music-library-2.svg +++ b/assets/icons/bold_duotone/music-library-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-library.svg b/assets/icons/bold_duotone/music-library.svg index b86f938d..61363b26 100644 --- a/assets/icons/bold_duotone/music-library.svg +++ b/assets/icons/bold_duotone/music-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-note-2.svg b/assets/icons/bold_duotone/music-note-2.svg index 1954ed4c..0eb6d0e9 100644 --- a/assets/icons/bold_duotone/music-note-2.svg +++ b/assets/icons/bold_duotone/music-note-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-note-slider-2.svg b/assets/icons/bold_duotone/music-note-slider-2.svg index a7dd2135..8bd66d5d 100644 --- a/assets/icons/bold_duotone/music-note-slider-2.svg +++ b/assets/icons/bold_duotone/music-note-slider-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-note-slider.svg b/assets/icons/bold_duotone/music-note-slider.svg index 0c0ec6a9..ad894c1e 100644 --- a/assets/icons/bold_duotone/music-note-slider.svg +++ b/assets/icons/bold_duotone/music-note-slider.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-note.svg b/assets/icons/bold_duotone/music-note.svg index 410a8af0..e3162569 100644 --- a/assets/icons/bold_duotone/music-note.svg +++ b/assets/icons/bold_duotone/music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/music-notes.svg b/assets/icons/bold_duotone/music-notes.svg index 038e9998..3497b5d4 100644 --- a/assets/icons/bold_duotone/music-notes.svg +++ b/assets/icons/bold_duotone/music-notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/muted.svg b/assets/icons/bold_duotone/muted.svg index e939a5d4..857f384d 100644 --- a/assets/icons/bold_duotone/muted.svg +++ b/assets/icons/bold_duotone/muted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notebook-2.svg b/assets/icons/bold_duotone/notebook-2.svg new file mode 100644 index 00000000..553e99c7 --- /dev/null +++ b/assets/icons/bold_duotone/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notebook-bookmark.svg b/assets/icons/bold_duotone/notebook-bookmark.svg index d1e69b14..eb262d43 100644 --- a/assets/icons/bold_duotone/notebook-bookmark.svg +++ b/assets/icons/bold_duotone/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notebook-minimalistic.svg b/assets/icons/bold_duotone/notebook-minimalistic.svg index 6bcfa4a8..5dc5cc1d 100644 --- a/assets/icons/bold_duotone/notebook-minimalistic.svg +++ b/assets/icons/bold_duotone/notebook-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notebook-square.svg b/assets/icons/bold_duotone/notebook-square.svg index 7abcf7ca..f5d7467d 100644 --- a/assets/icons/bold_duotone/notebook-square.svg +++ b/assets/icons/bold_duotone/notebook-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notebook.svg b/assets/icons/bold_duotone/notebook.svg index 34b5c80f..ed705c31 100644 --- a/assets/icons/bold_duotone/notebook.svg +++ b/assets/icons/bold_duotone/notebook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notes-minimalistic.svg b/assets/icons/bold_duotone/notes-minimalistic.svg index 2d06ba0a..f4a0b29c 100644 --- a/assets/icons/bold_duotone/notes-minimalistic.svg +++ b/assets/icons/bold_duotone/notes-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notes.svg b/assets/icons/bold_duotone/notes.svg index 13ed9998..716d3ed7 100644 --- a/assets/icons/bold_duotone/notes.svg +++ b/assets/icons/bold_duotone/notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notification-lines-remove.svg b/assets/icons/bold_duotone/notification-lines-remove.svg index 434fd46e..46e9a6f7 100644 --- a/assets/icons/bold_duotone/notification-lines-remove.svg +++ b/assets/icons/bold_duotone/notification-lines-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notification-remove.svg b/assets/icons/bold_duotone/notification-remove.svg index dad0dfcb..09f0718b 100644 --- a/assets/icons/bold_duotone/notification-remove.svg +++ b/assets/icons/bold_duotone/notification-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notification-unread-lines.svg b/assets/icons/bold_duotone/notification-unread-lines.svg index c1005d9b..cd6c5201 100644 --- a/assets/icons/bold_duotone/notification-unread-lines.svg +++ b/assets/icons/bold_duotone/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/notification-unread.svg b/assets/icons/bold_duotone/notification-unread.svg index 39699eb6..2306274c 100644 --- a/assets/icons/bold_duotone/notification-unread.svg +++ b/assets/icons/bold_duotone/notification-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/object-scan.svg b/assets/icons/bold_duotone/object-scan.svg index 5973cfd2..e83b7ce5 100644 --- a/assets/icons/bold_duotone/object-scan.svg +++ b/assets/icons/bold_duotone/object-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/outgoing-call-rounded.svg b/assets/icons/bold_duotone/outgoing-call-rounded.svg index 86cdf990..fd5989b9 100644 --- a/assets/icons/bold_duotone/outgoing-call-rounded.svg +++ b/assets/icons/bold_duotone/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/outgoing-call.svg b/assets/icons/bold_duotone/outgoing-call.svg index 457c3c60..1e300d14 100644 --- a/assets/icons/bold_duotone/outgoing-call.svg +++ b/assets/icons/bold_duotone/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/oven-mitts-minimalistic.svg b/assets/icons/bold_duotone/oven-mitts-minimalistic.svg index 9063a72c..01f3a492 100644 --- a/assets/icons/bold_duotone/oven-mitts-minimalistic.svg +++ b/assets/icons/bold_duotone/oven-mitts-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/oven-mitts.svg b/assets/icons/bold_duotone/oven-mitts.svg index 12f2bab4..3854e8e8 100644 --- a/assets/icons/bold_duotone/oven-mitts.svg +++ b/assets/icons/bold_duotone/oven-mitts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paint-roller.svg b/assets/icons/bold_duotone/paint-roller.svg index 9c74321d..61884cad 100644 --- a/assets/icons/bold_duotone/paint-roller.svg +++ b/assets/icons/bold_duotone/paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/palette-2.svg b/assets/icons/bold_duotone/palette-2.svg new file mode 100644 index 00000000..d08430c2 --- /dev/null +++ b/assets/icons/bold_duotone/palette-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/palette-round.svg b/assets/icons/bold_duotone/palette-round.svg index 304c12a0..9efa8b2c 100644 --- a/assets/icons/bold_duotone/palette-round.svg +++ b/assets/icons/bold_duotone/palette-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/palette.svg b/assets/icons/bold_duotone/palette.svg index bcb49781..c943be2b 100644 --- a/assets/icons/bold_duotone/palette.svg +++ b/assets/icons/bold_duotone/palette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pallete-2.svg b/assets/icons/bold_duotone/pallete-2.svg deleted file mode 100644 index 99402d11..00000000 --- a/assets/icons/bold_duotone/pallete-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/panorama.svg b/assets/icons/bold_duotone/panorama.svg index c7e96ed8..ee94fbba 100644 --- a/assets/icons/bold_duotone/panorama.svg +++ b/assets/icons/bold_duotone/panorama.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paper-bin.svg b/assets/icons/bold_duotone/paper-bin.svg index 0315ba10..c35b79f0 100644 --- a/assets/icons/bold_duotone/paper-bin.svg +++ b/assets/icons/bold_duotone/paper-bin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paperclip-2.svg b/assets/icons/bold_duotone/paperclip-2.svg index 86dd3a66..df0bc60c 100644 --- a/assets/icons/bold_duotone/paperclip-2.svg +++ b/assets/icons/bold_duotone/paperclip-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paperclip-rounded-2.svg b/assets/icons/bold_duotone/paperclip-rounded-2.svg index d9e449e3..59e2907c 100644 --- a/assets/icons/bold_duotone/paperclip-rounded-2.svg +++ b/assets/icons/bold_duotone/paperclip-rounded-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paperclip-rounded.svg b/assets/icons/bold_duotone/paperclip-rounded.svg index 8a01f900..9e01f7b8 100644 --- a/assets/icons/bold_duotone/paperclip-rounded.svg +++ b/assets/icons/bold_duotone/paperclip-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paperclip.svg b/assets/icons/bold_duotone/paperclip.svg index e33b4cab..4fe60543 100644 --- a/assets/icons/bold_duotone/paperclip.svg +++ b/assets/icons/bold_duotone/paperclip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paragraph-spacing.svg b/assets/icons/bold_duotone/paragraph-spacing.svg index ff899587..382aebdd 100644 --- a/assets/icons/bold_duotone/paragraph-spacing.svg +++ b/assets/icons/bold_duotone/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/passport-minimalistic.svg b/assets/icons/bold_duotone/passport-minimalistic.svg index d1efb899..73989fe5 100644 --- a/assets/icons/bold_duotone/passport-minimalistic.svg +++ b/assets/icons/bold_duotone/passport-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/passport.svg b/assets/icons/bold_duotone/passport.svg index fd96f29a..fe7d0f9f 100644 --- a/assets/icons/bold_duotone/passport.svg +++ b/assets/icons/bold_duotone/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/password-minimalistic-input.svg b/assets/icons/bold_duotone/password-minimalistic-input.svg index f105a28a..823c14fc 100644 --- a/assets/icons/bold_duotone/password-minimalistic-input.svg +++ b/assets/icons/bold_duotone/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/password-minimalistic.svg b/assets/icons/bold_duotone/password-minimalistic.svg index 9332ad79..bbde2d58 100644 --- a/assets/icons/bold_duotone/password-minimalistic.svg +++ b/assets/icons/bold_duotone/password-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/password.svg b/assets/icons/bold_duotone/password.svg index 8037bf77..e47605da 100644 --- a/assets/icons/bold_duotone/password.svg +++ b/assets/icons/bold_duotone/password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pause-circle.svg b/assets/icons/bold_duotone/pause-circle.svg index 80e06007..6140acb3 100644 --- a/assets/icons/bold_duotone/pause-circle.svg +++ b/assets/icons/bold_duotone/pause-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pause.svg b/assets/icons/bold_duotone/pause.svg index d2551133..d376ebcf 100644 --- a/assets/icons/bold_duotone/pause.svg +++ b/assets/icons/bold_duotone/pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/paw.svg b/assets/icons/bold_duotone/paw.svg index 2879e229..eac5c630 100644 --- a/assets/icons/bold_duotone/paw.svg +++ b/assets/icons/bold_duotone/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pen-2.svg b/assets/icons/bold_duotone/pen-2.svg index f2e1cbfe..607ebf33 100644 --- a/assets/icons/bold_duotone/pen-2.svg +++ b/assets/icons/bold_duotone/pen-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pen-new-round.svg b/assets/icons/bold_duotone/pen-new-round.svg index 7a743048..9f1d1b1d 100644 --- a/assets/icons/bold_duotone/pen-new-round.svg +++ b/assets/icons/bold_duotone/pen-new-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pen-new-square.svg b/assets/icons/bold_duotone/pen-new-square.svg index b32f9891..8bc50fd5 100644 --- a/assets/icons/bold_duotone/pen-new-square.svg +++ b/assets/icons/bold_duotone/pen-new-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pen.svg b/assets/icons/bold_duotone/pen.svg index a348fb97..a47ccdbb 100644 --- a/assets/icons/bold_duotone/pen.svg +++ b/assets/icons/bold_duotone/pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/people-nearby.svg b/assets/icons/bold_duotone/people-nearby.svg index 5c2c65bc..3cfc3e7a 100644 --- a/assets/icons/bold_duotone/people-nearby.svg +++ b/assets/icons/bold_duotone/people-nearby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/perfume.svg b/assets/icons/bold_duotone/perfume.svg index a8b68ba2..8006d3d3 100644 --- a/assets/icons/bold_duotone/perfume.svg +++ b/assets/icons/bold_duotone/perfume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/phone-calling-rounded.svg b/assets/icons/bold_duotone/phone-calling-rounded.svg index 1bc8108a..6cb92e8b 100644 --- a/assets/icons/bold_duotone/phone-calling-rounded.svg +++ b/assets/icons/bold_duotone/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/phone-calling.svg b/assets/icons/bold_duotone/phone-calling.svg index 1791ca62..19da725c 100644 --- a/assets/icons/bold_duotone/phone-calling.svg +++ b/assets/icons/bold_duotone/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/phone-rounded.svg b/assets/icons/bold_duotone/phone-rounded.svg index 1a08c608..34a9948a 100644 --- a/assets/icons/bold_duotone/phone-rounded.svg +++ b/assets/icons/bold_duotone/phone-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/phone.svg b/assets/icons/bold_duotone/phone.svg index e33bc3fe..503f2f61 100644 --- a/assets/icons/bold_duotone/phone.svg +++ b/assets/icons/bold_duotone/phone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pie-chart-2.svg b/assets/icons/bold_duotone/pie-chart-2.svg index 726d94a4..f7616771 100644 --- a/assets/icons/bold_duotone/pie-chart-2.svg +++ b/assets/icons/bold_duotone/pie-chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pie-chart-3.svg b/assets/icons/bold_duotone/pie-chart-3.svg index ab16fa90..d8b1b2c4 100644 --- a/assets/icons/bold_duotone/pie-chart-3.svg +++ b/assets/icons/bold_duotone/pie-chart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pie-chart.svg b/assets/icons/bold_duotone/pie-chart.svg index 98a55e39..59c84577 100644 --- a/assets/icons/bold_duotone/pie-chart.svg +++ b/assets/icons/bold_duotone/pie-chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pill.svg b/assets/icons/bold_duotone/pill.svg index 7ca58cf5..237e67a3 100644 --- a/assets/icons/bold_duotone/pill.svg +++ b/assets/icons/bold_duotone/pill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pills-2.svg b/assets/icons/bold_duotone/pills-2.svg index f1a8a0e2..c78fa92e 100644 --- a/assets/icons/bold_duotone/pills-2.svg +++ b/assets/icons/bold_duotone/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pills-3.svg b/assets/icons/bold_duotone/pills-3.svg index aad5228e..21651275 100644 --- a/assets/icons/bold_duotone/pills-3.svg +++ b/assets/icons/bold_duotone/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pills.svg b/assets/icons/bold_duotone/pills.svg index 570b6669..28c240c8 100644 --- a/assets/icons/bold_duotone/pills.svg +++ b/assets/icons/bold_duotone/pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pin-circle.svg b/assets/icons/bold_duotone/pin-circle.svg index 98c8c7f8..cd9e927c 100644 --- a/assets/icons/bold_duotone/pin-circle.svg +++ b/assets/icons/bold_duotone/pin-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pin-list.svg b/assets/icons/bold_duotone/pin-list.svg index 186aaa3f..f97bf328 100644 --- a/assets/icons/bold_duotone/pin-list.svg +++ b/assets/icons/bold_duotone/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pin.svg b/assets/icons/bold_duotone/pin.svg index 8ca48417..502504fa 100644 --- a/assets/icons/bold_duotone/pin.svg +++ b/assets/icons/bold_duotone/pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pip-2.svg b/assets/icons/bold_duotone/pip-2.svg index 07c0886d..840361d3 100644 --- a/assets/icons/bold_duotone/pip-2.svg +++ b/assets/icons/bold_duotone/pip-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pip.svg b/assets/icons/bold_duotone/pip.svg index ffe466e9..e4a5ca00 100644 --- a/assets/icons/bold_duotone/pip.svg +++ b/assets/icons/bold_duotone/pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pipette.svg b/assets/icons/bold_duotone/pipette.svg index f6713618..ecc40565 100644 --- a/assets/icons/bold_duotone/pipette.svg +++ b/assets/icons/bold_duotone/pipette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plaaylist-minimalistic.svg b/assets/icons/bold_duotone/plaaylist-minimalistic.svg deleted file mode 100644 index 70d4cde6..00000000 --- a/assets/icons/bold_duotone/plaaylist-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/plain-2.svg b/assets/icons/bold_duotone/plain-2.svg deleted file mode 100644 index bf18234f..00000000 --- a/assets/icons/bold_duotone/plain-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/plain-3.svg b/assets/icons/bold_duotone/plain-3.svg deleted file mode 100644 index e0bd0aba..00000000 --- a/assets/icons/bold_duotone/plain-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/plain.svg b/assets/icons/bold_duotone/plain.svg deleted file mode 100644 index 663293aa..00000000 --- a/assets/icons/bold_duotone/plain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/plane-2.svg b/assets/icons/bold_duotone/plane-2.svg new file mode 100644 index 00000000..d0b36a23 --- /dev/null +++ b/assets/icons/bold_duotone/plane-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plane-3.svg b/assets/icons/bold_duotone/plane-3.svg new file mode 100644 index 00000000..1d2922ee --- /dev/null +++ b/assets/icons/bold_duotone/plane-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plane.svg b/assets/icons/bold_duotone/plane.svg new file mode 100644 index 00000000..f5623183 --- /dev/null +++ b/assets/icons/bold_duotone/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/planet-2.svg b/assets/icons/bold_duotone/planet-2.svg index 81b90270..eca31f6f 100644 --- a/assets/icons/bold_duotone/planet-2.svg +++ b/assets/icons/bold_duotone/planet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/planet-3.svg b/assets/icons/bold_duotone/planet-3.svg index f8b9d3ca..0a2aed77 100644 --- a/assets/icons/bold_duotone/planet-3.svg +++ b/assets/icons/bold_duotone/planet-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/planet-4.svg b/assets/icons/bold_duotone/planet-4.svg index bec68d20..b87be069 100644 --- a/assets/icons/bold_duotone/planet-4.svg +++ b/assets/icons/bold_duotone/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/planet.svg b/assets/icons/bold_duotone/planet.svg index 9e73cf13..aee9b078 100644 --- a/assets/icons/bold_duotone/planet.svg +++ b/assets/icons/bold_duotone/planet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plate.svg b/assets/icons/bold_duotone/plate.svg index da4e4f40..b8069b36 100644 --- a/assets/icons/bold_duotone/plate.svg +++ b/assets/icons/bold_duotone/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/play-circle.svg b/assets/icons/bold_duotone/play-circle.svg index becb6362..c83df4fa 100644 --- a/assets/icons/bold_duotone/play-circle.svg +++ b/assets/icons/bold_duotone/play-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/play-stream.svg b/assets/icons/bold_duotone/play-stream.svg index a004ae6f..7ae79cd6 100644 --- a/assets/icons/bold_duotone/play-stream.svg +++ b/assets/icons/bold_duotone/play-stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/play.svg b/assets/icons/bold_duotone/play.svg index 9811c13d..f52d4b05 100644 --- a/assets/icons/bold_duotone/play.svg +++ b/assets/icons/bold_duotone/play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playback-speed.svg b/assets/icons/bold_duotone/playback-speed.svg index 5ced6059..e5428054 100644 --- a/assets/icons/bold_duotone/playback-speed.svg +++ b/assets/icons/bold_duotone/playback-speed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playlist-2.svg b/assets/icons/bold_duotone/playlist-2.svg index 7b3fb758..2b85f019 100644 --- a/assets/icons/bold_duotone/playlist-2.svg +++ b/assets/icons/bold_duotone/playlist-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playlist-minimalistic-2.svg b/assets/icons/bold_duotone/playlist-minimalistic-2.svg index e685e3b3..7502416a 100644 --- a/assets/icons/bold_duotone/playlist-minimalistic-2.svg +++ b/assets/icons/bold_duotone/playlist-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playlist-minimalistic-3.svg b/assets/icons/bold_duotone/playlist-minimalistic-3.svg index d397d3c4..f7946ff0 100644 --- a/assets/icons/bold_duotone/playlist-minimalistic-3.svg +++ b/assets/icons/bold_duotone/playlist-minimalistic-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playlist-minimalistic.svg b/assets/icons/bold_duotone/playlist-minimalistic.svg new file mode 100644 index 00000000..45a4ab7a --- /dev/null +++ b/assets/icons/bold_duotone/playlist-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/playlist.svg b/assets/icons/bold_duotone/playlist.svg index 383a71a9..41cd86ce 100644 --- a/assets/icons/bold_duotone/playlist.svg +++ b/assets/icons/bold_duotone/playlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plug-circle.svg b/assets/icons/bold_duotone/plug-circle.svg index 3982fbc1..104a9a93 100644 --- a/assets/icons/bold_duotone/plug-circle.svg +++ b/assets/icons/bold_duotone/plug-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/plus-minus.svg b/assets/icons/bold_duotone/plus-minus.svg index 8a76b233..d59ad111 100644 --- a/assets/icons/bold_duotone/plus-minus.svg +++ b/assets/icons/bold_duotone/plus-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/podcast.svg b/assets/icons/bold_duotone/podcast.svg index 12a0e3d5..d3464bd9 100644 --- a/assets/icons/bold_duotone/podcast.svg +++ b/assets/icons/bold_duotone/podcast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/point-on-map-perspective.svg b/assets/icons/bold_duotone/point-on-map-perspective.svg index 7af81f7c..36ffe88d 100644 --- a/assets/icons/bold_duotone/point-on-map-perspective.svg +++ b/assets/icons/bold_duotone/point-on-map-perspective.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/point-on-map.svg b/assets/icons/bold_duotone/point-on-map.svg index 1b852e35..47e68ca0 100644 --- a/assets/icons/bold_duotone/point-on-map.svg +++ b/assets/icons/bold_duotone/point-on-map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/posts-carousel-horizontal.svg b/assets/icons/bold_duotone/posts-carousel-horizontal.svg index e96c5ecb..63cabfcb 100644 --- a/assets/icons/bold_duotone/posts-carousel-horizontal.svg +++ b/assets/icons/bold_duotone/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/posts-carousel-vertical.svg b/assets/icons/bold_duotone/posts-carousel-vertical.svg index 93a63353..e11bca3a 100644 --- a/assets/icons/bold_duotone/posts-carousel-vertical.svg +++ b/assets/icons/bold_duotone/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/power.svg b/assets/icons/bold_duotone/power.svg index 2a02420c..8eaef044 100644 --- a/assets/icons/bold_duotone/power.svg +++ b/assets/icons/bold_duotone/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/presentation-graph.svg b/assets/icons/bold_duotone/presentation-graph.svg index c599587e..651f4646 100644 --- a/assets/icons/bold_duotone/presentation-graph.svg +++ b/assets/icons/bold_duotone/presentation-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/printer-2.svg b/assets/icons/bold_duotone/printer-2.svg index 2c49308a..234e3b2b 100644 --- a/assets/icons/bold_duotone/printer-2.svg +++ b/assets/icons/bold_duotone/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/printer-minimalistic.svg b/assets/icons/bold_duotone/printer-minimalistic.svg index eecb96f3..51b4b3f8 100644 --- a/assets/icons/bold_duotone/printer-minimalistic.svg +++ b/assets/icons/bold_duotone/printer-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/printer.svg b/assets/icons/bold_duotone/printer.svg index c0b4fab4..23e505ba 100644 --- a/assets/icons/bold_duotone/printer.svg +++ b/assets/icons/bold_duotone/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/programming.svg b/assets/icons/bold_duotone/programming.svg index 545bfbbb..e8bc5af8 100644 --- a/assets/icons/bold_duotone/programming.svg +++ b/assets/icons/bold_duotone/programming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/projector.svg b/assets/icons/bold_duotone/projector.svg index a31baaf6..6fbd8dc7 100644 --- a/assets/icons/bold_duotone/projector.svg +++ b/assets/icons/bold_duotone/projector.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pulse-2.svg b/assets/icons/bold_duotone/pulse-2.svg index 6461aee2..3e11d56b 100644 --- a/assets/icons/bold_duotone/pulse-2.svg +++ b/assets/icons/bold_duotone/pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/pulse.svg b/assets/icons/bold_duotone/pulse.svg index 7267cd4c..fd935a61 100644 --- a/assets/icons/bold_duotone/pulse.svg +++ b/assets/icons/bold_duotone/pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/qr-code.svg b/assets/icons/bold_duotone/qr-code.svg index aff64955..24acbb31 100644 --- a/assets/icons/bold_duotone/qr-code.svg +++ b/assets/icons/bold_duotone/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/question-circle.svg b/assets/icons/bold_duotone/question-circle.svg index c3469d1e..68088b37 100644 --- a/assets/icons/bold_duotone/question-circle.svg +++ b/assets/icons/bold_duotone/question-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/question-square.svg b/assets/icons/bold_duotone/question-square.svg index b0bdbc46..fd93bd13 100644 --- a/assets/icons/bold_duotone/question-square.svg +++ b/assets/icons/bold_duotone/question-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/quit-full-screen-circle.svg b/assets/icons/bold_duotone/quit-full-screen-circle.svg index 7a0a6c31..571ba0e0 100644 --- a/assets/icons/bold_duotone/quit-full-screen-circle.svg +++ b/assets/icons/bold_duotone/quit-full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/quit-full-screen-square.svg b/assets/icons/bold_duotone/quit-full-screen-square.svg index 498ec134..1b94161e 100644 --- a/assets/icons/bold_duotone/quit-full-screen-square.svg +++ b/assets/icons/bold_duotone/quit-full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/quit-full-screen.svg b/assets/icons/bold_duotone/quit-full-screen.svg index cc913744..576f64e9 100644 --- a/assets/icons/bold_duotone/quit-full-screen.svg +++ b/assets/icons/bold_duotone/quit-full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/quit-pip.svg b/assets/icons/bold_duotone/quit-pip.svg index 8ca6dc99..838f8065 100644 --- a/assets/icons/bold_duotone/quit-pip.svg +++ b/assets/icons/bold_duotone/quit-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/radar-2.svg b/assets/icons/bold_duotone/radar-2.svg index 85c80700..697b5d89 100644 --- a/assets/icons/bold_duotone/radar-2.svg +++ b/assets/icons/bold_duotone/radar-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/radar.svg b/assets/icons/bold_duotone/radar.svg index 82eb73d3..4a8dc07e 100644 --- a/assets/icons/bold_duotone/radar.svg +++ b/assets/icons/bold_duotone/radar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/radial-blur.svg b/assets/icons/bold_duotone/radial-blur.svg index 462c68cf..a20f95f4 100644 --- a/assets/icons/bold_duotone/radial-blur.svg +++ b/assets/icons/bold_duotone/radial-blur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/radio-minimalistic.svg b/assets/icons/bold_duotone/radio-minimalistic.svg index b037e0d9..30cb97db 100644 --- a/assets/icons/bold_duotone/radio-minimalistic.svg +++ b/assets/icons/bold_duotone/radio-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/radio.svg b/assets/icons/bold_duotone/radio.svg index 2a86fdb5..923a89c5 100644 --- a/assets/icons/bold_duotone/radio.svg +++ b/assets/icons/bold_duotone/radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ranking.svg b/assets/icons/bold_duotone/ranking.svg index 3c48c63f..c21b50e7 100644 --- a/assets/icons/bold_duotone/ranking.svg +++ b/assets/icons/bold_duotone/ranking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/receive-square.svg b/assets/icons/bold_duotone/receive-square.svg new file mode 100644 index 00000000..73c16fcc --- /dev/null +++ b/assets/icons/bold_duotone/receive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/receive-twice-square.svg b/assets/icons/bold_duotone/receive-twice-square.svg new file mode 100644 index 00000000..36ff5c44 --- /dev/null +++ b/assets/icons/bold_duotone/receive-twice-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/recive-square.svg b/assets/icons/bold_duotone/recive-square.svg deleted file mode 100644 index c26d87a9..00000000 --- a/assets/icons/bold_duotone/recive-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/recive-twice-square.svg b/assets/icons/bold_duotone/recive-twice-square.svg deleted file mode 100644 index 312197f9..00000000 --- a/assets/icons/bold_duotone/recive-twice-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/record-audio-circle.svg b/assets/icons/bold_duotone/record-audio-circle.svg new file mode 100644 index 00000000..7fead64d --- /dev/null +++ b/assets/icons/bold_duotone/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/record-circle.svg b/assets/icons/bold_duotone/record-circle.svg index 5871206d..fffa873b 100644 --- a/assets/icons/bold_duotone/record-circle.svg +++ b/assets/icons/bold_duotone/record-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/record-minimalistic.svg b/assets/icons/bold_duotone/record-minimalistic.svg index 84f78868..1d5263d7 100644 --- a/assets/icons/bold_duotone/record-minimalistic.svg +++ b/assets/icons/bold_duotone/record-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/record-square.svg b/assets/icons/bold_duotone/record-square.svg index 2cd7e371..fb094468 100644 --- a/assets/icons/bold_duotone/record-square.svg +++ b/assets/icons/bold_duotone/record-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/record.svg b/assets/icons/bold_duotone/record.svg index 336e3033..9cde2652 100644 --- a/assets/icons/bold_duotone/record.svg +++ b/assets/icons/bold_duotone/record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reel-2.svg b/assets/icons/bold_duotone/reel-2.svg index 271ecbfc..79f72699 100644 --- a/assets/icons/bold_duotone/reel-2.svg +++ b/assets/icons/bold_duotone/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reel.svg b/assets/icons/bold_duotone/reel.svg index 3c1bafc1..b81e3e2c 100644 --- a/assets/icons/bold_duotone/reel.svg +++ b/assets/icons/bold_duotone/reel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/refresh-circle.svg b/assets/icons/bold_duotone/refresh-circle.svg index 5af164a1..6fa28fe0 100644 --- a/assets/icons/bold_duotone/refresh-circle.svg +++ b/assets/icons/bold_duotone/refresh-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/refresh-square.svg b/assets/icons/bold_duotone/refresh-square.svg index 4df7cf7c..5cd583b4 100644 --- a/assets/icons/bold_duotone/refresh-square.svg +++ b/assets/icons/bold_duotone/refresh-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/refresh.svg b/assets/icons/bold_duotone/refresh.svg index 8163d622..a057e595 100644 --- a/assets/icons/bold_duotone/refresh.svg +++ b/assets/icons/bold_duotone/refresh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/remote-controller-2.svg b/assets/icons/bold_duotone/remote-controller-2.svg index 0ee59732..2a272943 100644 --- a/assets/icons/bold_duotone/remote-controller-2.svg +++ b/assets/icons/bold_duotone/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/remote-controller-minimalistic.svg b/assets/icons/bold_duotone/remote-controller-minimalistic.svg index 0a7dda9b..e353f722 100644 --- a/assets/icons/bold_duotone/remote-controller-minimalistic.svg +++ b/assets/icons/bold_duotone/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/remote-controller.svg b/assets/icons/bold_duotone/remote-controller.svg index efab66c6..645f1f41 100644 --- a/assets/icons/bold_duotone/remote-controller.svg +++ b/assets/icons/bold_duotone/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/remove-folder.svg b/assets/icons/bold_duotone/remove-folder.svg index 3a21e971..e7666855 100644 --- a/assets/icons/bold_duotone/remove-folder.svg +++ b/assets/icons/bold_duotone/remove-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reorder-2.svg b/assets/icons/bold_duotone/reorder-2.svg new file mode 100644 index 00000000..b3269f30 --- /dev/null +++ b/assets/icons/bold_duotone/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reorder.svg b/assets/icons/bold_duotone/reorder.svg index 51373690..3eb03f84 100644 --- a/assets/icons/bold_duotone/reorder.svg +++ b/assets/icons/bold_duotone/reorder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/repeat-one-minimalistic.svg b/assets/icons/bold_duotone/repeat-one-minimalistic.svg index 2dcf4955..8a47839b 100644 --- a/assets/icons/bold_duotone/repeat-one-minimalistic.svg +++ b/assets/icons/bold_duotone/repeat-one-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/repeat-one.svg b/assets/icons/bold_duotone/repeat-one.svg index 9c69df62..a44ef3ff 100644 --- a/assets/icons/bold_duotone/repeat-one.svg +++ b/assets/icons/bold_duotone/repeat-one.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/repeat.svg b/assets/icons/bold_duotone/repeat.svg index c15f9731..02614e18 100644 --- a/assets/icons/bold_duotone/repeat.svg +++ b/assets/icons/bold_duotone/repeat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reply-2.svg b/assets/icons/bold_duotone/reply-2.svg index 816b7e2c..09b9a83d 100644 --- a/assets/icons/bold_duotone/reply-2.svg +++ b/assets/icons/bold_duotone/reply-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/reply.svg b/assets/icons/bold_duotone/reply.svg index f82607e7..9a99e813 100644 --- a/assets/icons/bold_duotone/reply.svg +++ b/assets/icons/bold_duotone/reply.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/restart-circle.svg b/assets/icons/bold_duotone/restart-circle.svg index 329a1ab2..fade8c12 100644 --- a/assets/icons/bold_duotone/restart-circle.svg +++ b/assets/icons/bold_duotone/restart-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/restart-square.svg b/assets/icons/bold_duotone/restart-square.svg index c9b13b05..a1c1a009 100644 --- a/assets/icons/bold_duotone/restart-square.svg +++ b/assets/icons/bold_duotone/restart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/restart.svg b/assets/icons/bold_duotone/restart.svg index b3fb1282..460da54d 100644 --- a/assets/icons/bold_duotone/restart.svg +++ b/assets/icons/bold_duotone/restart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/revote.svg b/assets/icons/bold_duotone/revote.svg index 328f7f9a..8efb26b5 100644 --- a/assets/icons/bold_duotone/revote.svg +++ b/assets/icons/bold_duotone/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-10-seconds-back.svg b/assets/icons/bold_duotone/rewind-10-seconds-back.svg index 707383a6..8a28d4d1 100644 --- a/assets/icons/bold_duotone/rewind-10-seconds-back.svg +++ b/assets/icons/bold_duotone/rewind-10-seconds-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-10-seconds-forward.svg b/assets/icons/bold_duotone/rewind-10-seconds-forward.svg index d8bf0236..1fcea8c1 100644 --- a/assets/icons/bold_duotone/rewind-10-seconds-forward.svg +++ b/assets/icons/bold_duotone/rewind-10-seconds-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-15-seconds-back.svg b/assets/icons/bold_duotone/rewind-15-seconds-back.svg index 3bcaff1d..3931fdc4 100644 --- a/assets/icons/bold_duotone/rewind-15-seconds-back.svg +++ b/assets/icons/bold_duotone/rewind-15-seconds-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-15-seconds-forward.svg b/assets/icons/bold_duotone/rewind-15-seconds-forward.svg index 7411b577..20aee46b 100644 --- a/assets/icons/bold_duotone/rewind-15-seconds-forward.svg +++ b/assets/icons/bold_duotone/rewind-15-seconds-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-5-seconds-back.svg b/assets/icons/bold_duotone/rewind-5-seconds-back.svg index 7365994a..9e9832b0 100644 --- a/assets/icons/bold_duotone/rewind-5-seconds-back.svg +++ b/assets/icons/bold_duotone/rewind-5-seconds-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-5-seconds-forward.svg b/assets/icons/bold_duotone/rewind-5-seconds-forward.svg index a4837cf6..4d66d408 100644 --- a/assets/icons/bold_duotone/rewind-5-seconds-forward.svg +++ b/assets/icons/bold_duotone/rewind-5-seconds-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-back-circle.svg b/assets/icons/bold_duotone/rewind-back-circle.svg index 3d309808..94b43222 100644 --- a/assets/icons/bold_duotone/rewind-back-circle.svg +++ b/assets/icons/bold_duotone/rewind-back-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-back.svg b/assets/icons/bold_duotone/rewind-back.svg index f1164ba5..c2525042 100644 --- a/assets/icons/bold_duotone/rewind-back.svg +++ b/assets/icons/bold_duotone/rewind-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-forward-circle.svg b/assets/icons/bold_duotone/rewind-forward-circle.svg index f4a913e3..5c892cda 100644 --- a/assets/icons/bold_duotone/rewind-forward-circle.svg +++ b/assets/icons/bold_duotone/rewind-forward-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rewind-forward.svg b/assets/icons/bold_duotone/rewind-forward.svg index b60922d5..a3fa2b19 100644 --- a/assets/icons/bold_duotone/rewind-forward.svg +++ b/assets/icons/bold_duotone/rewind-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rocket-2.svg b/assets/icons/bold_duotone/rocket-2.svg index add21b8d..5e2c1786 100644 --- a/assets/icons/bold_duotone/rocket-2.svg +++ b/assets/icons/bold_duotone/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rocket.svg b/assets/icons/bold_duotone/rocket.svg index fe4a68d4..11c5e964 100644 --- a/assets/icons/bold_duotone/rocket.svg +++ b/assets/icons/bold_duotone/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rolling-pin.svg b/assets/icons/bold_duotone/rolling-pin.svg index e28ba6ae..a8fc60b0 100644 --- a/assets/icons/bold_duotone/rolling-pin.svg +++ b/assets/icons/bold_duotone/rolling-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-alt-arrow-down.svg b/assets/icons/bold_duotone/round-alt-arrow-down.svg index 37aec6e4..2b6e335b 100644 --- a/assets/icons/bold_duotone/round-alt-arrow-down.svg +++ b/assets/icons/bold_duotone/round-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-alt-arrow-left.svg b/assets/icons/bold_duotone/round-alt-arrow-left.svg index e571377b..dbd8e99d 100644 --- a/assets/icons/bold_duotone/round-alt-arrow-left.svg +++ b/assets/icons/bold_duotone/round-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-alt-arrow-right.svg b/assets/icons/bold_duotone/round-alt-arrow-right.svg index 276819e8..7e31d5ee 100644 --- a/assets/icons/bold_duotone/round-alt-arrow-right.svg +++ b/assets/icons/bold_duotone/round-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-alt-arrow-up.svg b/assets/icons/bold_duotone/round-alt-arrow-up.svg index d8569fe7..5ac941d2 100644 --- a/assets/icons/bold_duotone/round-alt-arrow-up.svg +++ b/assets/icons/bold_duotone/round-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-down.svg b/assets/icons/bold_duotone/round-arrow-down.svg index 7b9d1184..56861b3a 100644 --- a/assets/icons/bold_duotone/round-arrow-down.svg +++ b/assets/icons/bold_duotone/round-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-left-down.svg b/assets/icons/bold_duotone/round-arrow-left-down.svg index 8f3cf98e..fb4fce56 100644 --- a/assets/icons/bold_duotone/round-arrow-left-down.svg +++ b/assets/icons/bold_duotone/round-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-left-up.svg b/assets/icons/bold_duotone/round-arrow-left-up.svg index d2bb65fa..a95506bd 100644 --- a/assets/icons/bold_duotone/round-arrow-left-up.svg +++ b/assets/icons/bold_duotone/round-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-left.svg b/assets/icons/bold_duotone/round-arrow-left.svg index 50faacde..09eb34d2 100644 --- a/assets/icons/bold_duotone/round-arrow-left.svg +++ b/assets/icons/bold_duotone/round-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-right-down.svg b/assets/icons/bold_duotone/round-arrow-right-down.svg index f243f492..eb1c7df6 100644 --- a/assets/icons/bold_duotone/round-arrow-right-down.svg +++ b/assets/icons/bold_duotone/round-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-right-up.svg b/assets/icons/bold_duotone/round-arrow-right-up.svg index eafb99bd..16d2f412 100644 --- a/assets/icons/bold_duotone/round-arrow-right-up.svg +++ b/assets/icons/bold_duotone/round-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-right.svg b/assets/icons/bold_duotone/round-arrow-right.svg index 9cef37e0..b5f43566 100644 --- a/assets/icons/bold_duotone/round-arrow-right.svg +++ b/assets/icons/bold_duotone/round-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-arrow-up.svg b/assets/icons/bold_duotone/round-arrow-up.svg index 49701411..263ae9e3 100644 --- a/assets/icons/bold_duotone/round-arrow-up.svg +++ b/assets/icons/bold_duotone/round-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-double-alt-arrow-down.svg b/assets/icons/bold_duotone/round-double-alt-arrow-down.svg index 0dc255fa..d1319c6d 100644 --- a/assets/icons/bold_duotone/round-double-alt-arrow-down.svg +++ b/assets/icons/bold_duotone/round-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-double-alt-arrow-left.svg b/assets/icons/bold_duotone/round-double-alt-arrow-left.svg index eefab8da..e84b67eb 100644 --- a/assets/icons/bold_duotone/round-double-alt-arrow-left.svg +++ b/assets/icons/bold_duotone/round-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-double-alt-arrow-right.svg b/assets/icons/bold_duotone/round-double-alt-arrow-right.svg index d82355e5..a8520626 100644 --- a/assets/icons/bold_duotone/round-double-alt-arrow-right.svg +++ b/assets/icons/bold_duotone/round-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-double-alt-arrow-up.svg b/assets/icons/bold_duotone/round-double-alt-arrow-up.svg index 80a724d9..90bafa0d 100644 --- a/assets/icons/bold_duotone/round-double-alt-arrow-up.svg +++ b/assets/icons/bold_duotone/round-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-graph.svg b/assets/icons/bold_duotone/round-graph.svg index 51829bd9..71aa5599 100644 --- a/assets/icons/bold_duotone/round-graph.svg +++ b/assets/icons/bold_duotone/round-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-sort-horizontal.svg b/assets/icons/bold_duotone/round-sort-horizontal.svg index c9b28419..1e1d9743 100644 --- a/assets/icons/bold_duotone/round-sort-horizontal.svg +++ b/assets/icons/bold_duotone/round-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-sort-vertical.svg b/assets/icons/bold_duotone/round-sort-vertical.svg index b97c7a81..2a272730 100644 --- a/assets/icons/bold_duotone/round-sort-vertical.svg +++ b/assets/icons/bold_duotone/round-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-transfer-diagonal.svg b/assets/icons/bold_duotone/round-transfer-diagonal.svg index 2faae97f..b17af169 100644 --- a/assets/icons/bold_duotone/round-transfer-diagonal.svg +++ b/assets/icons/bold_duotone/round-transfer-diagonal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-transfer-horizontal.svg b/assets/icons/bold_duotone/round-transfer-horizontal.svg index 91ec070b..70852688 100644 --- a/assets/icons/bold_duotone/round-transfer-horizontal.svg +++ b/assets/icons/bold_duotone/round-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/round-transfer-vertical.svg b/assets/icons/bold_duotone/round-transfer-vertical.svg index 24a45094..3866b9b8 100644 --- a/assets/icons/bold_duotone/round-transfer-vertical.svg +++ b/assets/icons/bold_duotone/round-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifer-bug.svg b/assets/icons/bold_duotone/rounded-magnifer-bug.svg deleted file mode 100644 index fc7e9a45..00000000 --- a/assets/icons/bold_duotone/rounded-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifer-zoom-in.svg b/assets/icons/bold_duotone/rounded-magnifer-zoom-in.svg deleted file mode 100644 index 958fc1bb..00000000 --- a/assets/icons/bold_duotone/rounded-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifer-zoom-out.svg b/assets/icons/bold_duotone/rounded-magnifer-zoom-out.svg deleted file mode 100644 index 88b967cb..00000000 --- a/assets/icons/bold_duotone/rounded-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifer.svg b/assets/icons/bold_duotone/rounded-magnifer.svg deleted file mode 100644 index acca5bd2..00000000 --- a/assets/icons/bold_duotone/rounded-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifier-bug.svg b/assets/icons/bold_duotone/rounded-magnifier-bug.svg new file mode 100644 index 00000000..0465e3db --- /dev/null +++ b/assets/icons/bold_duotone/rounded-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifier-zoom-in.svg b/assets/icons/bold_duotone/rounded-magnifier-zoom-in.svg new file mode 100644 index 00000000..7f264335 --- /dev/null +++ b/assets/icons/bold_duotone/rounded-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifier-zoom-out.svg b/assets/icons/bold_duotone/rounded-magnifier-zoom-out.svg new file mode 100644 index 00000000..b3936be9 --- /dev/null +++ b/assets/icons/bold_duotone/rounded-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rounded-magnifier.svg b/assets/icons/bold_duotone/rounded-magnifier.svg new file mode 100644 index 00000000..7317ef67 --- /dev/null +++ b/assets/icons/bold_duotone/rounded-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/routing-2.svg b/assets/icons/bold_duotone/routing-2.svg index a84964ef..3c90a053 100644 --- a/assets/icons/bold_duotone/routing-2.svg +++ b/assets/icons/bold_duotone/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/routing-3.svg b/assets/icons/bold_duotone/routing-3.svg index 9ac21bf3..067fad82 100644 --- a/assets/icons/bold_duotone/routing-3.svg +++ b/assets/icons/bold_duotone/routing-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/routing.svg b/assets/icons/bold_duotone/routing.svg index e9f2e6eb..dc8816d1 100644 --- a/assets/icons/bold_duotone/routing.svg +++ b/assets/icons/bold_duotone/routing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/rugby.svg b/assets/icons/bold_duotone/rugby.svg index 9418d2b9..e6e2d435 100644 --- a/assets/icons/bold_duotone/rugby.svg +++ b/assets/icons/bold_duotone/rugby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ruler-angular.svg b/assets/icons/bold_duotone/ruler-angular.svg index 843b5d4a..7bee8483 100644 --- a/assets/icons/bold_duotone/ruler-angular.svg +++ b/assets/icons/bold_duotone/ruler-angular.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ruler-cross-pen.svg b/assets/icons/bold_duotone/ruler-cross-pen.svg index 6460a6c3..58805d8d 100644 --- a/assets/icons/bold_duotone/ruler-cross-pen.svg +++ b/assets/icons/bold_duotone/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ruler-pen.svg b/assets/icons/bold_duotone/ruler-pen.svg index 081a0e25..d4e8d84c 100644 --- a/assets/icons/bold_duotone/ruler-pen.svg +++ b/assets/icons/bold_duotone/ruler-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ruler.svg b/assets/icons/bold_duotone/ruler.svg index b9a6c23f..03ec66d2 100644 --- a/assets/icons/bold_duotone/ruler.svg +++ b/assets/icons/bold_duotone/ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/running-2.svg b/assets/icons/bold_duotone/running-2.svg index aefb7950..3b1d2cf9 100644 --- a/assets/icons/bold_duotone/running-2.svg +++ b/assets/icons/bold_duotone/running-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/running-round.svg b/assets/icons/bold_duotone/running-round.svg index aa89841a..cbfd1f76 100644 --- a/assets/icons/bold_duotone/running-round.svg +++ b/assets/icons/bold_duotone/running-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/running.svg b/assets/icons/bold_duotone/running.svg index 1ea45c07..e2300885 100644 --- a/assets/icons/bold_duotone/running.svg +++ b/assets/icons/bold_duotone/running.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sad-circle.svg b/assets/icons/bold_duotone/sad-circle.svg index 1816671e..e2da778e 100644 --- a/assets/icons/bold_duotone/sad-circle.svg +++ b/assets/icons/bold_duotone/sad-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sad-square.svg b/assets/icons/bold_duotone/sad-square.svg index c6670969..e0334f0f 100644 --- a/assets/icons/bold_duotone/sad-square.svg +++ b/assets/icons/bold_duotone/sad-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/safe-2.svg b/assets/icons/bold_duotone/safe-2.svg index ad9cc6bd..f5216576 100644 --- a/assets/icons/bold_duotone/safe-2.svg +++ b/assets/icons/bold_duotone/safe-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/safe-circle.svg b/assets/icons/bold_duotone/safe-circle.svg index bf48b809..bc59040b 100644 --- a/assets/icons/bold_duotone/safe-circle.svg +++ b/assets/icons/bold_duotone/safe-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/safe-square.svg b/assets/icons/bold_duotone/safe-square.svg index 11d38f3e..097c5237 100644 --- a/assets/icons/bold_duotone/safe-square.svg +++ b/assets/icons/bold_duotone/safe-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sale-square.svg b/assets/icons/bold_duotone/sale-square.svg index 1b752b45..91bde7ca 100644 --- a/assets/icons/bold_duotone/sale-square.svg +++ b/assets/icons/bold_duotone/sale-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sale.svg b/assets/icons/bold_duotone/sale.svg index 111be457..1c93cf93 100644 --- a/assets/icons/bold_duotone/sale.svg +++ b/assets/icons/bold_duotone/sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/satellite.svg b/assets/icons/bold_duotone/satellite.svg index 995e70f7..9d400204 100644 --- a/assets/icons/bold_duotone/satellite.svg +++ b/assets/icons/bold_duotone/satellite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scale.svg b/assets/icons/bold_duotone/scale.svg index 70e5ed75..a9a519d8 100644 --- a/assets/icons/bold_duotone/scale.svg +++ b/assets/icons/bold_duotone/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scaling.svg b/assets/icons/bold_duotone/scaling.svg new file mode 100644 index 00000000..72acbc41 --- /dev/null +++ b/assets/icons/bold_duotone/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scanner-2.svg b/assets/icons/bold_duotone/scanner-2.svg index 244db74c..7842a21c 100644 --- a/assets/icons/bold_duotone/scanner-2.svg +++ b/assets/icons/bold_duotone/scanner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scanner.svg b/assets/icons/bold_duotone/scanner.svg index 8d781afb..be3146c9 100644 --- a/assets/icons/bold_duotone/scanner.svg +++ b/assets/icons/bold_duotone/scanner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scissors-square.svg b/assets/icons/bold_duotone/scissors-square.svg index 9d96fdfe..dc06bef3 100644 --- a/assets/icons/bold_duotone/scissors-square.svg +++ b/assets/icons/bold_duotone/scissors-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scissors.svg b/assets/icons/bold_duotone/scissors.svg index e0f4d98a..4bbbb928 100644 --- a/assets/icons/bold_duotone/scissors.svg +++ b/assets/icons/bold_duotone/scissors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/scooter.svg b/assets/icons/bold_duotone/scooter.svg index 5d850bc3..e2b8e2cb 100644 --- a/assets/icons/bold_duotone/scooter.svg +++ b/assets/icons/bold_duotone/scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/screen-share.svg b/assets/icons/bold_duotone/screen-share.svg index 0d27368f..b678581e 100644 --- a/assets/icons/bold_duotone/screen-share.svg +++ b/assets/icons/bold_duotone/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/screencast-2.svg b/assets/icons/bold_duotone/screencast-2.svg index cf1868a2..f04d38f1 100644 --- a/assets/icons/bold_duotone/screencast-2.svg +++ b/assets/icons/bold_duotone/screencast-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/screencast.svg b/assets/icons/bold_duotone/screencast.svg index 7f220992..b34d8db1 100644 --- a/assets/icons/bold_duotone/screencast.svg +++ b/assets/icons/bold_duotone/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sd-card.svg b/assets/icons/bold_duotone/sd-card.svg index 8951c06d..2311f457 100644 --- a/assets/icons/bold_duotone/sd-card.svg +++ b/assets/icons/bold_duotone/sd-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/send-square.svg b/assets/icons/bold_duotone/send-square.svg index fce6d61f..b9bf8a94 100644 --- a/assets/icons/bold_duotone/send-square.svg +++ b/assets/icons/bold_duotone/send-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/send-twice-square.svg b/assets/icons/bold_duotone/send-twice-square.svg index 27ed18a4..d5ba1cb1 100644 --- a/assets/icons/bold_duotone/send-twice-square.svg +++ b/assets/icons/bold_duotone/send-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-2.svg b/assets/icons/bold_duotone/server-2.svg index 1328590a..c289e3f1 100644 --- a/assets/icons/bold_duotone/server-2.svg +++ b/assets/icons/bold_duotone/server-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-minimalistic.svg b/assets/icons/bold_duotone/server-minimalistic.svg index ad99fe1c..b78f376e 100644 --- a/assets/icons/bold_duotone/server-minimalistic.svg +++ b/assets/icons/bold_duotone/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-path.svg b/assets/icons/bold_duotone/server-path.svg index c33b4ea9..8b237a4b 100644 --- a/assets/icons/bold_duotone/server-path.svg +++ b/assets/icons/bold_duotone/server-path.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-square-cloud.svg b/assets/icons/bold_duotone/server-square-cloud.svg index b0da294a..f2a0438a 100644 --- a/assets/icons/bold_duotone/server-square-cloud.svg +++ b/assets/icons/bold_duotone/server-square-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-square-update.svg b/assets/icons/bold_duotone/server-square-update.svg index 2ff287bd..093828b7 100644 --- a/assets/icons/bold_duotone/server-square-update.svg +++ b/assets/icons/bold_duotone/server-square-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server-square.svg b/assets/icons/bold_duotone/server-square.svg index 2c8adae4..6d1f7aeb 100644 --- a/assets/icons/bold_duotone/server-square.svg +++ b/assets/icons/bold_duotone/server-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/server.svg b/assets/icons/bold_duotone/server.svg index c3eaab62..50ca71bf 100644 --- a/assets/icons/bold_duotone/server.svg +++ b/assets/icons/bold_duotone/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/settings-minimalistic.svg b/assets/icons/bold_duotone/settings-minimalistic.svg index e0eedf1b..603fb84e 100644 --- a/assets/icons/bold_duotone/settings-minimalistic.svg +++ b/assets/icons/bold_duotone/settings-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/settings.svg b/assets/icons/bold_duotone/settings.svg index 4ee526bc..869e7a83 100644 --- a/assets/icons/bold_duotone/settings.svg +++ b/assets/icons/bold_duotone/settings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/share-circle.svg b/assets/icons/bold_duotone/share-circle.svg index aa582784..b3c5fc8d 100644 --- a/assets/icons/bold_duotone/share-circle.svg +++ b/assets/icons/bold_duotone/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-check.svg b/assets/icons/bold_duotone/shield-check.svg index 60f5b77a..261d607e 100644 --- a/assets/icons/bold_duotone/shield-check.svg +++ b/assets/icons/bold_duotone/shield-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-cross.svg b/assets/icons/bold_duotone/shield-cross.svg index 046dfd6f..0059e44e 100644 --- a/assets/icons/bold_duotone/shield-cross.svg +++ b/assets/icons/bold_duotone/shield-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-keyhole-minimalistic.svg b/assets/icons/bold_duotone/shield-keyhole-minimalistic.svg index 3e489c17..6201287f 100644 --- a/assets/icons/bold_duotone/shield-keyhole-minimalistic.svg +++ b/assets/icons/bold_duotone/shield-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-keyhole.svg b/assets/icons/bold_duotone/shield-keyhole.svg index f97c1a57..d1abee31 100644 --- a/assets/icons/bold_duotone/shield-keyhole.svg +++ b/assets/icons/bold_duotone/shield-keyhole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-minimalistic.svg b/assets/icons/bold_duotone/shield-minimalistic.svg index e54bd416..11f809ba 100644 --- a/assets/icons/bold_duotone/shield-minimalistic.svg +++ b/assets/icons/bold_duotone/shield-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-minus.svg b/assets/icons/bold_duotone/shield-minus.svg index bd6ccd70..4f6f5d2c 100644 --- a/assets/icons/bold_duotone/shield-minus.svg +++ b/assets/icons/bold_duotone/shield-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-network.svg b/assets/icons/bold_duotone/shield-network.svg index 53c469d7..88cd9261 100644 --- a/assets/icons/bold_duotone/shield-network.svg +++ b/assets/icons/bold_duotone/shield-network.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-plus.svg b/assets/icons/bold_duotone/shield-plus.svg index 6adbd8e1..fd64d3e3 100644 --- a/assets/icons/bold_duotone/shield-plus.svg +++ b/assets/icons/bold_duotone/shield-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-star.svg b/assets/icons/bold_duotone/shield-star.svg index 57c78402..557c9347 100644 --- a/assets/icons/bold_duotone/shield-star.svg +++ b/assets/icons/bold_duotone/shield-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-up.svg b/assets/icons/bold_duotone/shield-up.svg index 376ebcdf..4edbf269 100644 --- a/assets/icons/bold_duotone/shield-up.svg +++ b/assets/icons/bold_duotone/shield-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-user.svg b/assets/icons/bold_duotone/shield-user.svg index 65a1a117..cb675c4f 100644 --- a/assets/icons/bold_duotone/shield-user.svg +++ b/assets/icons/bold_duotone/shield-user.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield-warning.svg b/assets/icons/bold_duotone/shield-warning.svg index f5ca7196..81d5bf72 100644 --- a/assets/icons/bold_duotone/shield-warning.svg +++ b/assets/icons/bold_duotone/shield-warning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shield.svg b/assets/icons/bold_duotone/shield.svg index f92c9653..b8e25c55 100644 --- a/assets/icons/bold_duotone/shield.svg +++ b/assets/icons/bold_duotone/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shock-absorber.svg b/assets/icons/bold_duotone/shock-absorber.svg index 56deb816..cc9db071 100644 --- a/assets/icons/bold_duotone/shock-absorber.svg +++ b/assets/icons/bold_duotone/shock-absorber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shop-2.svg b/assets/icons/bold_duotone/shop-2.svg index e12b5a30..fd6cfe82 100644 --- a/assets/icons/bold_duotone/shop-2.svg +++ b/assets/icons/bold_duotone/shop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shop-minimalistic.svg b/assets/icons/bold_duotone/shop-minimalistic.svg index 7e0b283f..fac8eac7 100644 --- a/assets/icons/bold_duotone/shop-minimalistic.svg +++ b/assets/icons/bold_duotone/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shop.svg b/assets/icons/bold_duotone/shop.svg index 7ff4912f..5080795c 100644 --- a/assets/icons/bold_duotone/shop.svg +++ b/assets/icons/bold_duotone/shop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/shuffle.svg b/assets/icons/bold_duotone/shuffle.svg index 2c76b630..ba2b003e 100644 --- a/assets/icons/bold_duotone/shuffle.svg +++ b/assets/icons/bold_duotone/shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sidebar-code.svg b/assets/icons/bold_duotone/sidebar-code.svg index d850eb7d..c76412fc 100644 --- a/assets/icons/bold_duotone/sidebar-code.svg +++ b/assets/icons/bold_duotone/sidebar-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sidebar-minimalistic.svg b/assets/icons/bold_duotone/sidebar-minimalistic.svg index 67200837..a15e1679 100644 --- a/assets/icons/bold_duotone/sidebar-minimalistic.svg +++ b/assets/icons/bold_duotone/sidebar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sidebar.svg b/assets/icons/bold_duotone/sidebar.svg new file mode 100644 index 00000000..80bffacf --- /dev/null +++ b/assets/icons/bold_duotone/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/siderbar.svg b/assets/icons/bold_duotone/siderbar.svg deleted file mode 100644 index 1d27ef50..00000000 --- a/assets/icons/bold_duotone/siderbar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/signpost-2.svg b/assets/icons/bold_duotone/signpost-2.svg index 0473e1f8..4a9eb4cc 100644 --- a/assets/icons/bold_duotone/signpost-2.svg +++ b/assets/icons/bold_duotone/signpost-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/signpost.svg b/assets/icons/bold_duotone/signpost.svg index a2074917..c39ac546 100644 --- a/assets/icons/bold_duotone/signpost.svg +++ b/assets/icons/bold_duotone/signpost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sim-card-minimalistic.svg b/assets/icons/bold_duotone/sim-card-minimalistic.svg index 50cf5798..867953bf 100644 --- a/assets/icons/bold_duotone/sim-card-minimalistic.svg +++ b/assets/icons/bold_duotone/sim-card-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sim-card.svg b/assets/icons/bold_duotone/sim-card.svg index 6da362bc..f4041fca 100644 --- a/assets/icons/bold_duotone/sim-card.svg +++ b/assets/icons/bold_duotone/sim-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sim-cards.svg b/assets/icons/bold_duotone/sim-cards.svg index a1a09aee..8473bd62 100644 --- a/assets/icons/bold_duotone/sim-cards.svg +++ b/assets/icons/bold_duotone/sim-cards.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/siren-rounded.svg b/assets/icons/bold_duotone/siren-rounded.svg index 46f8e937..7a564477 100644 --- a/assets/icons/bold_duotone/siren-rounded.svg +++ b/assets/icons/bold_duotone/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/siren.svg b/assets/icons/bold_duotone/siren.svg index 1afecdfd..f6d99701 100644 --- a/assets/icons/bold_duotone/siren.svg +++ b/assets/icons/bold_duotone/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skateboard.svg b/assets/icons/bold_duotone/skateboard.svg index 03fb8cc7..5ee3abf5 100644 --- a/assets/icons/bold_duotone/skateboard.svg +++ b/assets/icons/bold_duotone/skateboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skateboarding-round.svg b/assets/icons/bold_duotone/skateboarding-round.svg index a4cba423..491d6069 100644 --- a/assets/icons/bold_duotone/skateboarding-round.svg +++ b/assets/icons/bold_duotone/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skateboarding.svg b/assets/icons/bold_duotone/skateboarding.svg index ea17e215..c4aa252f 100644 --- a/assets/icons/bold_duotone/skateboarding.svg +++ b/assets/icons/bold_duotone/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skip-next.svg b/assets/icons/bold_duotone/skip-next.svg index 59e2dfc2..cac71cc3 100644 --- a/assets/icons/bold_duotone/skip-next.svg +++ b/assets/icons/bold_duotone/skip-next.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skip-previous.svg b/assets/icons/bold_duotone/skip-previous.svg index ab3ca53a..3ca96663 100644 --- a/assets/icons/bold_duotone/skip-previous.svg +++ b/assets/icons/bold_duotone/skip-previous.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/skirt.svg b/assets/icons/bold_duotone/skirt.svg index 1dac3944..f95fe645 100644 --- a/assets/icons/bold_duotone/skirt.svg +++ b/assets/icons/bold_duotone/skirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slash-circle.svg b/assets/icons/bold_duotone/slash-circle.svg index 1ec1a34f..137f2fe3 100644 --- a/assets/icons/bold_duotone/slash-circle.svg +++ b/assets/icons/bold_duotone/slash-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slash-square.svg b/assets/icons/bold_duotone/slash-square.svg index 221e36b0..33e304b6 100644 --- a/assets/icons/bold_duotone/slash-square.svg +++ b/assets/icons/bold_duotone/slash-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sledgehammer.svg b/assets/icons/bold_duotone/sledgehammer.svg index 67bea996..480e9f20 100644 --- a/assets/icons/bold_duotone/sledgehammer.svg +++ b/assets/icons/bold_duotone/sledgehammer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sleeping-circle.svg b/assets/icons/bold_duotone/sleeping-circle.svg index c1ea64ff..08feb1cf 100644 --- a/assets/icons/bold_duotone/sleeping-circle.svg +++ b/assets/icons/bold_duotone/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sleeping-square.svg b/assets/icons/bold_duotone/sleeping-square.svg index 8cdd15b1..3ecd73e2 100644 --- a/assets/icons/bold_duotone/sleeping-square.svg +++ b/assets/icons/bold_duotone/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sleeping.svg b/assets/icons/bold_duotone/sleeping.svg index fb8900b4..4f073c7c 100644 --- a/assets/icons/bold_duotone/sleeping.svg +++ b/assets/icons/bold_duotone/sleeping.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slider-horizontal.svg b/assets/icons/bold_duotone/slider-horizontal.svg index 780a918d..d355501c 100644 --- a/assets/icons/bold_duotone/slider-horizontal.svg +++ b/assets/icons/bold_duotone/slider-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slider-minimalistic-horizontal.svg b/assets/icons/bold_duotone/slider-minimalistic-horizontal.svg index 5a3b58b6..2622f3d6 100644 --- a/assets/icons/bold_duotone/slider-minimalistic-horizontal.svg +++ b/assets/icons/bold_duotone/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slider-vertical-minimalistic.svg b/assets/icons/bold_duotone/slider-vertical-minimalistic.svg index d76ea6f2..5611b658 100644 --- a/assets/icons/bold_duotone/slider-vertical-minimalistic.svg +++ b/assets/icons/bold_duotone/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/slider-vertical.svg b/assets/icons/bold_duotone/slider-vertical.svg index 2aaa97aa..11b0bc38 100644 --- a/assets/icons/bold_duotone/slider-vertical.svg +++ b/assets/icons/bold_duotone/slider-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-home-angle.svg b/assets/icons/bold_duotone/smart-home-angle.svg index a2162fd2..81da06b2 100644 --- a/assets/icons/bold_duotone/smart-home-angle.svg +++ b/assets/icons/bold_duotone/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-home.svg b/assets/icons/bold_duotone/smart-home.svg index 036a1ea2..2c5bce9b 100644 --- a/assets/icons/bold_duotone/smart-home.svg +++ b/assets/icons/bold_duotone/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-speaker-2.svg b/assets/icons/bold_duotone/smart-speaker-2.svg index e69254b3..52ae70a2 100644 --- a/assets/icons/bold_duotone/smart-speaker-2.svg +++ b/assets/icons/bold_duotone/smart-speaker-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-speaker-minimalistic.svg b/assets/icons/bold_duotone/smart-speaker-minimalistic.svg index 18677919..fa0365ee 100644 --- a/assets/icons/bold_duotone/smart-speaker-minimalistic.svg +++ b/assets/icons/bold_duotone/smart-speaker-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-speaker.svg b/assets/icons/bold_duotone/smart-speaker.svg index 0546dc5f..a2d4bf9e 100644 --- a/assets/icons/bold_duotone/smart-speaker.svg +++ b/assets/icons/bold_duotone/smart-speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-vacuum-cleaner-2.svg b/assets/icons/bold_duotone/smart-vacuum-cleaner-2.svg index 1206191c..233efe65 100644 --- a/assets/icons/bold_duotone/smart-vacuum-cleaner-2.svg +++ b/assets/icons/bold_duotone/smart-vacuum-cleaner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smart-vacuum-cleaner.svg b/assets/icons/bold_duotone/smart-vacuum-cleaner.svg index b955b3fd..efcffbe8 100644 --- a/assets/icons/bold_duotone/smart-vacuum-cleaner.svg +++ b/assets/icons/bold_duotone/smart-vacuum-cleaner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-2.svg b/assets/icons/bold_duotone/smartphone-2.svg index 5e509c18..dce544da 100644 --- a/assets/icons/bold_duotone/smartphone-2.svg +++ b/assets/icons/bold_duotone/smartphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-rotate-2.svg b/assets/icons/bold_duotone/smartphone-rotate-2.svg index f5396c88..3b6c9ef3 100644 --- a/assets/icons/bold_duotone/smartphone-rotate-2.svg +++ b/assets/icons/bold_duotone/smartphone-rotate-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-rotate-angle.svg b/assets/icons/bold_duotone/smartphone-rotate-angle.svg index c53836b5..e195b85c 100644 --- a/assets/icons/bold_duotone/smartphone-rotate-angle.svg +++ b/assets/icons/bold_duotone/smartphone-rotate-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-rotate-orientation.svg b/assets/icons/bold_duotone/smartphone-rotate-orientation.svg index f0869d91..8318c155 100644 --- a/assets/icons/bold_duotone/smartphone-rotate-orientation.svg +++ b/assets/icons/bold_duotone/smartphone-rotate-orientation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-update.svg b/assets/icons/bold_duotone/smartphone-update.svg index 48056a37..3e9f2de4 100644 --- a/assets/icons/bold_duotone/smartphone-update.svg +++ b/assets/icons/bold_duotone/smartphone-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone-vibration.svg b/assets/icons/bold_duotone/smartphone-vibration.svg index 5343eee6..739c9987 100644 --- a/assets/icons/bold_duotone/smartphone-vibration.svg +++ b/assets/icons/bold_duotone/smartphone-vibration.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smartphone.svg b/assets/icons/bold_duotone/smartphone.svg index 3eeea081..7788d378 100644 --- a/assets/icons/bold_duotone/smartphone.svg +++ b/assets/icons/bold_duotone/smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smile-circle.svg b/assets/icons/bold_duotone/smile-circle.svg index f4be81c6..0eecaedd 100644 --- a/assets/icons/bold_duotone/smile-circle.svg +++ b/assets/icons/bold_duotone/smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/smile-square.svg b/assets/icons/bold_duotone/smile-square.svg index b1eb97eb..93d09582 100644 --- a/assets/icons/bold_duotone/smile-square.svg +++ b/assets/icons/bold_duotone/smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/socket.svg b/assets/icons/bold_duotone/socket.svg index e04dddd6..1a8993bc 100644 --- a/assets/icons/bold_duotone/socket.svg +++ b/assets/icons/bold_duotone/socket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sofa-2.svg b/assets/icons/bold_duotone/sofa-2.svg index 0e6fd58d..c3540ab8 100644 --- a/assets/icons/bold_duotone/sofa-2.svg +++ b/assets/icons/bold_duotone/sofa-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sofa-3.svg b/assets/icons/bold_duotone/sofa-3.svg index 17478157..6753c433 100644 --- a/assets/icons/bold_duotone/sofa-3.svg +++ b/assets/icons/bold_duotone/sofa-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sofa.svg b/assets/icons/bold_duotone/sofa.svg index e1bd2366..bb421510 100644 --- a/assets/icons/bold_duotone/sofa.svg +++ b/assets/icons/bold_duotone/sofa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-alphabetically.svg b/assets/icons/bold_duotone/sort-alphabetically.svg new file mode 100644 index 00000000..d8512e58 --- /dev/null +++ b/assets/icons/bold_duotone/sort-alphabetically.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-by-alphabet.svg b/assets/icons/bold_duotone/sort-by-alphabet.svg deleted file mode 100644 index f3eaea09..00000000 --- a/assets/icons/bold_duotone/sort-by-alphabet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-from-bottom-to-top.svg b/assets/icons/bold_duotone/sort-from-bottom-to-top.svg index aa2a0b2a..04f00cd7 100644 --- a/assets/icons/bold_duotone/sort-from-bottom-to-top.svg +++ b/assets/icons/bold_duotone/sort-from-bottom-to-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-from-top-to-bottom.svg b/assets/icons/bold_duotone/sort-from-top-to-bottom.svg index 1aea41ef..bcc2d712 100644 --- a/assets/icons/bold_duotone/sort-from-top-to-bottom.svg +++ b/assets/icons/bold_duotone/sort-from-top-to-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-horizontal.svg b/assets/icons/bold_duotone/sort-horizontal.svg index 03385a12..43746dc4 100644 --- a/assets/icons/bold_duotone/sort-horizontal.svg +++ b/assets/icons/bold_duotone/sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort-vertical.svg b/assets/icons/bold_duotone/sort-vertical.svg index 7a983476..c19409a1 100644 --- a/assets/icons/bold_duotone/sort-vertical.svg +++ b/assets/icons/bold_duotone/sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sort.svg b/assets/icons/bold_duotone/sort.svg index f9346024..a53eb691 100644 --- a/assets/icons/bold_duotone/sort.svg +++ b/assets/icons/bold_duotone/sort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/soundwave-circle.svg b/assets/icons/bold_duotone/soundwave-circle.svg index 69b5d97b..27660795 100644 --- a/assets/icons/bold_duotone/soundwave-circle.svg +++ b/assets/icons/bold_duotone/soundwave-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/soundwave-square.svg b/assets/icons/bold_duotone/soundwave-square.svg index 31d4d1dd..55803b41 100644 --- a/assets/icons/bold_duotone/soundwave-square.svg +++ b/assets/icons/bold_duotone/soundwave-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/soundwave.svg b/assets/icons/bold_duotone/soundwave.svg index 75422ffb..f320ea2d 100644 --- a/assets/icons/bold_duotone/soundwave.svg +++ b/assets/icons/bold_duotone/soundwave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/speaker-minimalistic.svg b/assets/icons/bold_duotone/speaker-minimalistic.svg index 29c643df..736c7b4a 100644 --- a/assets/icons/bold_duotone/speaker-minimalistic.svg +++ b/assets/icons/bold_duotone/speaker-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/speaker.svg b/assets/icons/bold_duotone/speaker.svg index d7d04504..c287e354 100644 --- a/assets/icons/bold_duotone/speaker.svg +++ b/assets/icons/bold_duotone/speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/special-effects.svg b/assets/icons/bold_duotone/special-effects.svg index 993e7f2d..710efc38 100644 --- a/assets/icons/bold_duotone/special-effects.svg +++ b/assets/icons/bold_duotone/special-effects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/spedometer-low.svg b/assets/icons/bold_duotone/spedometer-low.svg deleted file mode 100644 index 7fd1e956..00000000 --- a/assets/icons/bold_duotone/spedometer-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/spedometer-max.svg b/assets/icons/bold_duotone/spedometer-max.svg deleted file mode 100644 index 9c7d0ee9..00000000 --- a/assets/icons/bold_duotone/spedometer-max.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/spedometer-middle.svg b/assets/icons/bold_duotone/spedometer-middle.svg deleted file mode 100644 index 23eeba5f..00000000 --- a/assets/icons/bold_duotone/spedometer-middle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/speedometer-low.svg b/assets/icons/bold_duotone/speedometer-low.svg new file mode 100644 index 00000000..ed57d939 --- /dev/null +++ b/assets/icons/bold_duotone/speedometer-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/speedometer-max.svg b/assets/icons/bold_duotone/speedometer-max.svg new file mode 100644 index 00000000..34087052 --- /dev/null +++ b/assets/icons/bold_duotone/speedometer-max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/speedometer-middle.svg b/assets/icons/bold_duotone/speedometer-middle.svg new file mode 100644 index 00000000..03724cc5 --- /dev/null +++ b/assets/icons/bold_duotone/speedometer-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-academic-cap-2.svg b/assets/icons/bold_duotone/square-academic-cap-2.svg index dd8288a3..7dc63ab2 100644 --- a/assets/icons/bold_duotone/square-academic-cap-2.svg +++ b/assets/icons/bold_duotone/square-academic-cap-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-academic-cap.svg b/assets/icons/bold_duotone/square-academic-cap.svg index 3441386e..3c17a33b 100644 --- a/assets/icons/bold_duotone/square-academic-cap.svg +++ b/assets/icons/bold_duotone/square-academic-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-alt-arrow-down.svg b/assets/icons/bold_duotone/square-alt-arrow-down.svg index db306caf..6ace344c 100644 --- a/assets/icons/bold_duotone/square-alt-arrow-down.svg +++ b/assets/icons/bold_duotone/square-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-alt-arrow-left.svg b/assets/icons/bold_duotone/square-alt-arrow-left.svg index ac1a88e1..233e320f 100644 --- a/assets/icons/bold_duotone/square-alt-arrow-left.svg +++ b/assets/icons/bold_duotone/square-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-alt-arrow-right.svg b/assets/icons/bold_duotone/square-alt-arrow-right.svg index 11929495..aaad5a8b 100644 --- a/assets/icons/bold_duotone/square-alt-arrow-right.svg +++ b/assets/icons/bold_duotone/square-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-alt-arrow-up.svg b/assets/icons/bold_duotone/square-alt-arrow-up.svg index 8d70d19a..71d9501c 100644 --- a/assets/icons/bold_duotone/square-alt-arrow-up.svg +++ b/assets/icons/bold_duotone/square-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-down.svg b/assets/icons/bold_duotone/square-arrow-down.svg index 7f25dd72..69a4a1c3 100644 --- a/assets/icons/bold_duotone/square-arrow-down.svg +++ b/assets/icons/bold_duotone/square-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-left-down.svg b/assets/icons/bold_duotone/square-arrow-left-down.svg index 3f5a8acf..686d2968 100644 --- a/assets/icons/bold_duotone/square-arrow-left-down.svg +++ b/assets/icons/bold_duotone/square-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-left-up.svg b/assets/icons/bold_duotone/square-arrow-left-up.svg index 54c96e2f..4bd3037d 100644 --- a/assets/icons/bold_duotone/square-arrow-left-up.svg +++ b/assets/icons/bold_duotone/square-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-left.svg b/assets/icons/bold_duotone/square-arrow-left.svg index c7319ab4..e5ebe260 100644 --- a/assets/icons/bold_duotone/square-arrow-left.svg +++ b/assets/icons/bold_duotone/square-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-right-down.svg b/assets/icons/bold_duotone/square-arrow-right-down.svg index 445b845f..0d1e3e5f 100644 --- a/assets/icons/bold_duotone/square-arrow-right-down.svg +++ b/assets/icons/bold_duotone/square-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-right-up.svg b/assets/icons/bold_duotone/square-arrow-right-up.svg index 486d225e..d764c1fa 100644 --- a/assets/icons/bold_duotone/square-arrow-right-up.svg +++ b/assets/icons/bold_duotone/square-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-right.svg b/assets/icons/bold_duotone/square-arrow-right.svg index 57fdc34c..77b077bf 100644 --- a/assets/icons/bold_duotone/square-arrow-right.svg +++ b/assets/icons/bold_duotone/square-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-arrow-up.svg b/assets/icons/bold_duotone/square-arrow-up.svg index aa377e74..319b3e5c 100644 --- a/assets/icons/bold_duotone/square-arrow-up.svg +++ b/assets/icons/bold_duotone/square-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-bottom-down.svg b/assets/icons/bold_duotone/square-bottom-down.svg index 9392c5a7..63c2eaf2 100644 --- a/assets/icons/bold_duotone/square-bottom-down.svg +++ b/assets/icons/bold_duotone/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-bottom-up.svg b/assets/icons/bold_duotone/square-bottom-up.svg index 0e986bd7..d35d810e 100644 --- a/assets/icons/bold_duotone/square-bottom-up.svg +++ b/assets/icons/bold_duotone/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-double-alt-arrow-down.svg b/assets/icons/bold_duotone/square-double-alt-arrow-down.svg index 1b22a393..9bdee1b6 100644 --- a/assets/icons/bold_duotone/square-double-alt-arrow-down.svg +++ b/assets/icons/bold_duotone/square-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-double-alt-arrow-left.svg b/assets/icons/bold_duotone/square-double-alt-arrow-left.svg index fa74244b..8ad79d7f 100644 --- a/assets/icons/bold_duotone/square-double-alt-arrow-left.svg +++ b/assets/icons/bold_duotone/square-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-double-alt-arrow-right.svg b/assets/icons/bold_duotone/square-double-alt-arrow-right.svg index 8e2131fa..4d21ff15 100644 --- a/assets/icons/bold_duotone/square-double-alt-arrow-right.svg +++ b/assets/icons/bold_duotone/square-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-double-alt-arrow-up.svg b/assets/icons/bold_duotone/square-double-alt-arrow-up.svg index be88e830..b5419111 100644 --- a/assets/icons/bold_duotone/square-double-alt-arrow-up.svg +++ b/assets/icons/bold_duotone/square-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-forward.svg b/assets/icons/bold_duotone/square-forward.svg index 0ec5dfa2..dfd3ab4a 100644 --- a/assets/icons/bold_duotone/square-forward.svg +++ b/assets/icons/bold_duotone/square-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-share-line.svg b/assets/icons/bold_duotone/square-share-line.svg index 61237b3b..8329effa 100644 --- a/assets/icons/bold_duotone/square-share-line.svg +++ b/assets/icons/bold_duotone/square-share-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-sort-horizontal.svg b/assets/icons/bold_duotone/square-sort-horizontal.svg index 793b2d08..82b74ad5 100644 --- a/assets/icons/bold_duotone/square-sort-horizontal.svg +++ b/assets/icons/bold_duotone/square-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-sort-vertical.svg b/assets/icons/bold_duotone/square-sort-vertical.svg index 90fad326..5e19c2e7 100644 --- a/assets/icons/bold_duotone/square-sort-vertical.svg +++ b/assets/icons/bold_duotone/square-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-top-down.svg b/assets/icons/bold_duotone/square-top-down.svg index 4af4a13c..a4ce3571 100644 --- a/assets/icons/bold_duotone/square-top-down.svg +++ b/assets/icons/bold_duotone/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-top-up.svg b/assets/icons/bold_duotone/square-top-up.svg index 64fc99d0..dce94a7c 100644 --- a/assets/icons/bold_duotone/square-top-up.svg +++ b/assets/icons/bold_duotone/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-transfer-horizontal.svg b/assets/icons/bold_duotone/square-transfer-horizontal.svg index cb927365..74c17de5 100644 --- a/assets/icons/bold_duotone/square-transfer-horizontal.svg +++ b/assets/icons/bold_duotone/square-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/square-transfer-vertical.svg b/assets/icons/bold_duotone/square-transfer-vertical.svg index 7cd6e8d7..534ab6d2 100644 --- a/assets/icons/bold_duotone/square-transfer-vertical.svg +++ b/assets/icons/bold_duotone/square-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ssd-round.svg b/assets/icons/bold_duotone/ssd-round.svg index 7359903b..96053b25 100644 --- a/assets/icons/bold_duotone/ssd-round.svg +++ b/assets/icons/bold_duotone/ssd-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ssd-square.svg b/assets/icons/bold_duotone/ssd-square.svg index 89bbae75..eccf355b 100644 --- a/assets/icons/bold_duotone/ssd-square.svg +++ b/assets/icons/bold_duotone/ssd-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-2.svg b/assets/icons/bold_duotone/star-2.svg new file mode 100644 index 00000000..0073ea8e --- /dev/null +++ b/assets/icons/bold_duotone/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-angle.svg b/assets/icons/bold_duotone/star-angle.svg index 26052abb..7a8184a9 100644 --- a/assets/icons/bold_duotone/star-angle.svg +++ b/assets/icons/bold_duotone/star-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-circle.svg b/assets/icons/bold_duotone/star-circle.svg index 5245dc6b..5b5ddd09 100644 --- a/assets/icons/bold_duotone/star-circle.svg +++ b/assets/icons/bold_duotone/star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-fall-2.svg b/assets/icons/bold_duotone/star-fall-2.svg index f7ef4204..5fce3f91 100644 --- a/assets/icons/bold_duotone/star-fall-2.svg +++ b/assets/icons/bold_duotone/star-fall-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-fall-minimalistic-2.svg b/assets/icons/bold_duotone/star-fall-minimalistic-2.svg index ac442780..390a9115 100644 --- a/assets/icons/bold_duotone/star-fall-minimalistic-2.svg +++ b/assets/icons/bold_duotone/star-fall-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-fall-minimalistic.svg b/assets/icons/bold_duotone/star-fall-minimalistic.svg index 07b13b73..5939c056 100644 --- a/assets/icons/bold_duotone/star-fall-minimalistic.svg +++ b/assets/icons/bold_duotone/star-fall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-fall.svg b/assets/icons/bold_duotone/star-fall.svg index ce53312d..0615fef0 100644 --- a/assets/icons/bold_duotone/star-fall.svg +++ b/assets/icons/bold_duotone/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-rainbow.svg b/assets/icons/bold_duotone/star-rainbow.svg index 612c0261..f5622cb9 100644 --- a/assets/icons/bold_duotone/star-rainbow.svg +++ b/assets/icons/bold_duotone/star-rainbow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-rings.svg b/assets/icons/bold_duotone/star-rings.svg index d190403a..22511165 100644 --- a/assets/icons/bold_duotone/star-rings.svg +++ b/assets/icons/bold_duotone/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star-shine.svg b/assets/icons/bold_duotone/star-shine.svg index 50c9fedc..ecc899a3 100644 --- a/assets/icons/bold_duotone/star-shine.svg +++ b/assets/icons/bold_duotone/star-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/star.svg b/assets/icons/bold_duotone/star.svg index b6f0b3ca..d8685965 100644 --- a/assets/icons/bold_duotone/star.svg +++ b/assets/icons/bold_duotone/star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stars-2.svg b/assets/icons/bold_duotone/stars-2.svg new file mode 100644 index 00000000..00419ee1 --- /dev/null +++ b/assets/icons/bold_duotone/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stars-line.svg b/assets/icons/bold_duotone/stars-line.svg index ce681ba0..52ecb6e6 100644 --- a/assets/icons/bold_duotone/stars-line.svg +++ b/assets/icons/bold_duotone/stars-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stars-minimalistic.svg b/assets/icons/bold_duotone/stars-minimalistic.svg index a3bc8118..1ce49d86 100644 --- a/assets/icons/bold_duotone/stars-minimalistic.svg +++ b/assets/icons/bold_duotone/stars-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stars.svg b/assets/icons/bold_duotone/stars.svg index 31058edb..9fa0026d 100644 --- a/assets/icons/bold_duotone/stars.svg +++ b/assets/icons/bold_duotone/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/station-minimalistic.svg b/assets/icons/bold_duotone/station-minimalistic.svg index 8233fa11..3a30260b 100644 --- a/assets/icons/bold_duotone/station-minimalistic.svg +++ b/assets/icons/bold_duotone/station-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/station.svg b/assets/icons/bold_duotone/station.svg index 753df0e3..6b578358 100644 --- a/assets/icons/bold_duotone/station.svg +++ b/assets/icons/bold_duotone/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stethoscope.svg b/assets/icons/bold_duotone/stethoscope.svg index f7af436c..e6de9d6b 100644 --- a/assets/icons/bold_duotone/stethoscope.svg +++ b/assets/icons/bold_duotone/stethoscope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sticker-circle.svg b/assets/icons/bold_duotone/sticker-circle.svg index 0adb5e55..a67e506a 100644 --- a/assets/icons/bold_duotone/sticker-circle.svg +++ b/assets/icons/bold_duotone/sticker-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sticker-smile-circle-2.svg b/assets/icons/bold_duotone/sticker-smile-circle-2.svg index eaebce55..1764f6da 100644 --- a/assets/icons/bold_duotone/sticker-smile-circle-2.svg +++ b/assets/icons/bold_duotone/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sticker-smile-circle.svg b/assets/icons/bold_duotone/sticker-smile-circle.svg index af2593d8..e7bd3a62 100644 --- a/assets/icons/bold_duotone/sticker-smile-circle.svg +++ b/assets/icons/bold_duotone/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sticker-smile-square.svg b/assets/icons/bold_duotone/sticker-smile-square.svg index d74e1572..6a3e584d 100644 --- a/assets/icons/bold_duotone/sticker-smile-square.svg +++ b/assets/icons/bold_duotone/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sticker-square.svg b/assets/icons/bold_duotone/sticker-square.svg index b6115064..76577975 100644 --- a/assets/icons/bold_duotone/sticker-square.svg +++ b/assets/icons/bold_duotone/sticker-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stop-circle.svg b/assets/icons/bold_duotone/stop-circle.svg index 79a7d049..3bfcc30f 100644 --- a/assets/icons/bold_duotone/stop-circle.svg +++ b/assets/icons/bold_duotone/stop-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stop.svg b/assets/icons/bold_duotone/stop.svg index c20a39ba..f5e52d44 100644 --- a/assets/icons/bold_duotone/stop.svg +++ b/assets/icons/bold_duotone/stop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stopwatch-pause.svg b/assets/icons/bold_duotone/stopwatch-pause.svg index 298db6cc..3dbcd27a 100644 --- a/assets/icons/bold_duotone/stopwatch-pause.svg +++ b/assets/icons/bold_duotone/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stopwatch-play.svg b/assets/icons/bold_duotone/stopwatch-play.svg index 1bfd1ef7..2736520a 100644 --- a/assets/icons/bold_duotone/stopwatch-play.svg +++ b/assets/icons/bold_duotone/stopwatch-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stopwatch.svg b/assets/icons/bold_duotone/stopwatch.svg index 7b4633d4..eb93573d 100644 --- a/assets/icons/bold_duotone/stopwatch.svg +++ b/assets/icons/bold_duotone/stopwatch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stream.svg b/assets/icons/bold_duotone/stream.svg index c9c53f49..ed1c58d1 100644 --- a/assets/icons/bold_duotone/stream.svg +++ b/assets/icons/bold_duotone/stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/streets-map-point.svg b/assets/icons/bold_duotone/streets-map-point.svg index 14962175..76fe850b 100644 --- a/assets/icons/bold_duotone/streets-map-point.svg +++ b/assets/icons/bold_duotone/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/streets-navigation.svg b/assets/icons/bold_duotone/streets-navigation.svg index ca245050..cbdb3fc3 100644 --- a/assets/icons/bold_duotone/streets-navigation.svg +++ b/assets/icons/bold_duotone/streets-navigation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/streets.svg b/assets/icons/bold_duotone/streets.svg index fbf13266..25bd6a80 100644 --- a/assets/icons/bold_duotone/streets.svg +++ b/assets/icons/bold_duotone/streets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stretching-round.svg b/assets/icons/bold_duotone/stretching-round.svg index d3ac92a3..54128fe8 100644 --- a/assets/icons/bold_duotone/stretching-round.svg +++ b/assets/icons/bold_duotone/stretching-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/stretching.svg b/assets/icons/bold_duotone/stretching.svg index f3ed66a3..0963919d 100644 --- a/assets/icons/bold_duotone/stretching.svg +++ b/assets/icons/bold_duotone/stretching.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/structure.svg b/assets/icons/bold_duotone/structure.svg index 4753560d..b798d992 100644 --- a/assets/icons/bold_duotone/structure.svg +++ b/assets/icons/bold_duotone/structure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/subtitles.svg b/assets/icons/bold_duotone/subtitles.svg index 4c668c9d..3487c3a7 100644 --- a/assets/icons/bold_duotone/subtitles.svg +++ b/assets/icons/bold_duotone/subtitles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suitcase-lines.svg b/assets/icons/bold_duotone/suitcase-lines.svg index 6cfc8239..1930e40f 100644 --- a/assets/icons/bold_duotone/suitcase-lines.svg +++ b/assets/icons/bold_duotone/suitcase-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suitcase-tag.svg b/assets/icons/bold_duotone/suitcase-tag.svg index 012f02e4..cea7f432 100644 --- a/assets/icons/bold_duotone/suitcase-tag.svg +++ b/assets/icons/bold_duotone/suitcase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suitcase.svg b/assets/icons/bold_duotone/suitcase.svg index ab4a2244..223acffa 100644 --- a/assets/icons/bold_duotone/suitcase.svg +++ b/assets/icons/bold_duotone/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sun-2.svg b/assets/icons/bold_duotone/sun-2.svg index 2b243c5d..7daa28ee 100644 --- a/assets/icons/bold_duotone/sun-2.svg +++ b/assets/icons/bold_duotone/sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sun-fog.svg b/assets/icons/bold_duotone/sun-fog.svg index 274425ff..7b654ad7 100644 --- a/assets/icons/bold_duotone/sun-fog.svg +++ b/assets/icons/bold_duotone/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sun.svg b/assets/icons/bold_duotone/sun.svg index 491c1c00..78ee5dbb 100644 --- a/assets/icons/bold_duotone/sun.svg +++ b/assets/icons/bold_duotone/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sunrise.svg b/assets/icons/bold_duotone/sunrise.svg index 859e91df..cdee2945 100644 --- a/assets/icons/bold_duotone/sunrise.svg +++ b/assets/icons/bold_duotone/sunrise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/sunset.svg b/assets/icons/bold_duotone/sunset.svg index 7860aa3e..ffb593c0 100644 --- a/assets/icons/bold_duotone/sunset.svg +++ b/assets/icons/bold_duotone/sunset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suspension-bolt.svg b/assets/icons/bold_duotone/suspension-bolt.svg index 77deddb8..162d61e0 100644 --- a/assets/icons/bold_duotone/suspension-bolt.svg +++ b/assets/icons/bold_duotone/suspension-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suspension-cross.svg b/assets/icons/bold_duotone/suspension-cross.svg index df7548da..8d50bb4b 100644 --- a/assets/icons/bold_duotone/suspension-cross.svg +++ b/assets/icons/bold_duotone/suspension-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/suspension.svg b/assets/icons/bold_duotone/suspension.svg index 5e622a59..3fab3d18 100644 --- a/assets/icons/bold_duotone/suspension.svg +++ b/assets/icons/bold_duotone/suspension.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/swimming.svg b/assets/icons/bold_duotone/swimming.svg index 1fb7c755..f77d372c 100644 --- a/assets/icons/bold_duotone/swimming.svg +++ b/assets/icons/bold_duotone/swimming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/syringe.svg b/assets/icons/bold_duotone/syringe.svg index a4a92380..a39e4b1d 100644 --- a/assets/icons/bold_duotone/syringe.svg +++ b/assets/icons/bold_duotone/syringe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/t-shirt.svg b/assets/icons/bold_duotone/t-shirt.svg index ae152278..7d680496 100644 --- a/assets/icons/bold_duotone/t-shirt.svg +++ b/assets/icons/bold_duotone/t-shirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tablet.svg b/assets/icons/bold_duotone/tablet.svg index 1c47a35d..b64fd5a4 100644 --- a/assets/icons/bold_duotone/tablet.svg +++ b/assets/icons/bold_duotone/tablet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tag-horizontal.svg b/assets/icons/bold_duotone/tag-horizontal.svg index 36bf40eb..45c35eda 100644 --- a/assets/icons/bold_duotone/tag-horizontal.svg +++ b/assets/icons/bold_duotone/tag-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tag-price.svg b/assets/icons/bold_duotone/tag-price.svg index 8be837c1..3a4caa90 100644 --- a/assets/icons/bold_duotone/tag-price.svg +++ b/assets/icons/bold_duotone/tag-price.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tag.svg b/assets/icons/bold_duotone/tag.svg index 0c83edca..a9ec1f22 100644 --- a/assets/icons/bold_duotone/tag.svg +++ b/assets/icons/bold_duotone/tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/target.svg b/assets/icons/bold_duotone/target.svg index 23b7d6da..2c657627 100644 --- a/assets/icons/bold_duotone/target.svg +++ b/assets/icons/bold_duotone/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tea-cup.svg b/assets/icons/bold_duotone/tea-cup.svg index 76a664f6..7f67c29e 100644 --- a/assets/icons/bold_duotone/tea-cup.svg +++ b/assets/icons/bold_duotone/tea-cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/telescope.svg b/assets/icons/bold_duotone/telescope.svg index 479bdc41..af8d389c 100644 --- a/assets/icons/bold_duotone/telescope.svg +++ b/assets/icons/bold_duotone/telescope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/temperature.svg b/assets/icons/bold_duotone/temperature.svg index b6aed29b..0b5ee507 100644 --- a/assets/icons/bold_duotone/temperature.svg +++ b/assets/icons/bold_duotone/temperature.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tennis-2.svg b/assets/icons/bold_duotone/tennis-2.svg index 6f3517a0..9768a2c4 100644 --- a/assets/icons/bold_duotone/tennis-2.svg +++ b/assets/icons/bold_duotone/tennis-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tennis.svg b/assets/icons/bold_duotone/tennis.svg index 3aac6fc0..42e297b3 100644 --- a/assets/icons/bold_duotone/tennis.svg +++ b/assets/icons/bold_duotone/tennis.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/test-tube-minimalistic.svg b/assets/icons/bold_duotone/test-tube-minimalistic.svg index d0bb09ae..84d6e6f4 100644 --- a/assets/icons/bold_duotone/test-tube-minimalistic.svg +++ b/assets/icons/bold_duotone/test-tube-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/test-tube.svg b/assets/icons/bold_duotone/test-tube.svg index 0160e4dd..f409daa9 100644 --- a/assets/icons/bold_duotone/test-tube.svg +++ b/assets/icons/bold_duotone/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-bold-circle.svg b/assets/icons/bold_duotone/text-bold-circle.svg index 9301c26c..76d433c8 100644 --- a/assets/icons/bold_duotone/text-bold-circle.svg +++ b/assets/icons/bold_duotone/text-bold-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-bold-square.svg b/assets/icons/bold_duotone/text-bold-square.svg index 58eca7bc..111d96a3 100644 --- a/assets/icons/bold_duotone/text-bold-square.svg +++ b/assets/icons/bold_duotone/text-bold-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-bold.svg b/assets/icons/bold_duotone/text-bold.svg index a4f62713..eb22ada3 100644 --- a/assets/icons/bold_duotone/text-bold.svg +++ b/assets/icons/bold_duotone/text-bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-circle.svg b/assets/icons/bold_duotone/text-circle.svg index 16fafcce..07ecb672 100644 --- a/assets/icons/bold_duotone/text-circle.svg +++ b/assets/icons/bold_duotone/text-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-cross-circle.svg b/assets/icons/bold_duotone/text-cross-circle.svg index 9c3e686d..31329abe 100644 --- a/assets/icons/bold_duotone/text-cross-circle.svg +++ b/assets/icons/bold_duotone/text-cross-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-cross-square.svg b/assets/icons/bold_duotone/text-cross-square.svg index c213f65c..82b54f41 100644 --- a/assets/icons/bold_duotone/text-cross-square.svg +++ b/assets/icons/bold_duotone/text-cross-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-cross.svg b/assets/icons/bold_duotone/text-cross.svg index 95cbb7dd..869b632e 100644 --- a/assets/icons/bold_duotone/text-cross.svg +++ b/assets/icons/bold_duotone/text-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-field-focus.svg b/assets/icons/bold_duotone/text-field-focus.svg index f3b08bc8..99c0789f 100644 --- a/assets/icons/bold_duotone/text-field-focus.svg +++ b/assets/icons/bold_duotone/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-field.svg b/assets/icons/bold_duotone/text-field.svg index 1ba8cb8f..1147850f 100644 --- a/assets/icons/bold_duotone/text-field.svg +++ b/assets/icons/bold_duotone/text-field.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-format.svg b/assets/icons/bold_duotone/text-format.svg new file mode 100644 index 00000000..4b5155e4 --- /dev/null +++ b/assets/icons/bold_duotone/text-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-italic-circle.svg b/assets/icons/bold_duotone/text-italic-circle.svg index bf2a759a..a4728bf8 100644 --- a/assets/icons/bold_duotone/text-italic-circle.svg +++ b/assets/icons/bold_duotone/text-italic-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-italic-square.svg b/assets/icons/bold_duotone/text-italic-square.svg index bc3124ca..76af47db 100644 --- a/assets/icons/bold_duotone/text-italic-square.svg +++ b/assets/icons/bold_duotone/text-italic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-italic.svg b/assets/icons/bold_duotone/text-italic.svg index 71f122ea..05b6508e 100644 --- a/assets/icons/bold_duotone/text-italic.svg +++ b/assets/icons/bold_duotone/text-italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-selection.svg b/assets/icons/bold_duotone/text-selection.svg index 96269880..7009b6ec 100644 --- a/assets/icons/bold_duotone/text-selection.svg +++ b/assets/icons/bold_duotone/text-selection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-square-2.svg b/assets/icons/bold_duotone/text-square-2.svg index 432710b2..ecf10dc4 100644 --- a/assets/icons/bold_duotone/text-square-2.svg +++ b/assets/icons/bold_duotone/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-square.svg b/assets/icons/bold_duotone/text-square.svg index 6999f266..58ed8729 100644 --- a/assets/icons/bold_duotone/text-square.svg +++ b/assets/icons/bold_duotone/text-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-underline-circle.svg b/assets/icons/bold_duotone/text-underline-circle.svg index 68acab7e..9602d0fe 100644 --- a/assets/icons/bold_duotone/text-underline-circle.svg +++ b/assets/icons/bold_duotone/text-underline-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-underline-cross.svg b/assets/icons/bold_duotone/text-underline-cross.svg index c68a5dda..ced5ec64 100644 --- a/assets/icons/bold_duotone/text-underline-cross.svg +++ b/assets/icons/bold_duotone/text-underline-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text-underline.svg b/assets/icons/bold_duotone/text-underline.svg index ece2be59..c69ac932 100644 --- a/assets/icons/bold_duotone/text-underline.svg +++ b/assets/icons/bold_duotone/text-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/text.svg b/assets/icons/bold_duotone/text.svg deleted file mode 100644 index 50891aa0..00000000 --- a/assets/icons/bold_duotone/text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/thermometer.svg b/assets/icons/bold_duotone/thermometer.svg index 9f2c9088..202a6345 100644 --- a/assets/icons/bold_duotone/thermometer.svg +++ b/assets/icons/bold_duotone/thermometer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/three-squares.svg b/assets/icons/bold_duotone/three-squares.svg index 5c494683..c5b6ee22 100644 --- a/assets/icons/bold_duotone/three-squares.svg +++ b/assets/icons/bold_duotone/three-squares.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ticker-star.svg b/assets/icons/bold_duotone/ticker-star.svg index 4b67e912..ac9821e1 100644 --- a/assets/icons/bold_duotone/ticker-star.svg +++ b/assets/icons/bold_duotone/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ticket-sale.svg b/assets/icons/bold_duotone/ticket-sale.svg index 0bdb2ff9..d376eaa9 100644 --- a/assets/icons/bold_duotone/ticket-sale.svg +++ b/assets/icons/bold_duotone/ticket-sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ticket.svg b/assets/icons/bold_duotone/ticket.svg index 0c19f55c..d3a760a2 100644 --- a/assets/icons/bold_duotone/ticket.svg +++ b/assets/icons/bold_duotone/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/to-pip.svg b/assets/icons/bold_duotone/to-pip.svg index 0595bcea..0c2c7bbe 100644 --- a/assets/icons/bold_duotone/to-pip.svg +++ b/assets/icons/bold_duotone/to-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tornado-small.svg b/assets/icons/bold_duotone/tornado-small.svg index 836e92f2..2bd62772 100644 --- a/assets/icons/bold_duotone/tornado-small.svg +++ b/assets/icons/bold_duotone/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tornado.svg b/assets/icons/bold_duotone/tornado.svg index 4173cca2..e8fc1e1e 100644 --- a/assets/icons/bold_duotone/tornado.svg +++ b/assets/icons/bold_duotone/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/traffic-economy.svg b/assets/icons/bold_duotone/traffic-economy.svg index d2ec9aca..3e8c61f8 100644 --- a/assets/icons/bold_duotone/traffic-economy.svg +++ b/assets/icons/bold_duotone/traffic-economy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/traffic.svg b/assets/icons/bold_duotone/traffic.svg index 82ec9855..69fd082f 100644 --- a/assets/icons/bold_duotone/traffic.svg +++ b/assets/icons/bold_duotone/traffic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tram.svg b/assets/icons/bold_duotone/tram.svg index 1785b302..6638ea50 100644 --- a/assets/icons/bold_duotone/tram.svg +++ b/assets/icons/bold_duotone/tram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/transfer-horizontal.svg b/assets/icons/bold_duotone/transfer-horizontal.svg index 4172af83..c1bc678a 100644 --- a/assets/icons/bold_duotone/transfer-horizontal.svg +++ b/assets/icons/bold_duotone/transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/transfer-vertical.svg b/assets/icons/bold_duotone/transfer-vertical.svg index ab32ff9e..77ebd44d 100644 --- a/assets/icons/bold_duotone/transfer-vertical.svg +++ b/assets/icons/bold_duotone/transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/translation-2.svg b/assets/icons/bold_duotone/translation-2.svg index c52a33d4..b8c94cd2 100644 --- a/assets/icons/bold_duotone/translation-2.svg +++ b/assets/icons/bold_duotone/translation-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/translation.svg b/assets/icons/bold_duotone/translation.svg index c6705f6c..9fc17572 100644 --- a/assets/icons/bold_duotone/translation.svg +++ b/assets/icons/bold_duotone/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/transmission-circle.svg b/assets/icons/bold_duotone/transmission-circle.svg index aa699ed9..9023c7de 100644 --- a/assets/icons/bold_duotone/transmission-circle.svg +++ b/assets/icons/bold_duotone/transmission-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/transmission-square.svg b/assets/icons/bold_duotone/transmission-square.svg index 71c03d1b..4702e616 100644 --- a/assets/icons/bold_duotone/transmission-square.svg +++ b/assets/icons/bold_duotone/transmission-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/transmission.svg b/assets/icons/bold_duotone/transmission.svg index b5948209..17ec4ebe 100644 --- a/assets/icons/bold_duotone/transmission.svg +++ b/assets/icons/bold_duotone/transmission.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/trash-bin-2.svg b/assets/icons/bold_duotone/trash-bin-2.svg index dfe6c237..b7ec37a0 100644 --- a/assets/icons/bold_duotone/trash-bin-2.svg +++ b/assets/icons/bold_duotone/trash-bin-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/trash-bin-minimalistic-2.svg b/assets/icons/bold_duotone/trash-bin-minimalistic-2.svg index 4317c4b3..3fe5a87d 100644 --- a/assets/icons/bold_duotone/trash-bin-minimalistic-2.svg +++ b/assets/icons/bold_duotone/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/trash-bin-minimalistic.svg b/assets/icons/bold_duotone/trash-bin-minimalistic.svg index a2fdc9f8..f758dddf 100644 --- a/assets/icons/bold_duotone/trash-bin-minimalistic.svg +++ b/assets/icons/bold_duotone/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/trash-bin-trash.svg b/assets/icons/bold_duotone/trash-bin-trash.svg index a1512c3d..c6fd0971 100644 --- a/assets/icons/bold_duotone/trash-bin-trash.svg +++ b/assets/icons/bold_duotone/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/treadmill-round.svg b/assets/icons/bold_duotone/treadmill-round.svg index a3643cc1..1bf20e12 100644 --- a/assets/icons/bold_duotone/treadmill-round.svg +++ b/assets/icons/bold_duotone/treadmill-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/treadmill.svg b/assets/icons/bold_duotone/treadmill.svg index 317dcb03..8752c8d6 100644 --- a/assets/icons/bold_duotone/treadmill.svg +++ b/assets/icons/bold_duotone/treadmill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning-2.svg b/assets/icons/bold_duotone/tuning-2.svg index 9c334c28..d2a2e237 100644 --- a/assets/icons/bold_duotone/tuning-2.svg +++ b/assets/icons/bold_duotone/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning-3.svg b/assets/icons/bold_duotone/tuning-3.svg index 49deea6d..68641af9 100644 --- a/assets/icons/bold_duotone/tuning-3.svg +++ b/assets/icons/bold_duotone/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning-4.svg b/assets/icons/bold_duotone/tuning-4.svg index 92a4c94f..fc8fb290 100644 --- a/assets/icons/bold_duotone/tuning-4.svg +++ b/assets/icons/bold_duotone/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning-square-2.svg b/assets/icons/bold_duotone/tuning-square-2.svg index 80356bb3..7243d89a 100644 --- a/assets/icons/bold_duotone/tuning-square-2.svg +++ b/assets/icons/bold_duotone/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning-square.svg b/assets/icons/bold_duotone/tuning-square.svg index 99a29913..d757aa14 100644 --- a/assets/icons/bold_duotone/tuning-square.svg +++ b/assets/icons/bold_duotone/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tuning.svg b/assets/icons/bold_duotone/tuning.svg index 6a92647a..f193f974 100644 --- a/assets/icons/bold_duotone/tuning.svg +++ b/assets/icons/bold_duotone/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/turntable-minimalistic.svg b/assets/icons/bold_duotone/turntable-minimalistic.svg index 9c7c7b86..9da15775 100644 --- a/assets/icons/bold_duotone/turntable-minimalistic.svg +++ b/assets/icons/bold_duotone/turntable-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/turntable-music-note.svg b/assets/icons/bold_duotone/turntable-music-note.svg index 1b9f0ad9..7c508392 100644 --- a/assets/icons/bold_duotone/turntable-music-note.svg +++ b/assets/icons/bold_duotone/turntable-music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/turntable.svg b/assets/icons/bold_duotone/turntable.svg index 341ce2f8..bc0c07c0 100644 --- a/assets/icons/bold_duotone/turntable.svg +++ b/assets/icons/bold_duotone/turntable.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/tv.svg b/assets/icons/bold_duotone/tv.svg index 600556b2..ccea1490 100644 --- a/assets/icons/bold_duotone/tv.svg +++ b/assets/icons/bold_duotone/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ufo-2.svg b/assets/icons/bold_duotone/ufo-2.svg index 28970ea4..52e0d575 100644 --- a/assets/icons/bold_duotone/ufo-2.svg +++ b/assets/icons/bold_duotone/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ufo-3.svg b/assets/icons/bold_duotone/ufo-3.svg index b905c7f5..7e887db9 100644 --- a/assets/icons/bold_duotone/ufo-3.svg +++ b/assets/icons/bold_duotone/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/ufo.svg b/assets/icons/bold_duotone/ufo.svg index 657b62c6..04117515 100644 --- a/assets/icons/bold_duotone/ufo.svg +++ b/assets/icons/bold_duotone/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/umbrella.svg b/assets/icons/bold_duotone/umbrella.svg index 76915f3d..4139b22d 100644 --- a/assets/icons/bold_duotone/umbrella.svg +++ b/assets/icons/bold_duotone/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-left-round-square.svg b/assets/icons/bold_duotone/undo-left-round-square.svg index 2ab01895..05a89916 100644 --- a/assets/icons/bold_duotone/undo-left-round-square.svg +++ b/assets/icons/bold_duotone/undo-left-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-left-round.svg b/assets/icons/bold_duotone/undo-left-round.svg index bc730c4e..809bf676 100644 --- a/assets/icons/bold_duotone/undo-left-round.svg +++ b/assets/icons/bold_duotone/undo-left-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-left-square.svg b/assets/icons/bold_duotone/undo-left-square.svg index edff383c..afd17b99 100644 --- a/assets/icons/bold_duotone/undo-left-square.svg +++ b/assets/icons/bold_duotone/undo-left-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-left.svg b/assets/icons/bold_duotone/undo-left.svg index 5ce18f5a..764469ab 100644 --- a/assets/icons/bold_duotone/undo-left.svg +++ b/assets/icons/bold_duotone/undo-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-right-round-square.svg b/assets/icons/bold_duotone/undo-right-round-square.svg index 60aa5985..dd7973f9 100644 --- a/assets/icons/bold_duotone/undo-right-round-square.svg +++ b/assets/icons/bold_duotone/undo-right-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-right-round.svg b/assets/icons/bold_duotone/undo-right-round.svg index 73a076e2..7f69ebbe 100644 --- a/assets/icons/bold_duotone/undo-right-round.svg +++ b/assets/icons/bold_duotone/undo-right-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-right-square.svg b/assets/icons/bold_duotone/undo-right-square.svg index f74ee401..7d811a83 100644 --- a/assets/icons/bold_duotone/undo-right-square.svg +++ b/assets/icons/bold_duotone/undo-right-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/undo-right.svg b/assets/icons/bold_duotone/undo-right.svg index a0bfc89a..4d14a2e8 100644 --- a/assets/icons/bold_duotone/undo-right.svg +++ b/assets/icons/bold_duotone/undo-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/unlink-minimalistic.svg b/assets/icons/bold_duotone/unlink-minimalistic.svg new file mode 100644 index 00000000..0ca8fdc0 --- /dev/null +++ b/assets/icons/bold_duotone/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/unlink.svg b/assets/icons/bold_duotone/unlink.svg new file mode 100644 index 00000000..a2852d9d --- /dev/null +++ b/assets/icons/bold_duotone/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/unread.svg b/assets/icons/bold_duotone/unread.svg index 141fec01..0dc4a5a9 100644 --- a/assets/icons/bold_duotone/unread.svg +++ b/assets/icons/bold_duotone/unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/upload-square.svg b/assets/icons/bold_duotone/upload-square.svg index f48fbe62..6a5c981e 100644 --- a/assets/icons/bold_duotone/upload-square.svg +++ b/assets/icons/bold_duotone/upload-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/upload-track-2.svg b/assets/icons/bold_duotone/upload-track-2.svg index 7b9c6f5d..24eaba89 100644 --- a/assets/icons/bold_duotone/upload-track-2.svg +++ b/assets/icons/bold_duotone/upload-track-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/upload-track.svg b/assets/icons/bold_duotone/upload-track.svg index b6ca5ce4..fa50ff34 100644 --- a/assets/icons/bold_duotone/upload-track.svg +++ b/assets/icons/bold_duotone/upload-track.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/upload-twice-square.svg b/assets/icons/bold_duotone/upload-twice-square.svg index 9af90d2f..526699d6 100644 --- a/assets/icons/bold_duotone/upload-twice-square.svg +++ b/assets/icons/bold_duotone/upload-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/upload.svg b/assets/icons/bold_duotone/upload.svg index c57c7dbf..3a075848 100644 --- a/assets/icons/bold_duotone/upload.svg +++ b/assets/icons/bold_duotone/upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/usb-circle.svg b/assets/icons/bold_duotone/usb-circle.svg index 81e5fa02..9673a610 100644 --- a/assets/icons/bold_duotone/usb-circle.svg +++ b/assets/icons/bold_duotone/usb-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/usb-square.svg b/assets/icons/bold_duotone/usb-square.svg index 9331936a..200afe46 100644 --- a/assets/icons/bold_duotone/usb-square.svg +++ b/assets/icons/bold_duotone/usb-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/usb.svg b/assets/icons/bold_duotone/usb.svg index d8e39a1a..09c7f3e5 100644 --- a/assets/icons/bold_duotone/usb.svg +++ b/assets/icons/bold_duotone/usb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-block-rounded.svg b/assets/icons/bold_duotone/user-block-rounded.svg index e9fe55c7..c9869038 100644 --- a/assets/icons/bold_duotone/user-block-rounded.svg +++ b/assets/icons/bold_duotone/user-block-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-block.svg b/assets/icons/bold_duotone/user-block.svg index 50fa804c..5d2c7ea0 100644 --- a/assets/icons/bold_duotone/user-block.svg +++ b/assets/icons/bold_duotone/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-check-rounded.svg b/assets/icons/bold_duotone/user-check-rounded.svg index cb9b44c1..1451118a 100644 --- a/assets/icons/bold_duotone/user-check-rounded.svg +++ b/assets/icons/bold_duotone/user-check-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-check.svg b/assets/icons/bold_duotone/user-check.svg index d716b4fd..4f855578 100644 --- a/assets/icons/bold_duotone/user-check.svg +++ b/assets/icons/bold_duotone/user-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-circle.svg b/assets/icons/bold_duotone/user-circle.svg index d4daba67..9554c043 100644 --- a/assets/icons/bold_duotone/user-circle.svg +++ b/assets/icons/bold_duotone/user-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-cross-rounded.svg b/assets/icons/bold_duotone/user-cross-rounded.svg index 7efb12b8..497f5001 100644 --- a/assets/icons/bold_duotone/user-cross-rounded.svg +++ b/assets/icons/bold_duotone/user-cross-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-cross.svg b/assets/icons/bold_duotone/user-cross.svg index b7164fb3..1d4cea37 100644 --- a/assets/icons/bold_duotone/user-cross.svg +++ b/assets/icons/bold_duotone/user-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-hand-up.svg b/assets/icons/bold_duotone/user-hand-up.svg index 9307cba6..54c9fa80 100644 --- a/assets/icons/bold_duotone/user-hand-up.svg +++ b/assets/icons/bold_duotone/user-hand-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-hands.svg b/assets/icons/bold_duotone/user-hands.svg index dc1cf56c..a915db55 100644 --- a/assets/icons/bold_duotone/user-hands.svg +++ b/assets/icons/bold_duotone/user-hands.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-heart-rounded.svg b/assets/icons/bold_duotone/user-heart-rounded.svg index 9397c7a4..ef299313 100644 --- a/assets/icons/bold_duotone/user-heart-rounded.svg +++ b/assets/icons/bold_duotone/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-heart.svg b/assets/icons/bold_duotone/user-heart.svg index 41d4f724..603b378e 100644 --- a/assets/icons/bold_duotone/user-heart.svg +++ b/assets/icons/bold_duotone/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-id.svg b/assets/icons/bold_duotone/user-id.svg index d7f96306..30e45f07 100644 --- a/assets/icons/bold_duotone/user-id.svg +++ b/assets/icons/bold_duotone/user-id.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-minus-rounded.svg b/assets/icons/bold_duotone/user-minus-rounded.svg index b4be0d97..d3dc1d1b 100644 --- a/assets/icons/bold_duotone/user-minus-rounded.svg +++ b/assets/icons/bold_duotone/user-minus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-minus.svg b/assets/icons/bold_duotone/user-minus.svg index 174c7dc1..c62c7644 100644 --- a/assets/icons/bold_duotone/user-minus.svg +++ b/assets/icons/bold_duotone/user-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-plus-rounded.svg b/assets/icons/bold_duotone/user-plus-rounded.svg index 432e0052..870aa4f0 100644 --- a/assets/icons/bold_duotone/user-plus-rounded.svg +++ b/assets/icons/bold_duotone/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-plus.svg b/assets/icons/bold_duotone/user-plus.svg index ec8fb599..3064667a 100644 --- a/assets/icons/bold_duotone/user-plus.svg +++ b/assets/icons/bold_duotone/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-rounded.svg b/assets/icons/bold_duotone/user-rounded.svg index da3c1210..58a9fa87 100644 --- a/assets/icons/bold_duotone/user-rounded.svg +++ b/assets/icons/bold_duotone/user-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-speak-rounded.svg b/assets/icons/bold_duotone/user-speak-rounded.svg index 9c0caa05..b9c59dae 100644 --- a/assets/icons/bold_duotone/user-speak-rounded.svg +++ b/assets/icons/bold_duotone/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user-speak.svg b/assets/icons/bold_duotone/user-speak.svg index 03f33faf..2147d07e 100644 --- a/assets/icons/bold_duotone/user-speak.svg +++ b/assets/icons/bold_duotone/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/user.svg b/assets/icons/bold_duotone/user.svg index b784ba98..9ef368b3 100644 --- a/assets/icons/bold_duotone/user.svg +++ b/assets/icons/bold_duotone/user.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/users-group-rounded.svg b/assets/icons/bold_duotone/users-group-rounded.svg index 6bda4ee6..a45a4ed2 100644 --- a/assets/icons/bold_duotone/users-group-rounded.svg +++ b/assets/icons/bold_duotone/users-group-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/users-group-two-rounded.svg b/assets/icons/bold_duotone/users-group-two-rounded.svg index 203f53fe..c8c52b24 100644 --- a/assets/icons/bold_duotone/users-group-two-rounded.svg +++ b/assets/icons/bold_duotone/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/vanity.svg b/assets/icons/bold_duotone/vanity.svg new file mode 100644 index 00000000..ec8b5e3c --- /dev/null +++ b/assets/icons/bold_duotone/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/verified-check.svg b/assets/icons/bold_duotone/verified-check.svg index 0327f1b9..89d1f5c0 100644 --- a/assets/icons/bold_duotone/verified-check.svg +++ b/assets/icons/bold_duotone/verified-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-2.svg b/assets/icons/bold_duotone/video-frame-2.svg index 0ed88474..ccab20bc 100644 --- a/assets/icons/bold_duotone/video-frame-2.svg +++ b/assets/icons/bold_duotone/video-frame-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-cut-2.svg b/assets/icons/bold_duotone/video-frame-cut-2.svg index b3ba35c5..0ddff5ec 100644 --- a/assets/icons/bold_duotone/video-frame-cut-2.svg +++ b/assets/icons/bold_duotone/video-frame-cut-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-cut.svg b/assets/icons/bold_duotone/video-frame-cut.svg index 1fcedab5..3f940979 100644 --- a/assets/icons/bold_duotone/video-frame-cut.svg +++ b/assets/icons/bold_duotone/video-frame-cut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-play-horizontal.svg b/assets/icons/bold_duotone/video-frame-play-horizontal.svg index ddc92d06..e2c3f54b 100644 --- a/assets/icons/bold_duotone/video-frame-play-horizontal.svg +++ b/assets/icons/bold_duotone/video-frame-play-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-play-vertical.svg b/assets/icons/bold_duotone/video-frame-play-vertical.svg index 9fed866e..9862cefc 100644 --- a/assets/icons/bold_duotone/video-frame-play-vertical.svg +++ b/assets/icons/bold_duotone/video-frame-play-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame-replace.svg b/assets/icons/bold_duotone/video-frame-replace.svg index 544bbb5d..f6fade18 100644 --- a/assets/icons/bold_duotone/video-frame-replace.svg +++ b/assets/icons/bold_duotone/video-frame-replace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-frame.svg b/assets/icons/bold_duotone/video-frame.svg index ec382aad..12edd188 100644 --- a/assets/icons/bold_duotone/video-frame.svg +++ b/assets/icons/bold_duotone/video-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/video-library.svg b/assets/icons/bold_duotone/video-library.svg index 86c50af8..b34bdf0e 100644 --- a/assets/icons/bold_duotone/video-library.svg +++ b/assets/icons/bold_duotone/video-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/videocamera-add.svg b/assets/icons/bold_duotone/videocamera-add.svg index 391de8e8..cb20aa24 100644 --- a/assets/icons/bold_duotone/videocamera-add.svg +++ b/assets/icons/bold_duotone/videocamera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/videocamera-record.svg b/assets/icons/bold_duotone/videocamera-record.svg index 4e238863..544d0c6b 100644 --- a/assets/icons/bold_duotone/videocamera-record.svg +++ b/assets/icons/bold_duotone/videocamera-record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/videocamera.svg b/assets/icons/bold_duotone/videocamera.svg index 29b90515..6d417269 100644 --- a/assets/icons/bold_duotone/videocamera.svg +++ b/assets/icons/bold_duotone/videocamera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/vinyl-record.svg b/assets/icons/bold_duotone/vinyl-record.svg index 57cdfb42..ce2d99b8 100644 --- a/assets/icons/bold_duotone/vinyl-record.svg +++ b/assets/icons/bold_duotone/vinyl-record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/vinyl.svg b/assets/icons/bold_duotone/vinyl.svg index e56eb4dd..31cffc02 100644 --- a/assets/icons/bold_duotone/vinyl.svg +++ b/assets/icons/bold_duotone/vinyl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/virus.svg b/assets/icons/bold_duotone/virus.svg index e6c6b46f..0cbb36bb 100644 --- a/assets/icons/bold_duotone/virus.svg +++ b/assets/icons/bold_duotone/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volleyball-2.svg b/assets/icons/bold_duotone/volleyball-2.svg index 93f9fec5..f04a355a 100644 --- a/assets/icons/bold_duotone/volleyball-2.svg +++ b/assets/icons/bold_duotone/volleyball-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volleyball.svg b/assets/icons/bold_duotone/volleyball.svg index e21c0110..99a658e2 100644 --- a/assets/icons/bold_duotone/volleyball.svg +++ b/assets/icons/bold_duotone/volleyball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volume-cross.svg b/assets/icons/bold_duotone/volume-cross.svg index 2cc790b5..f8fd7cb0 100644 --- a/assets/icons/bold_duotone/volume-cross.svg +++ b/assets/icons/bold_duotone/volume-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volume-knob.svg b/assets/icons/bold_duotone/volume-knob.svg index 415bdc66..87ee4547 100644 --- a/assets/icons/bold_duotone/volume-knob.svg +++ b/assets/icons/bold_duotone/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volume-loud.svg b/assets/icons/bold_duotone/volume-loud.svg index 2c5f882d..23a55b53 100644 --- a/assets/icons/bold_duotone/volume-loud.svg +++ b/assets/icons/bold_duotone/volume-loud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volume-small.svg b/assets/icons/bold_duotone/volume-small.svg index 01a83f2a..2b40b284 100644 --- a/assets/icons/bold_duotone/volume-small.svg +++ b/assets/icons/bold_duotone/volume-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/volume.svg b/assets/icons/bold_duotone/volume.svg index 52de34bc..b0bca159 100644 --- a/assets/icons/bold_duotone/volume.svg +++ b/assets/icons/bold_duotone/volume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wad-of-money.svg b/assets/icons/bold_duotone/wad-of-money.svg deleted file mode 100644 index f90eaab7..00000000 --- a/assets/icons/bold_duotone/wad-of-money.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/walking-round.svg b/assets/icons/bold_duotone/walking-round.svg index 3940c176..46ba514a 100644 --- a/assets/icons/bold_duotone/walking-round.svg +++ b/assets/icons/bold_duotone/walking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/walking.svg b/assets/icons/bold_duotone/walking.svg index 82770ae5..5b74013d 100644 --- a/assets/icons/bold_duotone/walking.svg +++ b/assets/icons/bold_duotone/walking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wallet-2.svg b/assets/icons/bold_duotone/wallet-2.svg index 54800849..d0937724 100644 --- a/assets/icons/bold_duotone/wallet-2.svg +++ b/assets/icons/bold_duotone/wallet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wallet-money.svg b/assets/icons/bold_duotone/wallet-money.svg index 3e9d877a..59c21055 100644 --- a/assets/icons/bold_duotone/wallet-money.svg +++ b/assets/icons/bold_duotone/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wallet.svg b/assets/icons/bold_duotone/wallet.svg index dc6d128d..f0086c01 100644 --- a/assets/icons/bold_duotone/wallet.svg +++ b/assets/icons/bold_duotone/wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wallpaper.svg b/assets/icons/bold_duotone/wallpaper.svg index 4d1b9188..7518b748 100644 --- a/assets/icons/bold_duotone/wallpaper.svg +++ b/assets/icons/bold_duotone/wallpaper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/washing-machine-minimalistic.svg b/assets/icons/bold_duotone/washing-machine-minimalistic.svg index 4688f02c..9e54c1c9 100644 --- a/assets/icons/bold_duotone/washing-machine-minimalistic.svg +++ b/assets/icons/bold_duotone/washing-machine-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/washing-machine.svg b/assets/icons/bold_duotone/washing-machine.svg index 1e74baca..fffda55d 100644 --- a/assets/icons/bold_duotone/washing-machine.svg +++ b/assets/icons/bold_duotone/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/watch-round.svg b/assets/icons/bold_duotone/watch-round.svg index 1225b98d..b95ab580 100644 --- a/assets/icons/bold_duotone/watch-round.svg +++ b/assets/icons/bold_duotone/watch-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/watch-square-minimalistic-charge.svg b/assets/icons/bold_duotone/watch-square-minimalistic-charge.svg index cf51e71a..35468acf 100644 --- a/assets/icons/bold_duotone/watch-square-minimalistic-charge.svg +++ b/assets/icons/bold_duotone/watch-square-minimalistic-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/watch-square-minimalistic.svg b/assets/icons/bold_duotone/watch-square-minimalistic.svg index 45950a1b..5a371c93 100644 --- a/assets/icons/bold_duotone/watch-square-minimalistic.svg +++ b/assets/icons/bold_duotone/watch-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/watch-square.svg b/assets/icons/bold_duotone/watch-square.svg index 6bc42ff7..936ceec8 100644 --- a/assets/icons/bold_duotone/watch-square.svg +++ b/assets/icons/bold_duotone/watch-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/water-sun.svg b/assets/icons/bold_duotone/water-sun.svg index 8bd2f2d0..dc2d5172 100644 --- a/assets/icons/bold_duotone/water-sun.svg +++ b/assets/icons/bold_duotone/water-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/water.svg b/assets/icons/bold_duotone/water.svg index ebea7aa0..2b3e14cf 100644 --- a/assets/icons/bold_duotone/water.svg +++ b/assets/icons/bold_duotone/water.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/waterdrop.svg b/assets/icons/bold_duotone/waterdrop.svg index 26017002..ac438207 100644 --- a/assets/icons/bold_duotone/waterdrop.svg +++ b/assets/icons/bold_duotone/waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/waterdrops.svg b/assets/icons/bold_duotone/waterdrops.svg index 583a829e..578df757 100644 --- a/assets/icons/bold_duotone/waterdrops.svg +++ b/assets/icons/bold_duotone/waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/weigher.svg b/assets/icons/bold_duotone/weigher.svg deleted file mode 100644 index 32d7d3bd..00000000 --- a/assets/icons/bold_duotone/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/wheel-angle.svg b/assets/icons/bold_duotone/wheel-angle.svg index a0234211..d70ed475 100644 --- a/assets/icons/bold_duotone/wheel-angle.svg +++ b/assets/icons/bold_duotone/wheel-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wheel.svg b/assets/icons/bold_duotone/wheel.svg index c4b8d12b..7bce75fc 100644 --- a/assets/icons/bold_duotone/wheel.svg +++ b/assets/icons/bold_duotone/wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/whisk.svg b/assets/icons/bold_duotone/whisk.svg index a1d40ee7..4fa56e80 100644 --- a/assets/icons/bold_duotone/whisk.svg +++ b/assets/icons/bold_duotone/whisk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wi-fi-router-minimalistic.svg b/assets/icons/bold_duotone/wi-fi-router-minimalistic.svg index d3aa2986..5f393f1b 100644 --- a/assets/icons/bold_duotone/wi-fi-router-minimalistic.svg +++ b/assets/icons/bold_duotone/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wi-fi-router-round.svg b/assets/icons/bold_duotone/wi-fi-router-round.svg index 79fe2b86..e3c9c489 100644 --- a/assets/icons/bold_duotone/wi-fi-router-round.svg +++ b/assets/icons/bold_duotone/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wi-fi-router.svg b/assets/icons/bold_duotone/wi-fi-router.svg index ea53bc31..4f548385 100644 --- a/assets/icons/bold_duotone/wi-fi-router.svg +++ b/assets/icons/bold_duotone/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-2.svg b/assets/icons/bold_duotone/widget-2.svg index e8034f78..80243502 100644 --- a/assets/icons/bold_duotone/widget-2.svg +++ b/assets/icons/bold_duotone/widget-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-3.svg b/assets/icons/bold_duotone/widget-3.svg index 85ef3205..2f1aafe3 100644 --- a/assets/icons/bold_duotone/widget-3.svg +++ b/assets/icons/bold_duotone/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-4.svg b/assets/icons/bold_duotone/widget-4.svg index 869bdc82..bcd50ad7 100644 --- a/assets/icons/bold_duotone/widget-4.svg +++ b/assets/icons/bold_duotone/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-5.svg b/assets/icons/bold_duotone/widget-5.svg index a9639318..0304115d 100644 --- a/assets/icons/bold_duotone/widget-5.svg +++ b/assets/icons/bold_duotone/widget-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-6.svg b/assets/icons/bold_duotone/widget-6.svg index bec337ff..944b9f8e 100644 --- a/assets/icons/bold_duotone/widget-6.svg +++ b/assets/icons/bold_duotone/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget-add.svg b/assets/icons/bold_duotone/widget-add.svg index 5a38db11..2aaf08fc 100644 --- a/assets/icons/bold_duotone/widget-add.svg +++ b/assets/icons/bold_duotone/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/widget.svg b/assets/icons/bold_duotone/widget.svg index 93877dfb..10657dd8 100644 --- a/assets/icons/bold_duotone/widget.svg +++ b/assets/icons/bold_duotone/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/win-rar.svg b/assets/icons/bold_duotone/win-rar.svg new file mode 100644 index 00000000..0abc4f3d --- /dev/null +++ b/assets/icons/bold_duotone/win-rar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wind.svg b/assets/icons/bold_duotone/wind.svg index 701391fc..cbb453c4 100644 --- a/assets/icons/bold_duotone/wind.svg +++ b/assets/icons/bold_duotone/wind.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/window-frame.svg b/assets/icons/bold_duotone/window-frame.svg index 08881475..d437044a 100644 --- a/assets/icons/bold_duotone/window-frame.svg +++ b/assets/icons/bold_duotone/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wineglass-triangle.svg b/assets/icons/bold_duotone/wineglass-triangle.svg index fecd7828..c09e2e21 100644 --- a/assets/icons/bold_duotone/wineglass-triangle.svg +++ b/assets/icons/bold_duotone/wineglass-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/wineglass.svg b/assets/icons/bold_duotone/wineglass.svg index 2868cf18..539f535d 100644 --- a/assets/icons/bold_duotone/wineglass.svg +++ b/assets/icons/bold_duotone/wineglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/winrar.svg b/assets/icons/bold_duotone/winrar.svg deleted file mode 100644 index 7d2d1f73..00000000 --- a/assets/icons/bold_duotone/winrar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/bold_duotone/wireless-charge.svg b/assets/icons/bold_duotone/wireless-charge.svg index e1b0dc1f..36301e9d 100644 --- a/assets/icons/bold_duotone/wireless-charge.svg +++ b/assets/icons/bold_duotone/wireless-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/women.svg b/assets/icons/bold_duotone/women.svg index e924eaeb..2976e8f4 100644 --- a/assets/icons/bold_duotone/women.svg +++ b/assets/icons/bold_duotone/women.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/xxx.svg b/assets/icons/bold_duotone/xxx.svg index bb3f793e..a80cf89a 100644 --- a/assets/icons/bold_duotone/xxx.svg +++ b/assets/icons/bold_duotone/xxx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/bold_duotone/zip-file.svg b/assets/icons/bold_duotone/zip-file.svg index bfdfb91e..756864de 100644 --- a/assets/icons/bold_duotone/zip-file.svg +++ b/assets/icons/bold_duotone/zip-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/4k.svg b/assets/icons/broken/4k.svg deleted file mode 100644 index cd679053..00000000 --- a/assets/icons/broken/4k.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/accessibility.svg b/assets/icons/broken/accessibility.svg index 5c5f11b1..293b34eb 100644 --- a/assets/icons/broken/accessibility.svg +++ b/assets/icons/broken/accessibility.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/add-circle.svg b/assets/icons/broken/add-circle.svg index 130f6c31..c419a7be 100644 --- a/assets/icons/broken/add-circle.svg +++ b/assets/icons/broken/add-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/add-folder.svg b/assets/icons/broken/add-folder.svg index de3a5f8f..e2cce680 100644 --- a/assets/icons/broken/add-folder.svg +++ b/assets/icons/broken/add-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/add-square.svg b/assets/icons/broken/add-square.svg index c5539ec0..9fce85c9 100644 --- a/assets/icons/broken/add-square.svg +++ b/assets/icons/broken/add-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/adhesive-plaster-2.svg b/assets/icons/broken/adhesive-plaster-2.svg index bad480d6..fa4111da 100644 --- a/assets/icons/broken/adhesive-plaster-2.svg +++ b/assets/icons/broken/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/adhesive-plaster.svg b/assets/icons/broken/adhesive-plaster.svg index 8bf16708..5ad89b75 100644 --- a/assets/icons/broken/adhesive-plaster.svg +++ b/assets/icons/broken/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-case-charge.svg b/assets/icons/broken/airbuds-case-charge.svg index 73952e83..ea6387c6 100644 --- a/assets/icons/broken/airbuds-case-charge.svg +++ b/assets/icons/broken/airbuds-case-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-case-minimalistic.svg b/assets/icons/broken/airbuds-case-minimalistic.svg index 452ebc48..31aa6c66 100644 --- a/assets/icons/broken/airbuds-case-minimalistic.svg +++ b/assets/icons/broken/airbuds-case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-case-open.svg b/assets/icons/broken/airbuds-case-open.svg index 9d00dbc1..a08349e2 100644 --- a/assets/icons/broken/airbuds-case-open.svg +++ b/assets/icons/broken/airbuds-case-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-charge.svg b/assets/icons/broken/airbuds-charge.svg index c15a4e15..edff441a 100644 --- a/assets/icons/broken/airbuds-charge.svg +++ b/assets/icons/broken/airbuds-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-check.svg b/assets/icons/broken/airbuds-check.svg index 8f8c7580..6851799a 100644 --- a/assets/icons/broken/airbuds-check.svg +++ b/assets/icons/broken/airbuds-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-left.svg b/assets/icons/broken/airbuds-left.svg index 3371ef5f..b1e66b3c 100644 --- a/assets/icons/broken/airbuds-left.svg +++ b/assets/icons/broken/airbuds-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-remove.svg b/assets/icons/broken/airbuds-remove.svg index 5b450201..9121d766 100644 --- a/assets/icons/broken/airbuds-remove.svg +++ b/assets/icons/broken/airbuds-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds-right.svg b/assets/icons/broken/airbuds-right.svg index 217435a5..4864fb47 100644 --- a/assets/icons/broken/airbuds-right.svg +++ b/assets/icons/broken/airbuds-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/airbuds.svg b/assets/icons/broken/airbuds.svg index e5b83705..36421d5c 100644 --- a/assets/icons/broken/airbuds.svg +++ b/assets/icons/broken/airbuds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-add.svg b/assets/icons/broken/alarm-add.svg index 05244827..86d14509 100644 --- a/assets/icons/broken/alarm-add.svg +++ b/assets/icons/broken/alarm-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-pause.svg b/assets/icons/broken/alarm-pause.svg index 039e437a..735e9392 100644 --- a/assets/icons/broken/alarm-pause.svg +++ b/assets/icons/broken/alarm-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-play.svg b/assets/icons/broken/alarm-play.svg index a4c0f228..d44ab900 100644 --- a/assets/icons/broken/alarm-play.svg +++ b/assets/icons/broken/alarm-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-remove.svg b/assets/icons/broken/alarm-remove.svg index 2fc6f0b1..825be8b9 100644 --- a/assets/icons/broken/alarm-remove.svg +++ b/assets/icons/broken/alarm-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-sleep.svg b/assets/icons/broken/alarm-sleep.svg index 7182e57c..996874e3 100644 --- a/assets/icons/broken/alarm-sleep.svg +++ b/assets/icons/broken/alarm-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm-turn-off.svg b/assets/icons/broken/alarm-turn-off.svg index 7c478467..24adfd58 100644 --- a/assets/icons/broken/alarm-turn-off.svg +++ b/assets/icons/broken/alarm-turn-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/alarm.svg b/assets/icons/broken/alarm.svg index 32184270..f3ba78ed 100644 --- a/assets/icons/broken/alarm.svg +++ b/assets/icons/broken/alarm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/album.svg b/assets/icons/broken/album.svg index b7f91542..5e6c889f 100644 --- a/assets/icons/broken/album.svg +++ b/assets/icons/broken/album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-bottom.svg b/assets/icons/broken/align-bottom.svg index eac965a1..4c56e31e 100644 --- a/assets/icons/broken/align-bottom.svg +++ b/assets/icons/broken/align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-horizonta-spacing.svg b/assets/icons/broken/align-horizonta-spacing.svg deleted file mode 100644 index 567727ba..00000000 --- a/assets/icons/broken/align-horizonta-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/align-horizontal-center.svg b/assets/icons/broken/align-horizontal-center.svg index a6cb102f..1bc5682a 100644 --- a/assets/icons/broken/align-horizontal-center.svg +++ b/assets/icons/broken/align-horizontal-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-horizontal-spacing.svg b/assets/icons/broken/align-horizontal-spacing.svg new file mode 100644 index 00000000..ebf0b40f --- /dev/null +++ b/assets/icons/broken/align-horizontal-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/align-right.svg b/assets/icons/broken/align-right.svg index 5c712b5d..bf4818b8 100644 --- a/assets/icons/broken/align-right.svg +++ b/assets/icons/broken/align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-top.svg b/assets/icons/broken/align-top.svg index 10b0362f..4a7c5e39 100644 --- a/assets/icons/broken/align-top.svg +++ b/assets/icons/broken/align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-vertical-center.svg b/assets/icons/broken/align-vertical-center.svg index 4ef6df51..fc3c0a04 100644 --- a/assets/icons/broken/align-vertical-center.svg +++ b/assets/icons/broken/align-vertical-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/align-vertical-spacing.svg b/assets/icons/broken/align-vertical-spacing.svg index 72ddef29..5347dbc0 100644 --- a/assets/icons/broken/align-vertical-spacing.svg +++ b/assets/icons/broken/align-vertical-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive-check.svg b/assets/icons/broken/archive-check.svg index 09a07548..33ca1aab 100644 --- a/assets/icons/broken/archive-check.svg +++ b/assets/icons/broken/archive-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive-down-minimlistic.svg b/assets/icons/broken/archive-down-minimalistic.svg similarity index 92% rename from assets/icons/broken/archive-down-minimlistic.svg rename to assets/icons/broken/archive-down-minimalistic.svg index 00f7d07a..02e971f3 100644 --- a/assets/icons/broken/archive-down-minimlistic.svg +++ b/assets/icons/broken/archive-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive-down.svg b/assets/icons/broken/archive-down.svg index 4c313b0f..27004bd1 100644 --- a/assets/icons/broken/archive-down.svg +++ b/assets/icons/broken/archive-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive-up-minimlistic.svg b/assets/icons/broken/archive-up-minimalistic.svg similarity index 92% rename from assets/icons/broken/archive-up-minimlistic.svg rename to assets/icons/broken/archive-up-minimalistic.svg index 48b667d3..bbecf9f8 100644 --- a/assets/icons/broken/archive-up-minimlistic.svg +++ b/assets/icons/broken/archive-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive-up.svg b/assets/icons/broken/archive-up.svg index 589edfd4..f0525093 100644 --- a/assets/icons/broken/archive-up.svg +++ b/assets/icons/broken/archive-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/archive.svg b/assets/icons/broken/archive.svg index 7f525983..2017b356 100644 --- a/assets/icons/broken/archive.svg +++ b/assets/icons/broken/archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/armchair-2.svg b/assets/icons/broken/armchair-2.svg index 1ed55454..dbf2449e 100644 --- a/assets/icons/broken/armchair-2.svg +++ b/assets/icons/broken/armchair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/armchair.svg b/assets/icons/broken/armchair.svg index c4453168..aa613e9d 100644 --- a/assets/icons/broken/armchair.svg +++ b/assets/icons/broken/armchair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-down.svg b/assets/icons/broken/arrow-down.svg index 5d3e5cda..61f3b011 100644 --- a/assets/icons/broken/arrow-down.svg +++ b/assets/icons/broken/arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-left-down.svg b/assets/icons/broken/arrow-left-down.svg index 4bff2585..6c474626 100644 --- a/assets/icons/broken/arrow-left-down.svg +++ b/assets/icons/broken/arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-left-up.svg b/assets/icons/broken/arrow-left-up.svg index ce4ec847..2a7b9c35 100644 --- a/assets/icons/broken/arrow-left-up.svg +++ b/assets/icons/broken/arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-left.svg b/assets/icons/broken/arrow-left.svg index e9b31b12..af239831 100644 --- a/assets/icons/broken/arrow-left.svg +++ b/assets/icons/broken/arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-right-down.svg b/assets/icons/broken/arrow-right-down.svg index 979388ac..0f5dda8b 100644 --- a/assets/icons/broken/arrow-right-down.svg +++ b/assets/icons/broken/arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-right-up.svg b/assets/icons/broken/arrow-right-up.svg index da68e3ea..64020560 100644 --- a/assets/icons/broken/arrow-right-up.svg +++ b/assets/icons/broken/arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-right.svg b/assets/icons/broken/arrow-right.svg index 7a78e28d..9cd636d6 100644 --- a/assets/icons/broken/arrow-right.svg +++ b/assets/icons/broken/arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-to-down-left.svg b/assets/icons/broken/arrow-to-down-left.svg index 3fb1fd72..26ebe739 100644 --- a/assets/icons/broken/arrow-to-down-left.svg +++ b/assets/icons/broken/arrow-to-down-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-to-down-right.svg b/assets/icons/broken/arrow-to-down-right.svg index db849dab..cfe526f7 100644 --- a/assets/icons/broken/arrow-to-down-right.svg +++ b/assets/icons/broken/arrow-to-down-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-to-top-left.svg b/assets/icons/broken/arrow-to-top-left.svg index a76ec6b9..63874736 100644 --- a/assets/icons/broken/arrow-to-top-left.svg +++ b/assets/icons/broken/arrow-to-top-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-to-top-right.svg b/assets/icons/broken/arrow-to-top-right.svg index 50eaa9a7..687dbf8d 100644 --- a/assets/icons/broken/arrow-to-top-right.svg +++ b/assets/icons/broken/arrow-to-top-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/arrow-up.svg b/assets/icons/broken/arrow-up.svg index 48518d11..27880657 100644 --- a/assets/icons/broken/arrow-up.svg +++ b/assets/icons/broken/arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/asteroid.svg b/assets/icons/broken/asteroid.svg index 58327b70..4f7d1556 100644 --- a/assets/icons/broken/asteroid.svg +++ b/assets/icons/broken/asteroid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/augmented-reality.svg b/assets/icons/broken/augmented-reality.svg index bea4bba4..90e6f3cb 100644 --- a/assets/icons/broken/augmented-reality.svg +++ b/assets/icons/broken/augmented-reality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/backpack.svg b/assets/icons/broken/backpack.svg index 0ac9b6ea..33adb547 100644 --- a/assets/icons/broken/backpack.svg +++ b/assets/icons/broken/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/backspace.svg b/assets/icons/broken/backspace.svg index 994d7e77..e53c920d 100644 --- a/assets/icons/broken/backspace.svg +++ b/assets/icons/broken/backspace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bacteria.svg b/assets/icons/broken/bacteria.svg index a1df835b..02e940ce 100644 --- a/assets/icons/broken/bacteria.svg +++ b/assets/icons/broken/bacteria.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-2.svg b/assets/icons/broken/bag-2.svg index ee46c6f4..26aec0e2 100644 --- a/assets/icons/broken/bag-2.svg +++ b/assets/icons/broken/bag-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-4.svg b/assets/icons/broken/bag-4.svg index bd7fdc1c..d727090a 100644 --- a/assets/icons/broken/bag-4.svg +++ b/assets/icons/broken/bag-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-5.svg b/assets/icons/broken/bag-5.svg index 2bfcdd10..c274f7b6 100644 --- a/assets/icons/broken/bag-5.svg +++ b/assets/icons/broken/bag-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-check.svg b/assets/icons/broken/bag-check.svg index 2d72d3ad..0bb2bd3c 100644 --- a/assets/icons/broken/bag-check.svg +++ b/assets/icons/broken/bag-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-cross.svg b/assets/icons/broken/bag-cross.svg index f6f1c195..13e3b8a4 100644 --- a/assets/icons/broken/bag-cross.svg +++ b/assets/icons/broken/bag-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-heart.svg b/assets/icons/broken/bag-heart.svg index 8a4177aa..99ce13cf 100644 --- a/assets/icons/broken/bag-heart.svg +++ b/assets/icons/broken/bag-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-music-2.svg b/assets/icons/broken/bag-music-2.svg index 3c672fbd..207cd3cd 100644 --- a/assets/icons/broken/bag-music-2.svg +++ b/assets/icons/broken/bag-music-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-music.svg b/assets/icons/broken/bag-music.svg index 8a83417a..257aec43 100644 --- a/assets/icons/broken/bag-music.svg +++ b/assets/icons/broken/bag-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag-smile.svg b/assets/icons/broken/bag-smile.svg index 08e4b51c..a96a8e0b 100644 --- a/assets/icons/broken/bag-smile.svg +++ b/assets/icons/broken/bag-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bag.svg b/assets/icons/broken/bag.svg index a2ac0bad..fb6c4e9f 100644 --- a/assets/icons/broken/bag.svg +++ b/assets/icons/broken/bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/balloon.svg b/assets/icons/broken/balloon.svg index 60fac329..519b8e5a 100644 --- a/assets/icons/broken/balloon.svg +++ b/assets/icons/broken/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/balls.svg b/assets/icons/broken/balls.svg index b8bc2ccc..c6eaad05 100644 --- a/assets/icons/broken/balls.svg +++ b/assets/icons/broken/balls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/banknote-2.svg b/assets/icons/broken/banknote-2.svg index 80fcc2d2..281fe116 100644 --- a/assets/icons/broken/banknote-2.svg +++ b/assets/icons/broken/banknote-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/banknote.svg b/assets/icons/broken/banknote.svg index d4bb3c1f..e9b3a739 100644 --- a/assets/icons/broken/banknote.svg +++ b/assets/icons/broken/banknote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bar-chair.svg b/assets/icons/broken/bar-chair.svg index 3ee966b9..4dee514a 100644 --- a/assets/icons/broken/bar-chair.svg +++ b/assets/icons/broken/bar-chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/basketball.svg b/assets/icons/broken/basketball.svg index 5e78329c..ddac6012 100644 --- a/assets/icons/broken/basketball.svg +++ b/assets/icons/broken/basketball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bath.svg b/assets/icons/broken/bath.svg index 4a8be08d..78085d7b 100644 --- a/assets/icons/broken/bath.svg +++ b/assets/icons/broken/bath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/battery-full-minimalistic.svg b/assets/icons/broken/battery-full-minimalistic.svg index d86d0c78..382095d9 100644 --- a/assets/icons/broken/battery-full-minimalistic.svg +++ b/assets/icons/broken/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/battery-full.svg b/assets/icons/broken/battery-full.svg index d19528db..276d2d00 100644 --- a/assets/icons/broken/battery-full.svg +++ b/assets/icons/broken/battery-full.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/battery-half-minimalistic.svg b/assets/icons/broken/battery-half-minimalistic.svg index e0d7b648..551f7d85 100644 --- a/assets/icons/broken/battery-half-minimalistic.svg +++ b/assets/icons/broken/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/battery-half.svg b/assets/icons/broken/battery-half.svg index 61b2f88d..da3cac9a 100644 --- a/assets/icons/broken/battery-half.svg +++ b/assets/icons/broken/battery-half.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/battery-low-minimalistic.svg b/assets/icons/broken/battery-low-minimalistic.svg index 57292584..f8479705 100644 --- a/assets/icons/broken/battery-low-minimalistic.svg +++ b/assets/icons/broken/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bed.svg b/assets/icons/broken/bed.svg index c930c0e3..635d109f 100644 --- a/assets/icons/broken/bed.svg +++ b/assets/icons/broken/bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bedside-table-2.svg b/assets/icons/broken/bedside-table-2.svg index 7e872b37..c58cf209 100644 --- a/assets/icons/broken/bedside-table-2.svg +++ b/assets/icons/broken/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bedside-table-3.svg b/assets/icons/broken/bedside-table-3.svg index cca02226..160d5137 100644 --- a/assets/icons/broken/bedside-table-3.svg +++ b/assets/icons/broken/bedside-table-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bedside-table-4.svg b/assets/icons/broken/bedside-table-4.svg index 4c7fcf27..11a1be49 100644 --- a/assets/icons/broken/bedside-table-4.svg +++ b/assets/icons/broken/bedside-table-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bedside-table.svg b/assets/icons/broken/bedside-table.svg index 7ac7bbad..f0b87088 100644 --- a/assets/icons/broken/bedside-table.svg +++ b/assets/icons/broken/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bell-bing.svg b/assets/icons/broken/bell-bing.svg deleted file mode 100644 index cb87124a..00000000 --- a/assets/icons/broken/bell-bing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/bell-off.svg b/assets/icons/broken/bell-off.svg index 1cdc0df8..e3bbf7bf 100644 --- a/assets/icons/broken/bell-off.svg +++ b/assets/icons/broken/bell-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bell-ring.svg b/assets/icons/broken/bell-ring.svg new file mode 100644 index 00000000..92306add --- /dev/null +++ b/assets/icons/broken/bell-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/bell.svg b/assets/icons/broken/bell.svg index f13aa8c9..8ffc6bc4 100644 --- a/assets/icons/broken/bell.svg +++ b/assets/icons/broken/bell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/benzene-ring.svg b/assets/icons/broken/benzene-ring.svg index 425074bc..36f7e6b7 100644 --- a/assets/icons/broken/benzene-ring.svg +++ b/assets/icons/broken/benzene-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bill-2.svg b/assets/icons/broken/bill-2.svg new file mode 100644 index 00000000..6fcba292 --- /dev/null +++ b/assets/icons/broken/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/bill-cross.svg b/assets/icons/broken/bill-cross.svg index 9f48cb87..66d43067 100644 --- a/assets/icons/broken/bill-cross.svg +++ b/assets/icons/broken/bill-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bill-list.svg b/assets/icons/broken/bill-list.svg index ee0cbcb4..f6585de2 100644 --- a/assets/icons/broken/bill-list.svg +++ b/assets/icons/broken/bill-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bill.svg b/assets/icons/broken/bill.svg index 9653563f..6f396909 100644 --- a/assets/icons/broken/bill.svg +++ b/assets/icons/broken/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/black-hole-3.svg b/assets/icons/broken/black-hole-3.svg index 08a64b05..be95f955 100644 --- a/assets/icons/broken/black-hole-3.svg +++ b/assets/icons/broken/black-hole-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bluetooth-circle.svg b/assets/icons/broken/bluetooth-circle.svg index 3d08aa5c..35107d0c 100644 --- a/assets/icons/broken/bluetooth-circle.svg +++ b/assets/icons/broken/bluetooth-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bluetooth-square.svg b/assets/icons/broken/bluetooth-square.svg index 8a180b39..b657084d 100644 --- a/assets/icons/broken/bluetooth-square.svg +++ b/assets/icons/broken/bluetooth-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bluetooth-wave.svg b/assets/icons/broken/bluetooth-wave.svg index c412ce1d..9ca5e8d0 100644 --- a/assets/icons/broken/bluetooth-wave.svg +++ b/assets/icons/broken/bluetooth-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bluetooth.svg b/assets/icons/broken/bluetooth.svg index ac3d3721..efda25d1 100644 --- a/assets/icons/broken/bluetooth.svg +++ b/assets/icons/broken/bluetooth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/body-shape-minimalistic.svg b/assets/icons/broken/body-shape-minimalistic.svg index eb341f96..cb9d2176 100644 --- a/assets/icons/broken/body-shape-minimalistic.svg +++ b/assets/icons/broken/body-shape-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/body-shape.svg b/assets/icons/broken/body-shape.svg index 7f9932da..0c40a6b3 100644 --- a/assets/icons/broken/body-shape.svg +++ b/assets/icons/broken/body-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bomb-emoji.svg b/assets/icons/broken/bomb-emoji.svg index dd0e7f96..5ab15c15 100644 --- a/assets/icons/broken/bomb-emoji.svg +++ b/assets/icons/broken/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bomb-minimalistic.svg b/assets/icons/broken/bomb-minimalistic.svg index 9af29ff3..89aa7bc2 100644 --- a/assets/icons/broken/bomb-minimalistic.svg +++ b/assets/icons/broken/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bomb.svg b/assets/icons/broken/bomb.svg index a310eb99..8e060c6e 100644 --- a/assets/icons/broken/bomb.svg +++ b/assets/icons/broken/bomb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bone-broken.svg b/assets/icons/broken/bone-fracture.svg similarity index 83% rename from assets/icons/broken/bone-broken.svg rename to assets/icons/broken/bone-fracture.svg index ff37eb2b..17af9a1c 100644 --- a/assets/icons/broken/bone-broken.svg +++ b/assets/icons/broken/bone-fracture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bones.svg b/assets/icons/broken/bones.svg index c6753ce9..1f864070 100644 --- a/assets/icons/broken/bones.svg +++ b/assets/icons/broken/bones.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bonfire.svg b/assets/icons/broken/bonfire.svg index 8f8707d1..4e65167b 100644 --- a/assets/icons/broken/bonfire.svg +++ b/assets/icons/broken/bonfire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/book-2.svg b/assets/icons/broken/book-2.svg index 67359072..312f4c9d 100644 --- a/assets/icons/broken/book-2.svg +++ b/assets/icons/broken/book-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/book-bookmark-minimalistic.svg b/assets/icons/broken/book-bookmark-minimalistic.svg index 3b8ce955..19175d6f 100644 --- a/assets/icons/broken/book-bookmark-minimalistic.svg +++ b/assets/icons/broken/book-bookmark-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/book-bookmark.svg b/assets/icons/broken/book-bookmark.svg index 3b496253..b9a25969 100644 --- a/assets/icons/broken/book-bookmark.svg +++ b/assets/icons/broken/book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/book-minimalistic.svg b/assets/icons/broken/book-minimalistic.svg index 6f39daea..3bb83be8 100644 --- a/assets/icons/broken/book-minimalistic.svg +++ b/assets/icons/broken/book-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/book.svg b/assets/icons/broken/book.svg index 51da779d..1a8c5310 100644 --- a/assets/icons/broken/book.svg +++ b/assets/icons/broken/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bookmark-square.svg b/assets/icons/broken/bookmark-square.svg index a2a6e7bc..4c77e9b4 100644 --- a/assets/icons/broken/bookmark-square.svg +++ b/assets/icons/broken/bookmark-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bookmark.svg b/assets/icons/broken/bookmark.svg index a741fc21..fd07540b 100644 --- a/assets/icons/broken/bookmark.svg +++ b/assets/icons/broken/bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/boombox.svg b/assets/icons/broken/boombox.svg index 7fda6941..48dc9e64 100644 --- a/assets/icons/broken/boombox.svg +++ b/assets/icons/broken/boombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bottle.svg b/assets/icons/broken/bottle.svg index d3ee3d9a..3d6eed78 100644 --- a/assets/icons/broken/bottle.svg +++ b/assets/icons/broken/bottle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/box-minimalistic.svg b/assets/icons/broken/box-minimalistic.svg index b96f7d44..56d394f3 100644 --- a/assets/icons/broken/box-minimalistic.svg +++ b/assets/icons/broken/box-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/box.svg b/assets/icons/broken/box.svg index 52c04daf..c8a713c8 100644 --- a/assets/icons/broken/box.svg +++ b/assets/icons/broken/box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/branching-paths-down.svg b/assets/icons/broken/branching-paths-down.svg index 944247b6..e5cbab3e 100644 --- a/assets/icons/broken/branching-paths-down.svg +++ b/assets/icons/broken/branching-paths-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/branching-paths-up.svg b/assets/icons/broken/branching-paths-up.svg index 74f5c1b2..632d1ae3 100644 --- a/assets/icons/broken/branching-paths-up.svg +++ b/assets/icons/broken/branching-paths-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/broom.svg b/assets/icons/broken/broom.svg index 399d2c0b..5243f4f4 100644 --- a/assets/icons/broken/broom.svg +++ b/assets/icons/broken/broom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bug-minimalistic.svg b/assets/icons/broken/bug-minimalistic.svg index 1c3ddcf4..566bfe2d 100644 --- a/assets/icons/broken/bug-minimalistic.svg +++ b/assets/icons/broken/bug-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bug.svg b/assets/icons/broken/bug.svg index e494b1df..a57a448c 100644 --- a/assets/icons/broken/bug.svg +++ b/assets/icons/broken/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/buildings-2.svg b/assets/icons/broken/buildings-2.svg index ad7eb0a2..19397180 100644 --- a/assets/icons/broken/buildings-2.svg +++ b/assets/icons/broken/buildings-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/buildings-3.svg b/assets/icons/broken/buildings-3.svg index 9ad88f53..5269e25c 100644 --- a/assets/icons/broken/buildings-3.svg +++ b/assets/icons/broken/buildings-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/buildings.svg b/assets/icons/broken/buildings.svg index 33339e53..64b5d56b 100644 --- a/assets/icons/broken/buildings.svg +++ b/assets/icons/broken/buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/bus.svg b/assets/icons/broken/bus.svg index b388de61..ac3e860e 100644 --- a/assets/icons/broken/bus.svg +++ b/assets/icons/broken/bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calculator-minimalistic.svg b/assets/icons/broken/calculator-minimalistic.svg index 805401c3..0c3593a8 100644 --- a/assets/icons/broken/calculator-minimalistic.svg +++ b/assets/icons/broken/calculator-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calculator.svg b/assets/icons/broken/calculator.svg index 9a2899f7..1789ccff 100644 --- a/assets/icons/broken/calculator.svg +++ b/assets/icons/broken/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar-add.svg b/assets/icons/broken/calendar-add.svg index 2fdd7405..139003d0 100644 --- a/assets/icons/broken/calendar-add.svg +++ b/assets/icons/broken/calendar-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar-date.svg b/assets/icons/broken/calendar-date.svg index 6c3ef0ef..576bb791 100644 --- a/assets/icons/broken/calendar-date.svg +++ b/assets/icons/broken/calendar-date.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar-mark.svg b/assets/icons/broken/calendar-mark.svg index 500de749..5ba1d01e 100644 --- a/assets/icons/broken/calendar-mark.svg +++ b/assets/icons/broken/calendar-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar-minimalistic.svg b/assets/icons/broken/calendar-minimalistic.svg index a0e08b50..b161c257 100644 --- a/assets/icons/broken/calendar-minimalistic.svg +++ b/assets/icons/broken/calendar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar-search.svg b/assets/icons/broken/calendar-search.svg index 26e2d9ab..56eca457 100644 --- a/assets/icons/broken/calendar-search.svg +++ b/assets/icons/broken/calendar-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/calendar.svg b/assets/icons/broken/calendar.svg index 60309b79..85acf459 100644 --- a/assets/icons/broken/calendar.svg +++ b/assets/icons/broken/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-cancel-rounded.svg b/assets/icons/broken/call-cancel-rounded.svg index 8fe53593..241a6fce 100644 --- a/assets/icons/broken/call-cancel-rounded.svg +++ b/assets/icons/broken/call-cancel-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-cancel.svg b/assets/icons/broken/call-cancel.svg index 20eb8ebf..895bed36 100644 --- a/assets/icons/broken/call-cancel.svg +++ b/assets/icons/broken/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-chat.svg b/assets/icons/broken/call-chat.svg index 4d273646..4a6118c2 100644 --- a/assets/icons/broken/call-chat.svg +++ b/assets/icons/broken/call-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-dropped-rounded.svg b/assets/icons/broken/call-dropped-rounded.svg index 07fad516..5c9896ec 100644 --- a/assets/icons/broken/call-dropped-rounded.svg +++ b/assets/icons/broken/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-dropped.svg b/assets/icons/broken/call-dropped.svg index 5c6b4944..75d102d0 100644 --- a/assets/icons/broken/call-dropped.svg +++ b/assets/icons/broken/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-medicine-rounded.svg b/assets/icons/broken/call-medicine-rounded.svg index b7e75e0d..1c5809d5 100644 --- a/assets/icons/broken/call-medicine-rounded.svg +++ b/assets/icons/broken/call-medicine-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/call-medicine.svg b/assets/icons/broken/call-medicine.svg index 7a74880e..83977036 100644 --- a/assets/icons/broken/call-medicine.svg +++ b/assets/icons/broken/call-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/camera-add.svg b/assets/icons/broken/camera-add.svg index f8822333..1de0c8c6 100644 --- a/assets/icons/broken/camera-add.svg +++ b/assets/icons/broken/camera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/camera-minimalistic.svg b/assets/icons/broken/camera-minimalistic.svg index 5108554c..6b7486ac 100644 --- a/assets/icons/broken/camera-minimalistic.svg +++ b/assets/icons/broken/camera-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/camera-rotate.svg b/assets/icons/broken/camera-rotate.svg index 139111ca..e4beef5b 100644 --- a/assets/icons/broken/camera-rotate.svg +++ b/assets/icons/broken/camera-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/camera.svg b/assets/icons/broken/camera.svg index b6d57836..7e23054a 100644 --- a/assets/icons/broken/camera.svg +++ b/assets/icons/broken/camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/accumulator.svg b/assets/icons/broken/car-battery.svg similarity index 77% rename from assets/icons/broken/accumulator.svg rename to assets/icons/broken/car-battery.svg index aca52854..488b1a12 100644 --- a/assets/icons/broken/accumulator.svg +++ b/assets/icons/broken/car-battery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/card-2.svg b/assets/icons/broken/card-2.svg index 4fb26019..b588c715 100644 --- a/assets/icons/broken/card-2.svg +++ b/assets/icons/broken/card-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/card-receive.svg b/assets/icons/broken/card-receive.svg new file mode 100644 index 00000000..fd548e3f --- /dev/null +++ b/assets/icons/broken/card-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/card-recive.svg b/assets/icons/broken/card-recive.svg deleted file mode 100644 index f63842f8..00000000 --- a/assets/icons/broken/card-recive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/card-search.svg b/assets/icons/broken/card-search.svg index 39fd295a..bcb84d26 100644 --- a/assets/icons/broken/card-search.svg +++ b/assets/icons/broken/card-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/card-send.svg b/assets/icons/broken/card-send.svg index 9945e0a6..baad4d3b 100644 --- a/assets/icons/broken/card-send.svg +++ b/assets/icons/broken/card-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/card-transfer.svg b/assets/icons/broken/card-transfer.svg index 3bd83d63..aeba73ca 100644 --- a/assets/icons/broken/card-transfer.svg +++ b/assets/icons/broken/card-transfer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/card.svg b/assets/icons/broken/card.svg index f60d10ee..404f2b59 100644 --- a/assets/icons/broken/card.svg +++ b/assets/icons/broken/card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cardholder.svg b/assets/icons/broken/cardholder.svg index 6882d95d..9dbebf8a 100644 --- a/assets/icons/broken/cardholder.svg +++ b/assets/icons/broken/cardholder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-3.svg b/assets/icons/broken/cart-3.svg index 32ae76c7..9d3e6e36 100644 --- a/assets/icons/broken/cart-3.svg +++ b/assets/icons/broken/cart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-4.svg b/assets/icons/broken/cart-4.svg new file mode 100644 index 00000000..387c1332 --- /dev/null +++ b/assets/icons/broken/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/cart-5.svg b/assets/icons/broken/cart-5.svg index d3d612a4..4e212d1a 100644 --- a/assets/icons/broken/cart-5.svg +++ b/assets/icons/broken/cart-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-check.svg b/assets/icons/broken/cart-check.svg index 3af9b9e5..61824d3d 100644 --- a/assets/icons/broken/cart-check.svg +++ b/assets/icons/broken/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-cross.svg b/assets/icons/broken/cart-cross.svg index 8a0321c8..01ac13aa 100644 --- a/assets/icons/broken/cart-cross.svg +++ b/assets/icons/broken/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-large-2.svg b/assets/icons/broken/cart-large-2.svg index c82188ee..646103ee 100644 --- a/assets/icons/broken/cart-large-2.svg +++ b/assets/icons/broken/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-large-3.svg b/assets/icons/broken/cart-large-3.svg index 8c857056..0845ae6c 100644 --- a/assets/icons/broken/cart-large-3.svg +++ b/assets/icons/broken/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-large-4.svg b/assets/icons/broken/cart-large-4.svg index 7b3b387b..c49185b2 100644 --- a/assets/icons/broken/cart-large-4.svg +++ b/assets/icons/broken/cart-large-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-large-minimalistic.svg b/assets/icons/broken/cart-large-minimalistic.svg index ffef0811..0137e69f 100644 --- a/assets/icons/broken/cart-large-minimalistic.svg +++ b/assets/icons/broken/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-large.svg b/assets/icons/broken/cart-large.svg index e6c4911b..2f514bfb 100644 --- a/assets/icons/broken/cart-large.svg +++ b/assets/icons/broken/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cart-plus.svg b/assets/icons/broken/cart-plus.svg index 134b00fc..f81f03db 100644 --- a/assets/icons/broken/cart-plus.svg +++ b/assets/icons/broken/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/case-minimalistic.svg b/assets/icons/broken/case-minimalistic.svg index 17f192a0..e129776e 100644 --- a/assets/icons/broken/case-minimalistic.svg +++ b/assets/icons/broken/case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/case-round-minimalistic.svg b/assets/icons/broken/case-round-minimalistic.svg index ec50f116..cfe719e8 100644 --- a/assets/icons/broken/case-round-minimalistic.svg +++ b/assets/icons/broken/case-round-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/case-round.svg b/assets/icons/broken/case-round.svg index 307f5d02..72036926 100644 --- a/assets/icons/broken/case-round.svg +++ b/assets/icons/broken/case-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/case.svg b/assets/icons/broken/case.svg index 99f0ac4b..781f3cb9 100644 --- a/assets/icons/broken/case.svg +++ b/assets/icons/broken/case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cash-out.svg b/assets/icons/broken/cash-out.svg index 5317671a..bb18d8a1 100644 --- a/assets/icons/broken/cash-out.svg +++ b/assets/icons/broken/cash-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cassette-2.svg b/assets/icons/broken/cassette-2.svg index 5aa1da05..2b464156 100644 --- a/assets/icons/broken/cassette-2.svg +++ b/assets/icons/broken/cassette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cassette.svg b/assets/icons/broken/cassette.svg index 37ba0c8d..e05bd6f5 100644 --- a/assets/icons/broken/cassette.svg +++ b/assets/icons/broken/cassette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cat.svg b/assets/icons/broken/cat.svg index 13b4cd83..30a5da4d 100644 --- a/assets/icons/broken/cat.svg +++ b/assets/icons/broken/cat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chair.svg b/assets/icons/broken/chair.svg index 0f7b9dd6..2e425f0c 100644 --- a/assets/icons/broken/chair.svg +++ b/assets/icons/broken/chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chandelier.svg b/assets/icons/broken/chandelier.svg index 1e9b068c..a4b8f3b9 100644 --- a/assets/icons/broken/chandelier.svg +++ b/assets/icons/broken/chandelier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chart-square.svg b/assets/icons/broken/chart-square.svg index db1bcd11..6b725eb9 100644 --- a/assets/icons/broken/chart-square.svg +++ b/assets/icons/broken/chart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chart.svg b/assets/icons/broken/chart.svg index 3a3d6112..5be5e347 100644 --- a/assets/icons/broken/chart.svg +++ b/assets/icons/broken/chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-dots.svg b/assets/icons/broken/chat-dots.svg index 3a8647b3..53362ae6 100644 --- a/assets/icons/broken/chat-dots.svg +++ b/assets/icons/broken/chat-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-line.svg b/assets/icons/broken/chat-line.svg index eedf9793..548d1503 100644 --- a/assets/icons/broken/chat-line.svg +++ b/assets/icons/broken/chat-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-round-call.svg b/assets/icons/broken/chat-round-call.svg index 1f913645..d7711396 100644 --- a/assets/icons/broken/chat-round-call.svg +++ b/assets/icons/broken/chat-round-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-round-dots.svg b/assets/icons/broken/chat-round-dots.svg index 918c4792..2139f80c 100644 --- a/assets/icons/broken/chat-round-dots.svg +++ b/assets/icons/broken/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-round-like.svg b/assets/icons/broken/chat-round-like.svg index 45edd849..6d7493d5 100644 --- a/assets/icons/broken/chat-round-like.svg +++ b/assets/icons/broken/chat-round-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-round-line.svg b/assets/icons/broken/chat-round-line.svg index 5393d890..8a2d71cc 100644 --- a/assets/icons/broken/chat-round-line.svg +++ b/assets/icons/broken/chat-round-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-2.svg b/assets/icons/broken/chat-square-2.svg index af026649..ecde6286 100644 --- a/assets/icons/broken/chat-square-2.svg +++ b/assets/icons/broken/chat-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-arrow.svg b/assets/icons/broken/chat-square-arrow.svg index ec53c92a..9e2ff60e 100644 --- a/assets/icons/broken/chat-square-arrow.svg +++ b/assets/icons/broken/chat-square-arrow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-call.svg b/assets/icons/broken/chat-square-call.svg index f1cc9cdd..b3f98966 100644 --- a/assets/icons/broken/chat-square-call.svg +++ b/assets/icons/broken/chat-square-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-check.svg b/assets/icons/broken/chat-square-check.svg index a8361fd8..bc7d694a 100644 --- a/assets/icons/broken/chat-square-check.svg +++ b/assets/icons/broken/chat-square-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-code.svg b/assets/icons/broken/chat-square-code.svg index c3318228..0d884618 100644 --- a/assets/icons/broken/chat-square-code.svg +++ b/assets/icons/broken/chat-square-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square-like.svg b/assets/icons/broken/chat-square-like.svg index 4c5c9665..1a3d27e8 100644 --- a/assets/icons/broken/chat-square-like.svg +++ b/assets/icons/broken/chat-square-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-square.svg b/assets/icons/broken/chat-square.svg index a1609440..315eb231 100644 --- a/assets/icons/broken/chat-square.svg +++ b/assets/icons/broken/chat-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chat-unread.svg b/assets/icons/broken/chat-unread.svg index 2521f7bc..24a53147 100644 --- a/assets/icons/broken/chat-unread.svg +++ b/assets/icons/broken/chat-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/check-read.svg b/assets/icons/broken/check-read.svg index c9a80816..8b1f588d 100644 --- a/assets/icons/broken/check-read.svg +++ b/assets/icons/broken/check-read.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/checklist-minimalistic.svg b/assets/icons/broken/checklist-minimalistic.svg index 4e356910..41ad71be 100644 --- a/assets/icons/broken/checklist-minimalistic.svg +++ b/assets/icons/broken/checklist-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/checklist.svg b/assets/icons/broken/checklist.svg index 006b7202..afe310dd 100644 --- a/assets/icons/broken/checklist.svg +++ b/assets/icons/broken/checklist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chef-hat-heart.svg b/assets/icons/broken/chef-hat-heart.svg index 307a986a..4c53d608 100644 --- a/assets/icons/broken/chef-hat-heart.svg +++ b/assets/icons/broken/chef-hat-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chef-hat-minimalistic.svg b/assets/icons/broken/chef-hat-minimalistic.svg index 21d13e38..73218415 100644 --- a/assets/icons/broken/chef-hat-minimalistic.svg +++ b/assets/icons/broken/chef-hat-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/chef-hat.svg b/assets/icons/broken/chef-hat.svg index bf52de90..b86227c0 100644 --- a/assets/icons/broken/chef-hat.svg +++ b/assets/icons/broken/chef-hat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/circle-bottom-down.svg b/assets/icons/broken/circle-bottom-down.svg index 349b322b..1e74991d 100644 --- a/assets/icons/broken/circle-bottom-down.svg +++ b/assets/icons/broken/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/circle-bottom-up.svg b/assets/icons/broken/circle-bottom-up.svg index ecbcd988..90009831 100644 --- a/assets/icons/broken/circle-bottom-up.svg +++ b/assets/icons/broken/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/circle-top-down.svg b/assets/icons/broken/circle-top-down.svg index 0e29ff49..bfd815c5 100644 --- a/assets/icons/broken/circle-top-down.svg +++ b/assets/icons/broken/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/circle-top-up.svg b/assets/icons/broken/circle-top-up.svg index 88075bdc..eb76f9ff 100644 --- a/assets/icons/broken/circle-top-up.svg +++ b/assets/icons/broken/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/city.svg b/assets/icons/broken/city.svg index 5bb0919f..e163ef01 100644 --- a/assets/icons/broken/city.svg +++ b/assets/icons/broken/city.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard-edit.svg b/assets/icons/broken/clapperboard-edit.svg index 08a72705..a467158b 100644 --- a/assets/icons/broken/clapperboard-edit.svg +++ b/assets/icons/broken/clapperboard-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard-open-play.svg b/assets/icons/broken/clapperboard-open-play.svg index 0a953e43..c4aaa4ee 100644 --- a/assets/icons/broken/clapperboard-open-play.svg +++ b/assets/icons/broken/clapperboard-open-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard-open.svg b/assets/icons/broken/clapperboard-open.svg index 06d43cbb..8f87b4ef 100644 --- a/assets/icons/broken/clapperboard-open.svg +++ b/assets/icons/broken/clapperboard-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard-play.svg b/assets/icons/broken/clapperboard-play.svg index 3bbbb059..8a032b3e 100644 --- a/assets/icons/broken/clapperboard-play.svg +++ b/assets/icons/broken/clapperboard-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard-text.svg b/assets/icons/broken/clapperboard-text.svg index 93817b1e..fd74e285 100644 --- a/assets/icons/broken/clapperboard-text.svg +++ b/assets/icons/broken/clapperboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clapperboard.svg b/assets/icons/broken/clapperboard.svg index b7e1235b..b9fa5063 100644 --- a/assets/icons/broken/clapperboard.svg +++ b/assets/icons/broken/clapperboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard-add.svg b/assets/icons/broken/clipboard-add.svg index 8ae1f4a0..d77277a9 100644 --- a/assets/icons/broken/clipboard-add.svg +++ b/assets/icons/broken/clipboard-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard-heart.svg b/assets/icons/broken/clipboard-heart.svg index 54101529..dbbb6a01 100644 --- a/assets/icons/broken/clipboard-heart.svg +++ b/assets/icons/broken/clipboard-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard-list.svg b/assets/icons/broken/clipboard-list.svg index 2491b245..a4b8df20 100644 --- a/assets/icons/broken/clipboard-list.svg +++ b/assets/icons/broken/clipboard-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard-remove.svg b/assets/icons/broken/clipboard-remove.svg index 85e9a886..fb071483 100644 --- a/assets/icons/broken/clipboard-remove.svg +++ b/assets/icons/broken/clipboard-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard-text.svg b/assets/icons/broken/clipboard-text.svg index ad846d95..5742a361 100644 --- a/assets/icons/broken/clipboard-text.svg +++ b/assets/icons/broken/clipboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clipboard.svg b/assets/icons/broken/clipboard.svg index 26642ce2..0db887a4 100644 --- a/assets/icons/broken/clipboard.svg +++ b/assets/icons/broken/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/close-circle.svg b/assets/icons/broken/close-circle.svg index 60bdcd77..53336f79 100644 --- a/assets/icons/broken/close-circle.svg +++ b/assets/icons/broken/close-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/close-square.svg b/assets/icons/broken/close-square.svg index 95c02ace..4e09cebd 100644 --- a/assets/icons/broken/close-square.svg +++ b/assets/icons/broken/close-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/closet-2.svg b/assets/icons/broken/closet-2.svg index d8b66b1b..2ea5047f 100644 --- a/assets/icons/broken/closet-2.svg +++ b/assets/icons/broken/closet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/closet.svg b/assets/icons/broken/closet.svg index f442f5ef..12a845d9 100644 --- a/assets/icons/broken/closet.svg +++ b/assets/icons/broken/closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-bolt-minimalistic.svg b/assets/icons/broken/cloud-bolt-minimalistic.svg index 11aaf2d8..8b09e1b9 100644 --- a/assets/icons/broken/cloud-bolt-minimalistic.svg +++ b/assets/icons/broken/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-bolt.svg b/assets/icons/broken/cloud-bolt.svg index c3838263..ecf723b2 100644 --- a/assets/icons/broken/cloud-bolt.svg +++ b/assets/icons/broken/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-check.svg b/assets/icons/broken/cloud-check.svg index ac8fbd9b..8c18718d 100644 --- a/assets/icons/broken/cloud-check.svg +++ b/assets/icons/broken/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-cross.svg b/assets/icons/broken/cloud-cross.svg index 52910237..ae667b2a 100644 --- a/assets/icons/broken/cloud-cross.svg +++ b/assets/icons/broken/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-download.svg b/assets/icons/broken/cloud-download.svg index f2bd970b..ffcad0a3 100644 --- a/assets/icons/broken/cloud-download.svg +++ b/assets/icons/broken/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-file.svg b/assets/icons/broken/cloud-file.svg index 7e582ddc..6eebc908 100644 --- a/assets/icons/broken/cloud-file.svg +++ b/assets/icons/broken/cloud-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-minus.svg b/assets/icons/broken/cloud-minus.svg index fb563c72..0a4990bb 100644 --- a/assets/icons/broken/cloud-minus.svg +++ b/assets/icons/broken/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-plus.svg b/assets/icons/broken/cloud-plus.svg index 7c958da1..5752e4a2 100644 --- a/assets/icons/broken/cloud-plus.svg +++ b/assets/icons/broken/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-rain.svg b/assets/icons/broken/cloud-rain.svg index ac3ef372..0f936344 100644 --- a/assets/icons/broken/cloud-rain.svg +++ b/assets/icons/broken/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-snowfall-minimalistic.svg b/assets/icons/broken/cloud-snowfall-minimalistic.svg index 00efe5b3..087ac7dc 100644 --- a/assets/icons/broken/cloud-snowfall-minimalistic.svg +++ b/assets/icons/broken/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-snowfall.svg b/assets/icons/broken/cloud-snowfall.svg index dbbca53d..392a3bf1 100644 --- a/assets/icons/broken/cloud-snowfall.svg +++ b/assets/icons/broken/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-storage.svg b/assets/icons/broken/cloud-storage.svg index c901e060..7542a098 100644 --- a/assets/icons/broken/cloud-storage.svg +++ b/assets/icons/broken/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-storm.svg b/assets/icons/broken/cloud-storm.svg index 7cfd41d9..1a8c3aef 100644 --- a/assets/icons/broken/cloud-storm.svg +++ b/assets/icons/broken/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-sun-2.svg b/assets/icons/broken/cloud-sun-2.svg index fcf617a3..a6e085e2 100644 --- a/assets/icons/broken/cloud-sun-2.svg +++ b/assets/icons/broken/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-sun.svg b/assets/icons/broken/cloud-sun.svg index a1f2c72a..de24c3b8 100644 --- a/assets/icons/broken/cloud-sun.svg +++ b/assets/icons/broken/cloud-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-upload.svg b/assets/icons/broken/cloud-upload.svg index d4b76995..de7cb98d 100644 --- a/assets/icons/broken/cloud-upload.svg +++ b/assets/icons/broken/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-waterdrop.svg b/assets/icons/broken/cloud-waterdrop.svg index 3336b6dc..6d2718fb 100644 --- a/assets/icons/broken/cloud-waterdrop.svg +++ b/assets/icons/broken/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud-waterdrops.svg b/assets/icons/broken/cloud-waterdrops.svg index 0cb691b4..6ad4c58a 100644 --- a/assets/icons/broken/cloud-waterdrops.svg +++ b/assets/icons/broken/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloud.svg b/assets/icons/broken/cloud.svg index 942e9c2e..cc89ef8c 100644 --- a/assets/icons/broken/cloud.svg +++ b/assets/icons/broken/cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/clouds.svg b/assets/icons/broken/clouds.svg index 977fff9f..15cde111 100644 --- a/assets/icons/broken/clouds.svg +++ b/assets/icons/broken/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cloudy-moon.svg b/assets/icons/broken/cloudy-moon.svg index e9eb0040..64bf64cb 100644 --- a/assets/icons/broken/cloudy-moon.svg +++ b/assets/icons/broken/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code-2.svg b/assets/icons/broken/code-2.svg index 48a957b5..dc826431 100644 --- a/assets/icons/broken/code-2.svg +++ b/assets/icons/broken/code-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code-circle.svg b/assets/icons/broken/code-circle.svg index 2ba14c3c..1f2484e2 100644 --- a/assets/icons/broken/code-circle.svg +++ b/assets/icons/broken/code-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code-file.svg b/assets/icons/broken/code-file.svg index 0cb2dd1e..1d643d3b 100644 --- a/assets/icons/broken/code-file.svg +++ b/assets/icons/broken/code-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code-scan.svg b/assets/icons/broken/code-scan.svg index 903490bb..f60e8812 100644 --- a/assets/icons/broken/code-scan.svg +++ b/assets/icons/broken/code-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code-square.svg b/assets/icons/broken/code-square.svg index d3dc6840..eb0d2224 100644 --- a/assets/icons/broken/code-square.svg +++ b/assets/icons/broken/code-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/code.svg b/assets/icons/broken/code.svg index 5a041a44..869c8728 100644 --- a/assets/icons/broken/code.svg +++ b/assets/icons/broken/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/colour-tuneing.svg b/assets/icons/broken/colour-tuneing.svg deleted file mode 100644 index 923f63c0..00000000 --- a/assets/icons/broken/colour-tuneing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/colour-tuning.svg b/assets/icons/broken/colour-tuning.svg new file mode 100644 index 00000000..3274dda8 --- /dev/null +++ b/assets/icons/broken/colour-tuning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/command.svg b/assets/icons/broken/command.svg index 34a3a3d4..89f48446 100644 --- a/assets/icons/broken/command.svg +++ b/assets/icons/broken/command.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/condicioner.svg b/assets/icons/broken/condicioner.svg deleted file mode 100644 index 444d23b9..00000000 --- a/assets/icons/broken/condicioner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/condicioner-2.svg b/assets/icons/broken/conditioner-2.svg similarity index 77% rename from assets/icons/broken/condicioner-2.svg rename to assets/icons/broken/conditioner-2.svg index 717d4c95..1b6315a2 100644 --- a/assets/icons/broken/condicioner-2.svg +++ b/assets/icons/broken/conditioner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/conditioner.svg b/assets/icons/broken/conditioner.svg new file mode 100644 index 00000000..81b62450 --- /dev/null +++ b/assets/icons/broken/conditioner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/confetti-minimalistic.svg b/assets/icons/broken/confetti-minimalistic.svg index 5a128fe8..57349828 100644 --- a/assets/icons/broken/confetti-minimalistic.svg +++ b/assets/icons/broken/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/confetti.svg b/assets/icons/broken/confetti.svg index 92d31bd0..3ace754d 100644 --- a/assets/icons/broken/confetti.svg +++ b/assets/icons/broken/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/confounded-circle.svg b/assets/icons/broken/confounded-circle.svg index 9f1c8933..c371ea6c 100644 --- a/assets/icons/broken/confounded-circle.svg +++ b/assets/icons/broken/confounded-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/confounded-square.svg b/assets/icons/broken/confounded-square.svg index e43d6675..97cd74da 100644 --- a/assets/icons/broken/confounded-square.svg +++ b/assets/icons/broken/confounded-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/corkscrew.svg b/assets/icons/broken/corkscrew.svg index 2f576a96..9561af87 100644 --- a/assets/icons/broken/corkscrew.svg +++ b/assets/icons/broken/corkscrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cosmetic.svg b/assets/icons/broken/cosmetic.svg index 85e178d9..ca2e6147 100644 --- a/assets/icons/broken/cosmetic.svg +++ b/assets/icons/broken/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/course-down.svg b/assets/icons/broken/course-down.svg index 5ce3a2b7..06700fdb 100644 --- a/assets/icons/broken/course-down.svg +++ b/assets/icons/broken/course-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/course-up.svg b/assets/icons/broken/course-up.svg index 52a3e8b1..ead36ed1 100644 --- a/assets/icons/broken/course-up.svg +++ b/assets/icons/broken/course-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cpu-bolt.svg b/assets/icons/broken/cpu-bolt.svg index 43d81ff6..395b788d 100644 --- a/assets/icons/broken/cpu-bolt.svg +++ b/assets/icons/broken/cpu-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cpu.svg b/assets/icons/broken/cpu.svg index 15b1c240..12789b62 100644 --- a/assets/icons/broken/cpu.svg +++ b/assets/icons/broken/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/creative-commons.svg b/assets/icons/broken/creative-commons.svg index 8557d1ba..8a4ddd05 100644 --- a/assets/icons/broken/creative-commons.svg +++ b/assets/icons/broken/creative-commons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/crop-minimalistic.svg b/assets/icons/broken/crop-minimalistic.svg index f34f3a7d..b4849255 100644 --- a/assets/icons/broken/crop-minimalistic.svg +++ b/assets/icons/broken/crop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/crop.svg b/assets/icons/broken/crop.svg index 59b9ab61..a0338570 100644 --- a/assets/icons/broken/crop.svg +++ b/assets/icons/broken/crop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/crown-line.svg b/assets/icons/broken/crown-line.svg index 44ee4cb4..096782e6 100644 --- a/assets/icons/broken/crown-line.svg +++ b/assets/icons/broken/crown-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/crown.svg b/assets/icons/broken/crown.svg index f4b9955a..02c7bfcc 100644 --- a/assets/icons/broken/crown.svg +++ b/assets/icons/broken/crown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup-first.svg b/assets/icons/broken/cup-first.svg index 28970d08..c76cdfd4 100644 --- a/assets/icons/broken/cup-first.svg +++ b/assets/icons/broken/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup-hot.svg b/assets/icons/broken/cup-hot.svg index ddff6fa2..ec026fd6 100644 --- a/assets/icons/broken/cup-hot.svg +++ b/assets/icons/broken/cup-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup-music.svg b/assets/icons/broken/cup-music.svg index ee38aaaa..74292f81 100644 --- a/assets/icons/broken/cup-music.svg +++ b/assets/icons/broken/cup-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup-paper.svg b/assets/icons/broken/cup-paper.svg index 836b79e9..ad503c41 100644 --- a/assets/icons/broken/cup-paper.svg +++ b/assets/icons/broken/cup-paper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup-star.svg b/assets/icons/broken/cup-star.svg index 55319162..d9f03a27 100644 --- a/assets/icons/broken/cup-star.svg +++ b/assets/icons/broken/cup-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/cup.svg b/assets/icons/broken/cup.svg index ea9d7f50..8afccfa8 100644 --- a/assets/icons/broken/cup.svg +++ b/assets/icons/broken/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/danger-circle.svg b/assets/icons/broken/danger-circle.svg index 07b9528f..0c9be273 100644 --- a/assets/icons/broken/danger-circle.svg +++ b/assets/icons/broken/danger-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/danger-square.svg b/assets/icons/broken/danger-square.svg index 9973b50d..1406972c 100644 --- a/assets/icons/broken/danger-square.svg +++ b/assets/icons/broken/danger-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/danger-triangle.svg b/assets/icons/broken/danger-triangle.svg index 0fa6d81a..f0577bb8 100644 --- a/assets/icons/broken/danger-triangle.svg +++ b/assets/icons/broken/danger-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/danger.svg b/assets/icons/broken/danger.svg index 7c904d0d..5de743b7 100644 --- a/assets/icons/broken/danger.svg +++ b/assets/icons/broken/danger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/database.svg b/assets/icons/broken/database.svg index fae92ffc..74ff8f20 100644 --- a/assets/icons/broken/database.svg +++ b/assets/icons/broken/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/delivery.svg b/assets/icons/broken/delivery.svg index c6e25965..4be6cce3 100644 --- a/assets/icons/broken/delivery.svg +++ b/assets/icons/broken/delivery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/diagram-down.svg b/assets/icons/broken/diagram-down.svg index 977c01f0..41f19e92 100644 --- a/assets/icons/broken/diagram-down.svg +++ b/assets/icons/broken/diagram-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dialog-2.svg b/assets/icons/broken/dialog-2.svg index eb0870d3..10acab2e 100644 --- a/assets/icons/broken/dialog-2.svg +++ b/assets/icons/broken/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dialog.svg b/assets/icons/broken/dialog.svg index 8586b140..4cebb3ae 100644 --- a/assets/icons/broken/dialog.svg +++ b/assets/icons/broken/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/diploma-verified.svg b/assets/icons/broken/diploma-verified.svg index a6e1e096..9d0f3ccf 100644 --- a/assets/icons/broken/diploma-verified.svg +++ b/assets/icons/broken/diploma-verified.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/diploma.svg b/assets/icons/broken/diploma.svg index fe1d28f5..4000b439 100644 --- a/assets/icons/broken/diploma.svg +++ b/assets/icons/broken/diploma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/diskette.svg b/assets/icons/broken/diskette.svg index 829d9c5e..0471f75c 100644 --- a/assets/icons/broken/diskette.svg +++ b/assets/icons/broken/diskette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dislike.svg b/assets/icons/broken/dislike.svg index 5277bc59..31b788b3 100644 --- a/assets/icons/broken/dislike.svg +++ b/assets/icons/broken/dislike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/display.svg b/assets/icons/broken/display.svg index da39d025..4b35d432 100644 --- a/assets/icons/broken/display.svg +++ b/assets/icons/broken/display.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dna.svg b/assets/icons/broken/dna.svg index b8f60b56..4da949d2 100644 --- a/assets/icons/broken/dna.svg +++ b/assets/icons/broken/dna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/document-2.svg b/assets/icons/broken/document-2.svg new file mode 100644 index 00000000..7bf74462 --- /dev/null +++ b/assets/icons/broken/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/document-add.svg b/assets/icons/broken/document-add.svg index d01b3d0a..b7563d50 100644 --- a/assets/icons/broken/document-add.svg +++ b/assets/icons/broken/document-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/document-medicine.svg b/assets/icons/broken/document-medicine.svg index 19715587..5386b179 100644 --- a/assets/icons/broken/document-medicine.svg +++ b/assets/icons/broken/document-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/document-text.svg b/assets/icons/broken/document-text.svg index 1336b467..0629b79b 100644 --- a/assets/icons/broken/document-text.svg +++ b/assets/icons/broken/document-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/document.svg b/assets/icons/broken/document.svg index 4908a9d7..bc51b788 100644 --- a/assets/icons/broken/document.svg +++ b/assets/icons/broken/document.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/documents-minimalistic.svg b/assets/icons/broken/documents-minimalistic.svg index 2549f03a..15b544c7 100644 --- a/assets/icons/broken/documents-minimalistic.svg +++ b/assets/icons/broken/documents-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/documents.svg b/assets/icons/broken/documents.svg index ee429adb..b1d2e2b2 100644 --- a/assets/icons/broken/documents.svg +++ b/assets/icons/broken/documents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dollar-minimalistic.svg b/assets/icons/broken/dollar-minimalistic.svg index fb088d95..1a9ddb07 100644 --- a/assets/icons/broken/dollar-minimalistic.svg +++ b/assets/icons/broken/dollar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dollar.svg b/assets/icons/broken/dollar.svg index fa6f50b0..64444ff0 100644 --- a/assets/icons/broken/dollar.svg +++ b/assets/icons/broken/dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/donut-bitten.svg b/assets/icons/broken/donut-bitten.svg index 3927c1d7..ded5ee63 100644 --- a/assets/icons/broken/donut-bitten.svg +++ b/assets/icons/broken/donut-bitten.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/donut.svg b/assets/icons/broken/donut.svg index e4d480a8..b80938a1 100644 --- a/assets/icons/broken/donut.svg +++ b/assets/icons/broken/donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/double-alt-arrow-down.svg b/assets/icons/broken/double-alt-arrow-down.svg index 346e8c70..6e245440 100644 --- a/assets/icons/broken/double-alt-arrow-down.svg +++ b/assets/icons/broken/double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/double-alt-arrow-left.svg b/assets/icons/broken/double-alt-arrow-left.svg index 905e7f9f..2815182c 100644 --- a/assets/icons/broken/double-alt-arrow-left.svg +++ b/assets/icons/broken/double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/double-alt-arrow-right.svg b/assets/icons/broken/double-alt-arrow-right.svg index 9bbeac2e..aba1d74f 100644 --- a/assets/icons/broken/double-alt-arrow-right.svg +++ b/assets/icons/broken/double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/double-alt-arrow-up.svg b/assets/icons/broken/double-alt-arrow-up.svg index d7867147..e5ca54cb 100644 --- a/assets/icons/broken/double-alt-arrow-up.svg +++ b/assets/icons/broken/double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/download-minimalistic.svg b/assets/icons/broken/download-minimalistic.svg index 18fb3a4a..3c43a86a 100644 --- a/assets/icons/broken/download-minimalistic.svg +++ b/assets/icons/broken/download-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/download-square.svg b/assets/icons/broken/download-square.svg index 660f32fd..95f04f54 100644 --- a/assets/icons/broken/download-square.svg +++ b/assets/icons/broken/download-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/download-twice-square.svg b/assets/icons/broken/download-twice-square.svg index 2769879a..98a3e6c3 100644 --- a/assets/icons/broken/download-twice-square.svg +++ b/assets/icons/broken/download-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/download.svg b/assets/icons/broken/download.svg index 883298cb..f274bbfd 100644 --- a/assets/icons/broken/download.svg +++ b/assets/icons/broken/download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dropper-2.svg b/assets/icons/broken/dropper-2.svg index e8766040..9f0ee1ec 100644 --- a/assets/icons/broken/dropper-2.svg +++ b/assets/icons/broken/dropper-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dropper-3.svg b/assets/icons/broken/dropper-3.svg index 27a0fc4f..7ec5f1a6 100644 --- a/assets/icons/broken/dropper-3.svg +++ b/assets/icons/broken/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dropper-minimalistic-2.svg b/assets/icons/broken/dropper-minimalistic-2.svg index 7bae837a..3cde6930 100644 --- a/assets/icons/broken/dropper-minimalistic-2.svg +++ b/assets/icons/broken/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dropper-minimalistic.svg b/assets/icons/broken/dropper-minimalistic.svg index 65abd6e2..915c3db0 100644 --- a/assets/icons/broken/dropper-minimalistic.svg +++ b/assets/icons/broken/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dropper.svg b/assets/icons/broken/dropper.svg index 56736bd8..e5ca145b 100644 --- a/assets/icons/broken/dropper.svg +++ b/assets/icons/broken/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbell-large-minimalistic.svg b/assets/icons/broken/dumbbell-large-minimalistic.svg index 6eaac981..308d19d6 100644 --- a/assets/icons/broken/dumbbell-large-minimalistic.svg +++ b/assets/icons/broken/dumbbell-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbell-large.svg b/assets/icons/broken/dumbbell-large.svg index 764fb03d..406e65a7 100644 --- a/assets/icons/broken/dumbbell-large.svg +++ b/assets/icons/broken/dumbbell-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbell-small.svg b/assets/icons/broken/dumbbell-small.svg index a95459fd..4f45edba 100644 --- a/assets/icons/broken/dumbbell-small.svg +++ b/assets/icons/broken/dumbbell-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbell.svg b/assets/icons/broken/dumbbell.svg index 3d71d771..125ec862 100644 --- a/assets/icons/broken/dumbbell.svg +++ b/assets/icons/broken/dumbbell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbells-2.svg b/assets/icons/broken/dumbbells-2.svg index cda3ef06..ed380f9d 100644 --- a/assets/icons/broken/dumbbells-2.svg +++ b/assets/icons/broken/dumbbells-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/dumbbells.svg b/assets/icons/broken/dumbbells.svg index 50e840c7..ce6bca41 100644 --- a/assets/icons/broken/dumbbells.svg +++ b/assets/icons/broken/dumbbells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/electric-refueling.svg b/assets/icons/broken/electric-refueling.svg index 455a831b..dd9f2b12 100644 --- a/assets/icons/broken/electric-refueling.svg +++ b/assets/icons/broken/electric-refueling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/emoji-funny-circle.svg b/assets/icons/broken/emoji-funny-circle.svg index 977c2112..33a02112 100644 --- a/assets/icons/broken/emoji-funny-circle.svg +++ b/assets/icons/broken/emoji-funny-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/emoji-funny-square.svg b/assets/icons/broken/emoji-funny-square.svg index bfc3c8ff..a92c97e8 100644 --- a/assets/icons/broken/emoji-funny-square.svg +++ b/assets/icons/broken/emoji-funny-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/end-call.svg b/assets/icons/broken/end-call.svg index 6805b29b..c823cd01 100644 --- a/assets/icons/broken/end-call.svg +++ b/assets/icons/broken/end-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/eraser-circle.svg b/assets/icons/broken/eraser-circle.svg index 91c30789..ed1208f3 100644 --- a/assets/icons/broken/eraser-circle.svg +++ b/assets/icons/broken/eraser-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/eraser-square.svg b/assets/icons/broken/eraser-square.svg index 35209a10..5d7e69e6 100644 --- a/assets/icons/broken/eraser-square.svg +++ b/assets/icons/broken/eraser-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/eraser.svg b/assets/icons/broken/eraser.svg index ff0a7a03..26b0ea3f 100644 --- a/assets/icons/broken/eraser.svg +++ b/assets/icons/broken/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/euro.svg b/assets/icons/broken/euro.svg index 08185f2f..27553549 100644 --- a/assets/icons/broken/euro.svg +++ b/assets/icons/broken/euro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/exit.svg b/assets/icons/broken/exit.svg index 29569c70..83837e91 100644 --- a/assets/icons/broken/exit.svg +++ b/assets/icons/broken/exit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/export.svg b/assets/icons/broken/export.svg index 2010df13..bc96daa5 100644 --- a/assets/icons/broken/export.svg +++ b/assets/icons/broken/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/expressionless-circle.svg b/assets/icons/broken/expressionless-circle.svg index 3c1cd5c9..46ddc984 100644 --- a/assets/icons/broken/expressionless-circle.svg +++ b/assets/icons/broken/expressionless-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/expressionless-square.svg b/assets/icons/broken/expressionless-square.svg index 2db4ca03..b402efb5 100644 --- a/assets/icons/broken/expressionless-square.svg +++ b/assets/icons/broken/expressionless-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/eye-closed.svg b/assets/icons/broken/eye-closed.svg index a40c09b0..e358feed 100644 --- a/assets/icons/broken/eye-closed.svg +++ b/assets/icons/broken/eye-closed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/eye-scan.svg b/assets/icons/broken/eye-scan.svg index a2f23f6b..71bb092d 100644 --- a/assets/icons/broken/eye-scan.svg +++ b/assets/icons/broken/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/face-scan-circle.svg b/assets/icons/broken/face-scan-circle.svg index 616aa0de..678164b7 100644 --- a/assets/icons/broken/face-scan-circle.svg +++ b/assets/icons/broken/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/face-scan-square.svg b/assets/icons/broken/face-scan-square.svg index a8039125..462a416e 100644 --- a/assets/icons/broken/face-scan-square.svg +++ b/assets/icons/broken/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/facemask-circle.svg b/assets/icons/broken/facemask-circle.svg index d00a2f64..03c4a335 100644 --- a/assets/icons/broken/facemask-circle.svg +++ b/assets/icons/broken/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/facemask-square.svg b/assets/icons/broken/facemask-square.svg index 981456df..4369f33e 100644 --- a/assets/icons/broken/facemask-square.svg +++ b/assets/icons/broken/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ferris-wheel.svg b/assets/icons/broken/ferris-wheel.svg index 19f580af..6a81ee3b 100644 --- a/assets/icons/broken/ferris-wheel.svg +++ b/assets/icons/broken/ferris-wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/figma-file.svg b/assets/icons/broken/figma-file.svg index 2f686ec6..e1f010fb 100644 --- a/assets/icons/broken/figma-file.svg +++ b/assets/icons/broken/figma-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-check.svg b/assets/icons/broken/file-check.svg index 9190fce3..78619f25 100644 --- a/assets/icons/broken/file-check.svg +++ b/assets/icons/broken/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-corrupted.svg b/assets/icons/broken/file-corrupted.svg index e1022bb4..3dd1edb0 100644 --- a/assets/icons/broken/file-corrupted.svg +++ b/assets/icons/broken/file-corrupted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-download.svg b/assets/icons/broken/file-download.svg index 3b20f649..1ba60e20 100644 --- a/assets/icons/broken/file-download.svg +++ b/assets/icons/broken/file-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-favorite.svg b/assets/icons/broken/file-favorite.svg new file mode 100644 index 00000000..d1fac7a4 --- /dev/null +++ b/assets/icons/broken/file-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/file-favourite.svg b/assets/icons/broken/file-favourite.svg deleted file mode 100644 index 07da0c9d..00000000 --- a/assets/icons/broken/file-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/file-left.svg b/assets/icons/broken/file-left.svg index 665e6640..b29cbf4a 100644 --- a/assets/icons/broken/file-left.svg +++ b/assets/icons/broken/file-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-remove.svg b/assets/icons/broken/file-remove.svg index 2b675b27..54760804 100644 --- a/assets/icons/broken/file-remove.svg +++ b/assets/icons/broken/file-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-right.svg b/assets/icons/broken/file-right.svg index 0a44aca6..9ce40684 100644 --- a/assets/icons/broken/file-right.svg +++ b/assets/icons/broken/file-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-send.svg b/assets/icons/broken/file-send.svg index 543c6a80..5d398210 100644 --- a/assets/icons/broken/file-send.svg +++ b/assets/icons/broken/file-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-smile.svg b/assets/icons/broken/file-smile.svg index 49f17294..2d5028af 100644 --- a/assets/icons/broken/file-smile.svg +++ b/assets/icons/broken/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file-text.svg b/assets/icons/broken/file-text.svg index 023ae823..fbdade42 100644 --- a/assets/icons/broken/file-text.svg +++ b/assets/icons/broken/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/file.svg b/assets/icons/broken/file.svg index 7746f192..7f059035 100644 --- a/assets/icons/broken/file.svg +++ b/assets/icons/broken/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/filters.svg b/assets/icons/broken/filters.svg index 4187e5a0..d6169b2d 100644 --- a/assets/icons/broken/filters.svg +++ b/assets/icons/broken/filters.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/flash-drive.svg b/assets/icons/broken/flash-drive.svg index 2d3ebb39..181b2ba7 100644 --- a/assets/icons/broken/flash-drive.svg +++ b/assets/icons/broken/flash-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/flashlight-on.svg b/assets/icons/broken/flashlight-on.svg index c3db0911..3bd49380 100644 --- a/assets/icons/broken/flashlight-on.svg +++ b/assets/icons/broken/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/flashlight.svg b/assets/icons/broken/flashlight.svg index 1e2b31f1..5a0f993e 100644 --- a/assets/icons/broken/flashlight.svg +++ b/assets/icons/broken/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/flip-horizontal.svg b/assets/icons/broken/flip-horizontal.svg index e9826335..4d11e3b7 100644 --- a/assets/icons/broken/flip-horizontal.svg +++ b/assets/icons/broken/flip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/flip-vertical.svg b/assets/icons/broken/flip-vertical.svg index d80792a1..46f80117 100644 --- a/assets/icons/broken/flip-vertical.svg +++ b/assets/icons/broken/flip-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/floor-lamp-minimalistic.svg b/assets/icons/broken/floor-lamp-minimalistic.svg index f13601ca..cb68c8b4 100644 --- a/assets/icons/broken/floor-lamp-minimalistic.svg +++ b/assets/icons/broken/floor-lamp-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/floor-lamp.svg b/assets/icons/broken/floor-lamp.svg index 324324b2..def7e8eb 100644 --- a/assets/icons/broken/floor-lamp.svg +++ b/assets/icons/broken/floor-lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/fog.svg b/assets/icons/broken/fog.svg index c720b197..186a5856 100644 --- a/assets/icons/broken/fog.svg +++ b/assets/icons/broken/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-2.svg b/assets/icons/broken/folder-2.svg index 3cb7bc84..50ccfd20 100644 --- a/assets/icons/broken/folder-2.svg +++ b/assets/icons/broken/folder-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-cloud.svg b/assets/icons/broken/folder-cloud.svg index 652ee3f4..950046e0 100644 --- a/assets/icons/broken/folder-cloud.svg +++ b/assets/icons/broken/folder-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-error.svg b/assets/icons/broken/folder-error.svg index 74719400..31ee25a9 100644 --- a/assets/icons/broken/folder-error.svg +++ b/assets/icons/broken/folder-error.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-favourite-bookmark.svg b/assets/icons/broken/folder-favorite-bookmark.svg similarity index 100% rename from assets/icons/broken/folder-favourite-bookmark.svg rename to assets/icons/broken/folder-favorite-bookmark.svg diff --git a/assets/icons/broken/folder-favourite-star.svg b/assets/icons/broken/folder-favorite-star.svg similarity index 100% rename from assets/icons/broken/folder-favourite-star.svg rename to assets/icons/broken/folder-favorite-star.svg diff --git a/assets/icons/broken/folder-open.svg b/assets/icons/broken/folder-open.svg index 515a1e61..6a35d95d 100644 --- a/assets/icons/broken/folder-open.svg +++ b/assets/icons/broken/folder-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-path-connect.svg b/assets/icons/broken/folder-path-connect.svg index 377f141d..55041d14 100644 --- a/assets/icons/broken/folder-path-connect.svg +++ b/assets/icons/broken/folder-path-connect.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder-security.svg b/assets/icons/broken/folder-security.svg index cb05f66b..1413cb72 100644 --- a/assets/icons/broken/folder-security.svg +++ b/assets/icons/broken/folder-security.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/folder.svg b/assets/icons/broken/folder.svg index 8e20aa16..a89aac96 100644 --- a/assets/icons/broken/folder.svg +++ b/assets/icons/broken/folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/football.svg b/assets/icons/broken/football.svg index db06c005..a8f4fd39 100644 --- a/assets/icons/broken/football.svg +++ b/assets/icons/broken/football.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/forbidden-circle.svg b/assets/icons/broken/forbidden-circle.svg index a5ace3a5..bec8d9f4 100644 --- a/assets/icons/broken/forbidden-circle.svg +++ b/assets/icons/broken/forbidden-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/forbidden.svg b/assets/icons/broken/forbidden.svg index c0efe2a4..661bf0c5 100644 --- a/assets/icons/broken/forbidden.svg +++ b/assets/icons/broken/forbidden.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/forward-2.svg b/assets/icons/broken/forward-2.svg index 00bbb68b..ddb4c9de 100644 --- a/assets/icons/broken/forward-2.svg +++ b/assets/icons/broken/forward-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/forward-right.svg b/assets/icons/broken/forward-right.svg new file mode 100644 index 00000000..237e3f77 --- /dev/null +++ b/assets/icons/broken/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/forward.svg b/assets/icons/broken/forward.svg index c93d37e8..e014963a 100644 --- a/assets/icons/broken/forward.svg +++ b/assets/icons/broken/forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/four-k.svg b/assets/icons/broken/four-k.svg new file mode 100644 index 00000000..81a3bf63 --- /dev/null +++ b/assets/icons/broken/four-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/fridge.svg b/assets/icons/broken/fridge.svg index 267cba4d..6f801d00 100644 --- a/assets/icons/broken/fridge.svg +++ b/assets/icons/broken/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/fuel.svg b/assets/icons/broken/fuel.svg index 34661076..905292b7 100644 --- a/assets/icons/broken/fuel.svg +++ b/assets/icons/broken/fuel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/full-screen-circle.svg b/assets/icons/broken/full-screen-circle.svg index 1b1c974c..d3de904b 100644 --- a/assets/icons/broken/full-screen-circle.svg +++ b/assets/icons/broken/full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/full-screen-square.svg b/assets/icons/broken/full-screen-square.svg index 9f59314e..9906be81 100644 --- a/assets/icons/broken/full-screen-square.svg +++ b/assets/icons/broken/full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/full-screen.svg b/assets/icons/broken/full-screen.svg index 179e44a1..5985f610 100644 --- a/assets/icons/broken/full-screen.svg +++ b/assets/icons/broken/full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gallery-add.svg b/assets/icons/broken/gallery-add.svg index 2ddfc500..bce37072 100644 --- a/assets/icons/broken/gallery-add.svg +++ b/assets/icons/broken/gallery-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gallery-download.svg b/assets/icons/broken/gallery-download.svg index 84e57297..6cc3a608 100644 --- a/assets/icons/broken/gallery-download.svg +++ b/assets/icons/broken/gallery-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gallery-edit.svg b/assets/icons/broken/gallery-edit.svg index d4e8a97f..3a6f51f1 100644 --- a/assets/icons/broken/gallery-edit.svg +++ b/assets/icons/broken/gallery-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gallery-favorite.svg b/assets/icons/broken/gallery-favorite.svg new file mode 100644 index 00000000..82c47288 --- /dev/null +++ b/assets/icons/broken/gallery-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/gallery-favourite.svg b/assets/icons/broken/gallery-favourite.svg deleted file mode 100644 index fbc544ce..00000000 --- a/assets/icons/broken/gallery-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/gallery-remove.svg b/assets/icons/broken/gallery-remove.svg index 9a321730..1bf10e1f 100644 --- a/assets/icons/broken/gallery-remove.svg +++ b/assets/icons/broken/gallery-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gallery-send.svg b/assets/icons/broken/gallery-send.svg index add79ff1..9c499356 100644 --- a/assets/icons/broken/gallery-send.svg +++ b/assets/icons/broken/gallery-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gameboy.svg b/assets/icons/broken/gameboy.svg index d129f831..bcca0612 100644 --- a/assets/icons/broken/gameboy.svg +++ b/assets/icons/broken/gameboy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gamepad-charge.svg b/assets/icons/broken/gamepad-charge.svg index 36393bef..3c3e0cbc 100644 --- a/assets/icons/broken/gamepad-charge.svg +++ b/assets/icons/broken/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gamepad-minimalistic.svg b/assets/icons/broken/gamepad-minimalistic.svg index ce8e6ee7..56d31501 100644 --- a/assets/icons/broken/gamepad-minimalistic.svg +++ b/assets/icons/broken/gamepad-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gamepad-no-charge.svg b/assets/icons/broken/gamepad-no-charge.svg index 9c40b353..f9d356bc 100644 --- a/assets/icons/broken/gamepad-no-charge.svg +++ b/assets/icons/broken/gamepad-no-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gamepad-old.svg b/assets/icons/broken/gamepad-old.svg index c7951f80..c9fc7dcb 100644 --- a/assets/icons/broken/gamepad-old.svg +++ b/assets/icons/broken/gamepad-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gamepad.svg b/assets/icons/broken/gamepad.svg index 4cb25c17..79902252 100644 --- a/assets/icons/broken/gamepad.svg +++ b/assets/icons/broken/gamepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/garage.svg b/assets/icons/broken/garage.svg index 15f21f7d..27c4ab72 100644 --- a/assets/icons/broken/garage.svg +++ b/assets/icons/broken/garage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gas-station.svg b/assets/icons/broken/gas-station.svg index 05e9051c..60611ccd 100644 --- a/assets/icons/broken/gas-station.svg +++ b/assets/icons/broken/gas-station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ghost-smile.svg b/assets/icons/broken/ghost-smile.svg index b3e0915d..75c98504 100644 --- a/assets/icons/broken/ghost-smile.svg +++ b/assets/icons/broken/ghost-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ghost.svg b/assets/icons/broken/ghost.svg index a2418428..1dc9363f 100644 --- a/assets/icons/broken/ghost.svg +++ b/assets/icons/broken/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gift.svg b/assets/icons/broken/gift.svg index 39140863..02284216 100644 --- a/assets/icons/broken/gift.svg +++ b/assets/icons/broken/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/glasses.svg b/assets/icons/broken/glasses.svg index 4c4c4372..eb0f6a42 100644 --- a/assets/icons/broken/glasses.svg +++ b/assets/icons/broken/glasses.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/global.svg b/assets/icons/broken/global.svg index 5b9091bc..5a6b213a 100644 --- a/assets/icons/broken/global.svg +++ b/assets/icons/broken/global.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/globus.svg b/assets/icons/broken/globe.svg similarity index 54% rename from assets/icons/broken/globus.svg rename to assets/icons/broken/globe.svg index 3051f010..04939fc5 100644 --- a/assets/icons/broken/globus.svg +++ b/assets/icons/broken/globe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/golf.svg b/assets/icons/broken/golf.svg index 0234314a..cffbfc7e 100644 --- a/assets/icons/broken/golf.svg +++ b/assets/icons/broken/golf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/gps.svg b/assets/icons/broken/gps.svg index b56bfb07..894f4061 100644 --- a/assets/icons/broken/gps.svg +++ b/assets/icons/broken/gps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/graph-down-new.svg b/assets/icons/broken/graph-down-new.svg index 58f75a76..6bbbd96e 100644 --- a/assets/icons/broken/graph-down-new.svg +++ b/assets/icons/broken/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/graph-down.svg b/assets/icons/broken/graph-down.svg index 33b879e7..a19af740 100644 --- a/assets/icons/broken/graph-down.svg +++ b/assets/icons/broken/graph-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/graph-new-up.svg b/assets/icons/broken/graph-new-up.svg index a5cf46cc..da5da2f3 100644 --- a/assets/icons/broken/graph-new-up.svg +++ b/assets/icons/broken/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/graph-up.svg b/assets/icons/broken/graph-up.svg index d48c4bb7..fcd8295c 100644 --- a/assets/icons/broken/graph-up.svg +++ b/assets/icons/broken/graph-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hamburger-menu.svg b/assets/icons/broken/hamburger-menu.svg index bab44389..fdcfb8b2 100644 --- a/assets/icons/broken/hamburger-menu.svg +++ b/assets/icons/broken/hamburger-menu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hand-heart.svg b/assets/icons/broken/hand-heart.svg index bba86e48..98ad0386 100644 --- a/assets/icons/broken/hand-heart.svg +++ b/assets/icons/broken/hand-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hand-money.svg b/assets/icons/broken/hand-money.svg index d9a86304..fdec84a4 100644 --- a/assets/icons/broken/hand-money.svg +++ b/assets/icons/broken/hand-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hand-pills.svg b/assets/icons/broken/hand-pills.svg index 70fd3637..ea032b50 100644 --- a/assets/icons/broken/hand-pills.svg +++ b/assets/icons/broken/hand-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hand-shake.svg b/assets/icons/broken/hand-shake.svg index 92930be6..943bb66c 100644 --- a/assets/icons/broken/hand-shake.svg +++ b/assets/icons/broken/hand-shake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hand-stars.svg b/assets/icons/broken/hand-stars.svg index c612f346..e3c7f375 100644 --- a/assets/icons/broken/hand-stars.svg +++ b/assets/icons/broken/hand-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hashtag-chat.svg b/assets/icons/broken/hashtag-chat.svg index 913812b8..4de3dc01 100644 --- a/assets/icons/broken/hashtag-chat.svg +++ b/assets/icons/broken/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hashtag-circle.svg b/assets/icons/broken/hashtag-circle.svg index 3c4593cb..8d288581 100644 --- a/assets/icons/broken/hashtag-circle.svg +++ b/assets/icons/broken/hashtag-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hashtag-square.svg b/assets/icons/broken/hashtag-square.svg index fa3ff368..9d3a9bac 100644 --- a/assets/icons/broken/hashtag-square.svg +++ b/assets/icons/broken/hashtag-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hashtag.svg b/assets/icons/broken/hashtag.svg index 3d15bae7..1c860ac6 100644 --- a/assets/icons/broken/hashtag.svg +++ b/assets/icons/broken/hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/headphones-round-sound.svg b/assets/icons/broken/headphones-round-sound.svg index 88f8e9e2..16ea656a 100644 --- a/assets/icons/broken/headphones-round-sound.svg +++ b/assets/icons/broken/headphones-round-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/headphones-round.svg b/assets/icons/broken/headphones-round.svg index bbee7d14..294c8919 100644 --- a/assets/icons/broken/headphones-round.svg +++ b/assets/icons/broken/headphones-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/headphones-square-sound.svg b/assets/icons/broken/headphones-square-sound.svg index 21189af9..ab215ea1 100644 --- a/assets/icons/broken/headphones-square-sound.svg +++ b/assets/icons/broken/headphones-square-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/headphones-square.svg b/assets/icons/broken/headphones-square.svg index 91ef0717..e506ada6 100644 --- a/assets/icons/broken/headphones-square.svg +++ b/assets/icons/broken/headphones-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/health.svg b/assets/icons/broken/health.svg index 787fd533..b0027caa 100644 --- a/assets/icons/broken/health.svg +++ b/assets/icons/broken/health.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-angle.svg b/assets/icons/broken/heart-angle.svg index b434b391..99a1f12b 100644 --- a/assets/icons/broken/heart-angle.svg +++ b/assets/icons/broken/heart-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-broken.svg b/assets/icons/broken/heart-broken.svg deleted file mode 100644 index dd675d07..00000000 --- a/assets/icons/broken/heart-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/heart-crack.svg b/assets/icons/broken/heart-crack.svg new file mode 100644 index 00000000..fdf0e15c --- /dev/null +++ b/assets/icons/broken/heart-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/heart-lock.svg b/assets/icons/broken/heart-lock.svg index 6863c4aa..34632be3 100644 --- a/assets/icons/broken/heart-lock.svg +++ b/assets/icons/broken/heart-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-pulse-2.svg b/assets/icons/broken/heart-pulse-2.svg index d22090ca..fb57793d 100644 --- a/assets/icons/broken/heart-pulse-2.svg +++ b/assets/icons/broken/heart-pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-pulse.svg b/assets/icons/broken/heart-pulse.svg index 7fb62c39..2491892f 100644 --- a/assets/icons/broken/heart-pulse.svg +++ b/assets/icons/broken/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-shine.svg b/assets/icons/broken/heart-shine.svg index 3c8a3ead..184edbf6 100644 --- a/assets/icons/broken/heart-shine.svg +++ b/assets/icons/broken/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart-unlock.svg b/assets/icons/broken/heart-unlock.svg index 160ffce1..944a6816 100644 --- a/assets/icons/broken/heart-unlock.svg +++ b/assets/icons/broken/heart-unlock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/heart.svg b/assets/icons/broken/heart.svg index 620f1fff..84fff99a 100644 --- a/assets/icons/broken/heart.svg +++ b/assets/icons/broken/heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hearts.svg b/assets/icons/broken/hearts.svg index 88dcfa2c..9d08cf2b 100644 --- a/assets/icons/broken/hearts.svg +++ b/assets/icons/broken/hearts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/help.svg b/assets/icons/broken/help.svg index 05dc6f02..1449d8c2 100644 --- a/assets/icons/broken/help.svg +++ b/assets/icons/broken/help.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/high-definition.svg b/assets/icons/broken/high-definition.svg index 80c9b613..087c8f64 100644 --- a/assets/icons/broken/high-definition.svg +++ b/assets/icons/broken/high-definition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hiking-minimalistic.svg b/assets/icons/broken/hiking-minimalistic.svg index 22805738..25046f8d 100644 --- a/assets/icons/broken/hiking-minimalistic.svg +++ b/assets/icons/broken/hiking-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hiking-round.svg b/assets/icons/broken/hiking-round.svg index 00a7dc2f..ec49405c 100644 --- a/assets/icons/broken/hiking-round.svg +++ b/assets/icons/broken/hiking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hiking.svg b/assets/icons/broken/hiking.svg index 2d9cf9df..4dc46f75 100644 --- a/assets/icons/broken/hiking.svg +++ b/assets/icons/broken/hiking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/history.svg b/assets/icons/broken/history.svg index 8e643c1b..00e5e172 100644 --- a/assets/icons/broken/history.svg +++ b/assets/icons/broken/history.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-2.svg b/assets/icons/broken/home-2.svg index 6f365e39..b7f22af2 100644 --- a/assets/icons/broken/home-2.svg +++ b/assets/icons/broken/home-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-add-angle.svg b/assets/icons/broken/home-add-angle.svg index c2c818d5..8707f953 100644 --- a/assets/icons/broken/home-add-angle.svg +++ b/assets/icons/broken/home-add-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-add.svg b/assets/icons/broken/home-add.svg index 3bc869fb..9c6db653 100644 --- a/assets/icons/broken/home-add.svg +++ b/assets/icons/broken/home-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-angle-2.svg b/assets/icons/broken/home-angle-2.svg index ac05d67c..946afe68 100644 --- a/assets/icons/broken/home-angle-2.svg +++ b/assets/icons/broken/home-angle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-angle.svg b/assets/icons/broken/home-angle.svg index 5f16f4a1..90cb20f1 100644 --- a/assets/icons/broken/home-angle.svg +++ b/assets/icons/broken/home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/home-wifi-angle.svg b/assets/icons/broken/home-wi-fi-angle.svg similarity index 100% rename from assets/icons/broken/home-wifi-angle.svg rename to assets/icons/broken/home-wi-fi-angle.svg diff --git a/assets/icons/broken/home-wifi.svg b/assets/icons/broken/home-wi-fi.svg similarity index 100% rename from assets/icons/broken/home-wifi.svg rename to assets/icons/broken/home-wi-fi.svg diff --git a/assets/icons/broken/home.svg b/assets/icons/broken/home.svg index 0ef8944a..e937e6a4 100644 --- a/assets/icons/broken/home.svg +++ b/assets/icons/broken/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hospital.svg b/assets/icons/broken/hospital.svg index b75945ae..8b238346 100644 --- a/assets/icons/broken/hospital.svg +++ b/assets/icons/broken/hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/hourglass-line.svg b/assets/icons/broken/hourglass-line.svg index 5220af83..937e4ca8 100644 --- a/assets/icons/broken/hourglass-line.svg +++ b/assets/icons/broken/hourglass-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/house.svg b/assets/icons/broken/house.svg new file mode 100644 index 00000000..2988defa --- /dev/null +++ b/assets/icons/broken/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/i-phone.svg b/assets/icons/broken/i-phone.svg new file mode 100644 index 00000000..1fb2b6f6 --- /dev/null +++ b/assets/icons/broken/i-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/import.svg b/assets/icons/broken/import.svg index c8d28581..da61ca34 100644 --- a/assets/icons/broken/import.svg +++ b/assets/icons/broken/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/inbox-in.svg b/assets/icons/broken/inbox-in.svg index f375a59f..dbc16e28 100644 --- a/assets/icons/broken/inbox-in.svg +++ b/assets/icons/broken/inbox-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/inbox-line.svg b/assets/icons/broken/inbox-line.svg index 2837f43c..7d476bc8 100644 --- a/assets/icons/broken/inbox-line.svg +++ b/assets/icons/broken/inbox-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/inbox-out.svg b/assets/icons/broken/inbox-out.svg index 480f24e6..6926b915 100644 --- a/assets/icons/broken/inbox-out.svg +++ b/assets/icons/broken/inbox-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/incognito.svg b/assets/icons/broken/incognito.svg index 79914ebc..3786820a 100644 --- a/assets/icons/broken/incognito.svg +++ b/assets/icons/broken/incognito.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/incoming-call-rounded.svg b/assets/icons/broken/incoming-call-rounded.svg index bc1d801d..71706846 100644 --- a/assets/icons/broken/incoming-call-rounded.svg +++ b/assets/icons/broken/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/incoming-call.svg b/assets/icons/broken/incoming-call.svg index da0bcc48..7aaa1fc7 100644 --- a/assets/icons/broken/incoming-call.svg +++ b/assets/icons/broken/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/infinite.svg b/assets/icons/broken/infinite.svg new file mode 100644 index 00000000..61a3399f --- /dev/null +++ b/assets/icons/broken/infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/infinity.svg b/assets/icons/broken/infinity.svg deleted file mode 100644 index 406fa386..00000000 --- a/assets/icons/broken/infinity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/info-circle.svg b/assets/icons/broken/info-circle.svg index e4599bf9..b444f641 100644 --- a/assets/icons/broken/info-circle.svg +++ b/assets/icons/broken/info-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/info-square.svg b/assets/icons/broken/info-square.svg index 24351d46..082357bd 100644 --- a/assets/icons/broken/info-square.svg +++ b/assets/icons/broken/info-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/iphone.svg b/assets/icons/broken/iphone.svg deleted file mode 100644 index 5f069ecc..00000000 --- a/assets/icons/broken/iphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/jar-of-pills-2.svg b/assets/icons/broken/jar-of-pills-2.svg index a154d910..8634e2da 100644 --- a/assets/icons/broken/jar-of-pills-2.svg +++ b/assets/icons/broken/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/jar-of-pills.svg b/assets/icons/broken/jar-of-pills.svg index 6eadbffe..f02939dd 100644 --- a/assets/icons/broken/jar-of-pills.svg +++ b/assets/icons/broken/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/key-minimalistic-2.svg b/assets/icons/broken/key-minimalistic-2.svg index 55d39bcc..b11b0405 100644 --- a/assets/icons/broken/key-minimalistic-2.svg +++ b/assets/icons/broken/key-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/key-minimalistic-square-2.svg b/assets/icons/broken/key-minimalistic-square-2.svg index 32ca6e1b..18224dd2 100644 --- a/assets/icons/broken/key-minimalistic-square-2.svg +++ b/assets/icons/broken/key-minimalistic-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/key-minimalistic-square.svg b/assets/icons/broken/key-minimalistic-square.svg index 55abb0f1..db175b9e 100644 --- a/assets/icons/broken/key-minimalistic-square.svg +++ b/assets/icons/broken/key-minimalistic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/key-minimalistic.svg b/assets/icons/broken/key-minimalistic.svg index f99df55f..ddee39a0 100644 --- a/assets/icons/broken/key-minimalistic.svg +++ b/assets/icons/broken/key-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/keyboard.svg b/assets/icons/broken/keyboard.svg index 0e3c6c6b..5c3db9df 100644 --- a/assets/icons/broken/keyboard.svg +++ b/assets/icons/broken/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/kick-scooter.svg b/assets/icons/broken/kick-scooter.svg index a07ec3c8..f965b256 100644 --- a/assets/icons/broken/kick-scooter.svg +++ b/assets/icons/broken/kick-scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lamp.svg b/assets/icons/broken/lamp.svg index c41f41d0..5098b19f 100644 --- a/assets/icons/broken/lamp.svg +++ b/assets/icons/broken/lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/laptop-2.svg b/assets/icons/broken/laptop-2.svg index 4a34e23f..1a035b00 100644 --- a/assets/icons/broken/laptop-2.svg +++ b/assets/icons/broken/laptop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/laptop-3.svg b/assets/icons/broken/laptop-3.svg index afd40057..c6016d53 100644 --- a/assets/icons/broken/laptop-3.svg +++ b/assets/icons/broken/laptop-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/laptop-minimalistic.svg b/assets/icons/broken/laptop-minimalistic.svg index 976fca0c..2e954b1c 100644 --- a/assets/icons/broken/laptop-minimalistic.svg +++ b/assets/icons/broken/laptop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/laptop.svg b/assets/icons/broken/laptop.svg index be344d29..d10977af 100644 --- a/assets/icons/broken/laptop.svg +++ b/assets/icons/broken/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/layers-minimalistic.svg b/assets/icons/broken/layers-minimalistic.svg index 926a340b..61471582 100644 --- a/assets/icons/broken/layers-minimalistic.svg +++ b/assets/icons/broken/layers-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/leaf.svg b/assets/icons/broken/leaf.svg index 646bc7e8..9f3c758e 100644 --- a/assets/icons/broken/leaf.svg +++ b/assets/icons/broken/leaf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/letter-opened.svg b/assets/icons/broken/letter-opened.svg index bd63c1bb..ff2233b4 100644 --- a/assets/icons/broken/letter-opened.svg +++ b/assets/icons/broken/letter-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/library.svg b/assets/icons/broken/library.svg index 7b13a506..8dd18f4b 100644 --- a/assets/icons/broken/library.svg +++ b/assets/icons/broken/library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lightbulb-minimalistic.svg b/assets/icons/broken/lightbulb-minimalistic.svg index bd3c3383..e0b98d92 100644 --- a/assets/icons/broken/lightbulb-minimalistic.svg +++ b/assets/icons/broken/lightbulb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lightbulb.svg b/assets/icons/broken/lightbulb.svg index 062beccc..ec99cae5 100644 --- a/assets/icons/broken/lightbulb.svg +++ b/assets/icons/broken/lightbulb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lightning.svg b/assets/icons/broken/lightning.svg index b9293e6a..c13d96d2 100644 --- a/assets/icons/broken/lightning.svg +++ b/assets/icons/broken/lightning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/like.svg b/assets/icons/broken/like.svg index 34e168a2..ef8c1c30 100644 --- a/assets/icons/broken/like.svg +++ b/assets/icons/broken/like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/link-broken-minimalistic.svg b/assets/icons/broken/link-broken-minimalistic.svg deleted file mode 100644 index c02291d0..00000000 --- a/assets/icons/broken/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/link-broken.svg b/assets/icons/broken/link-broken.svg deleted file mode 100644 index 2bc1a7f9..00000000 --- a/assets/icons/broken/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/link-minimalistic-2.svg b/assets/icons/broken/link-minimalistic-2.svg index a2979022..073d7435 100644 --- a/assets/icons/broken/link-minimalistic-2.svg +++ b/assets/icons/broken/link-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/link-minimalistic.svg b/assets/icons/broken/link-minimalistic.svg index c3cbcec8..f9cf1aea 100644 --- a/assets/icons/broken/link-minimalistic.svg +++ b/assets/icons/broken/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-arrow-down-minimalistic.svg b/assets/icons/broken/list-arrow-down-minimalistic.svg index 4cfc5cf9..35ceda21 100644 --- a/assets/icons/broken/list-arrow-down-minimalistic.svg +++ b/assets/icons/broken/list-arrow-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-arrow-down.svg b/assets/icons/broken/list-arrow-down.svg index 7e5faaf6..828c71a6 100644 --- a/assets/icons/broken/list-arrow-down.svg +++ b/assets/icons/broken/list-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-arrow-up-minimalistic.svg b/assets/icons/broken/list-arrow-up-minimalistic.svg index 4e81047c..d97b3928 100644 --- a/assets/icons/broken/list-arrow-up-minimalistic.svg +++ b/assets/icons/broken/list-arrow-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-arrow-up.svg b/assets/icons/broken/list-arrow-up.svg index 676c2751..2dde93ea 100644 --- a/assets/icons/broken/list-arrow-up.svg +++ b/assets/icons/broken/list-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-check-minimalistic.svg b/assets/icons/broken/list-check-minimalistic.svg index 272b6f4c..e4f6019a 100644 --- a/assets/icons/broken/list-check-minimalistic.svg +++ b/assets/icons/broken/list-check-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-check.svg b/assets/icons/broken/list-check.svg index 2a9569d8..eb2fc821 100644 --- a/assets/icons/broken/list-check.svg +++ b/assets/icons/broken/list-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-cross-minimalistic.svg b/assets/icons/broken/list-cross-minimalistic.svg index 17d71bc0..95d448ec 100644 --- a/assets/icons/broken/list-cross-minimalistic.svg +++ b/assets/icons/broken/list-cross-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-cross.svg b/assets/icons/broken/list-cross.svg index 4543e07b..61b33363 100644 --- a/assets/icons/broken/list-cross.svg +++ b/assets/icons/broken/list-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-down-minimalistic.svg b/assets/icons/broken/list-down-minimalistic.svg index 259ba558..bbc5fee6 100644 --- a/assets/icons/broken/list-down-minimalistic.svg +++ b/assets/icons/broken/list-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-down.svg b/assets/icons/broken/list-down.svg index 3e329a84..df16b92b 100644 --- a/assets/icons/broken/list-down.svg +++ b/assets/icons/broken/list-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-heart-minimalistic.svg b/assets/icons/broken/list-heart-minimalistic.svg index 86ea2a07..75d8eb99 100644 --- a/assets/icons/broken/list-heart-minimalistic.svg +++ b/assets/icons/broken/list-heart-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-heart.svg b/assets/icons/broken/list-heart.svg index 9e873a20..949ec24b 100644 --- a/assets/icons/broken/list-heart.svg +++ b/assets/icons/broken/list-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-up-minimalistic.svg b/assets/icons/broken/list-up-minimalistic.svg index 101076da..efa1d492 100644 --- a/assets/icons/broken/list-up-minimalistic.svg +++ b/assets/icons/broken/list-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-up.svg b/assets/icons/broken/list-up.svg index c386721c..b1ab9fce 100644 --- a/assets/icons/broken/list-up.svg +++ b/assets/icons/broken/list-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/list-vertical.svg b/assets/icons/broken/list-vertical.svg new file mode 100644 index 00000000..1901f0cb --- /dev/null +++ b/assets/icons/broken/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/list.svg b/assets/icons/broken/list.svg index e34a3cf9..39dc612a 100644 --- a/assets/icons/broken/list.svg +++ b/assets/icons/broken/list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-keyhole-minimalistic-unlocked.svg b/assets/icons/broken/lock-keyhole-minimalistic-unlocked.svg index 2791e656..7f39c112 100644 --- a/assets/icons/broken/lock-keyhole-minimalistic-unlocked.svg +++ b/assets/icons/broken/lock-keyhole-minimalistic-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-keyhole-minimalistic.svg b/assets/icons/broken/lock-keyhole-minimalistic.svg index 9564378d..b8f311c8 100644 --- a/assets/icons/broken/lock-keyhole-minimalistic.svg +++ b/assets/icons/broken/lock-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-keyhole-unlocked.svg b/assets/icons/broken/lock-keyhole-unlocked.svg index 9502e6d5..3012aa05 100644 --- a/assets/icons/broken/lock-keyhole-unlocked.svg +++ b/assets/icons/broken/lock-keyhole-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-keyhole.svg b/assets/icons/broken/lock-keyhole.svg index 6d7bd572..c3a12d68 100644 --- a/assets/icons/broken/lock-keyhole.svg +++ b/assets/icons/broken/lock-keyhole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-password-unlocked.svg b/assets/icons/broken/lock-password-unlocked.svg index cc60d363..928ed6a2 100644 --- a/assets/icons/broken/lock-password-unlocked.svg +++ b/assets/icons/broken/lock-password-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-password.svg b/assets/icons/broken/lock-password.svg index c813e850..a9114379 100644 --- a/assets/icons/broken/lock-password.svg +++ b/assets/icons/broken/lock-password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock-unlocked.svg b/assets/icons/broken/lock-unlocked.svg index d0451eaf..0dd3d928 100644 --- a/assets/icons/broken/lock-unlocked.svg +++ b/assets/icons/broken/lock-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/lock.svg b/assets/icons/broken/lock.svg index 6be5cb0c..44eb68f5 100644 --- a/assets/icons/broken/lock.svg +++ b/assets/icons/broken/lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/login-2.svg b/assets/icons/broken/login-2.svg index df3c9485..f6d4c673 100644 --- a/assets/icons/broken/login-2.svg +++ b/assets/icons/broken/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/login-3.svg b/assets/icons/broken/login-3.svg index 69a73a8c..2cfbe30e 100644 --- a/assets/icons/broken/login-3.svg +++ b/assets/icons/broken/login-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/login.svg b/assets/icons/broken/login.svg index 7e7afa93..69aac8cc 100644 --- a/assets/icons/broken/login.svg +++ b/assets/icons/broken/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/logout-2.svg b/assets/icons/broken/logout-2.svg new file mode 100644 index 00000000..fbc961dc --- /dev/null +++ b/assets/icons/broken/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/logout-3.svg b/assets/icons/broken/logout-3.svg index d5996d88..fee9c005 100644 --- a/assets/icons/broken/logout-3.svg +++ b/assets/icons/broken/logout-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/logout.svg b/assets/icons/broken/logout.svg new file mode 100644 index 00000000..d73251ed --- /dev/null +++ b/assets/icons/broken/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/magic-stick-3.svg b/assets/icons/broken/magic-stick-3.svg deleted file mode 100644 index 6db5a428..00000000 --- a/assets/icons/broken/magic-stick-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/magic-stick-2.svg b/assets/icons/broken/magic-wand-2.svg similarity index 73% rename from assets/icons/broken/magic-stick-2.svg rename to assets/icons/broken/magic-wand-2.svg index 68af2c25..b90cd806 100644 --- a/assets/icons/broken/magic-stick-2.svg +++ b/assets/icons/broken/magic-wand-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/magic-wand-3.svg b/assets/icons/broken/magic-wand-3.svg new file mode 100644 index 00000000..6db5bec1 --- /dev/null +++ b/assets/icons/broken/magic-wand-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/magic-stick.svg b/assets/icons/broken/magic-wand.svg similarity index 71% rename from assets/icons/broken/magic-stick.svg rename to assets/icons/broken/magic-wand.svg index 2f19ccc5..7f2eb9f9 100644 --- a/assets/icons/broken/magic-stick.svg +++ b/assets/icons/broken/magic-wand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/magnet-wave.svg b/assets/icons/broken/magnet-wave.svg index 39afc159..1ae4bec4 100644 --- a/assets/icons/broken/magnet-wave.svg +++ b/assets/icons/broken/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/magnifer-zoom-in.svg b/assets/icons/broken/magnifer-zoom-in.svg deleted file mode 100644 index db602842..00000000 --- a/assets/icons/broken/magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/magnifer-zoom-out.svg b/assets/icons/broken/magnifer-zoom-out.svg deleted file mode 100644 index cd2b1c7b..00000000 --- a/assets/icons/broken/magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/magnifer.svg b/assets/icons/broken/magnifer.svg deleted file mode 100644 index 92fcc4d2..00000000 --- a/assets/icons/broken/magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/magnifer-bug.svg b/assets/icons/broken/magnifier-bug.svg similarity index 67% rename from assets/icons/broken/magnifer-bug.svg rename to assets/icons/broken/magnifier-bug.svg index ecfae345..9c0ffff3 100644 --- a/assets/icons/broken/magnifer-bug.svg +++ b/assets/icons/broken/magnifier-bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/magnifier-zoom-in.svg b/assets/icons/broken/magnifier-zoom-in.svg new file mode 100644 index 00000000..4887bc6d --- /dev/null +++ b/assets/icons/broken/magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/magnifier-zoom-out.svg b/assets/icons/broken/magnifier-zoom-out.svg new file mode 100644 index 00000000..9ac17508 --- /dev/null +++ b/assets/icons/broken/magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/magnifier.svg b/assets/icons/broken/magnifier.svg new file mode 100644 index 00000000..92a6929b --- /dev/null +++ b/assets/icons/broken/magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/mailbox.svg b/assets/icons/broken/mailbox.svg index 90b19628..3c1b01fa 100644 --- a/assets/icons/broken/mailbox.svg +++ b/assets/icons/broken/mailbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/map-point-add.svg b/assets/icons/broken/map-point-add.svg index eafa5de5..4fd541db 100644 --- a/assets/icons/broken/map-point-add.svg +++ b/assets/icons/broken/map-point-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/map-point-favorite.svg b/assets/icons/broken/map-point-favorite.svg new file mode 100644 index 00000000..97954d63 --- /dev/null +++ b/assets/icons/broken/map-point-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/map-point-favourite.svg b/assets/icons/broken/map-point-favourite.svg deleted file mode 100644 index 7e6ea12f..00000000 --- a/assets/icons/broken/map-point-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/map-point-hospital.svg b/assets/icons/broken/map-point-hospital.svg index cff0c2b1..430f4389 100644 --- a/assets/icons/broken/map-point-hospital.svg +++ b/assets/icons/broken/map-point-hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/map-point-remove.svg b/assets/icons/broken/map-point-remove.svg index c9e72e62..30c2c841 100644 --- a/assets/icons/broken/map-point-remove.svg +++ b/assets/icons/broken/map-point-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/map-point-rotate.svg b/assets/icons/broken/map-point-rotate.svg index a32e1207..7b85e1eb 100644 --- a/assets/icons/broken/map-point-rotate.svg +++ b/assets/icons/broken/map-point-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/map.svg b/assets/icons/broken/map.svg index 4c60b166..90dd2cdf 100644 --- a/assets/icons/broken/map.svg +++ b/assets/icons/broken/map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mask-happly.svg b/assets/icons/broken/mask-happy.svg similarity index 72% rename from assets/icons/broken/mask-happly.svg rename to assets/icons/broken/mask-happy.svg index 7af3c5d0..5efc37f5 100644 --- a/assets/icons/broken/mask-happly.svg +++ b/assets/icons/broken/mask-happy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mask-sad.svg b/assets/icons/broken/mask-sad.svg index a69d156a..da3c6929 100644 --- a/assets/icons/broken/mask-sad.svg +++ b/assets/icons/broken/mask-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/masks.svg b/assets/icons/broken/masks.svg index f3a875f6..77a5a9a9 100644 --- a/assets/icons/broken/masks.svg +++ b/assets/icons/broken/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/maximize-square-2.svg b/assets/icons/broken/maximize-square-2.svg index e6fe55fb..2bbb9ecd 100644 --- a/assets/icons/broken/maximize-square-2.svg +++ b/assets/icons/broken/maximize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/maximize-square-3.svg b/assets/icons/broken/maximize-square-3.svg index 244758bc..56db5c72 100644 --- a/assets/icons/broken/maximize-square-3.svg +++ b/assets/icons/broken/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/maximize-square-minimalistic.svg b/assets/icons/broken/maximize-square-minimalistic.svg index 76a6183f..5e8ec395 100644 --- a/assets/icons/broken/maximize-square-minimalistic.svg +++ b/assets/icons/broken/maximize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/maximize-square.svg b/assets/icons/broken/maximize-square.svg index 01393ca1..21ebd60c 100644 --- a/assets/icons/broken/maximize-square.svg +++ b/assets/icons/broken/maximize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/maximize.svg b/assets/icons/broken/maximize.svg index 21220e4b..35e8ad1c 100644 --- a/assets/icons/broken/maximize.svg +++ b/assets/icons/broken/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/medal-ribbons-star.svg b/assets/icons/broken/medal-ribbons-star.svg index bbc13a7f..690d2f17 100644 --- a/assets/icons/broken/medal-ribbons-star.svg +++ b/assets/icons/broken/medal-ribbons-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/medal-star-circle.svg b/assets/icons/broken/medal-star-circle.svg index f5b1ffd2..c6b90f13 100644 --- a/assets/icons/broken/medal-star-circle.svg +++ b/assets/icons/broken/medal-star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/medal-star-square.svg b/assets/icons/broken/medal-star-square.svg index ce356e4e..ab5f46ba 100644 --- a/assets/icons/broken/medal-star-square.svg +++ b/assets/icons/broken/medal-star-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/meditation-round.svg b/assets/icons/broken/meditation-round.svg index ba4017cf..65f9c024 100644 --- a/assets/icons/broken/meditation-round.svg +++ b/assets/icons/broken/meditation-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/meditation.svg b/assets/icons/broken/meditation.svg index 9d6a73cf..dbb3b123 100644 --- a/assets/icons/broken/meditation.svg +++ b/assets/icons/broken/meditation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/men.svg b/assets/icons/broken/men.svg index 8cbf6921..fd502098 100644 --- a/assets/icons/broken/men.svg +++ b/assets/icons/broken/men.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/menu-dots-circle.svg b/assets/icons/broken/menu-dots-circle.svg index 089b1bd2..64db67a7 100644 --- a/assets/icons/broken/menu-dots-circle.svg +++ b/assets/icons/broken/menu-dots-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/menu-dots-square.svg b/assets/icons/broken/menu-dots-square.svg index f195376d..19059563 100644 --- a/assets/icons/broken/menu-dots-square.svg +++ b/assets/icons/broken/menu-dots-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/microphone-2.svg b/assets/icons/broken/microphone-2.svg index 5e932d09..acd54baa 100644 --- a/assets/icons/broken/microphone-2.svg +++ b/assets/icons/broken/microphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/microphone-3.svg b/assets/icons/broken/microphone-3.svg index abf0c6e6..60bacbae 100644 --- a/assets/icons/broken/microphone-3.svg +++ b/assets/icons/broken/microphone-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/microphone-large.svg b/assets/icons/broken/microphone-large.svg index 63c85249..1b739e10 100644 --- a/assets/icons/broken/microphone-large.svg +++ b/assets/icons/broken/microphone-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/microphone.svg b/assets/icons/broken/microphone.svg index 587a041e..376ca859 100644 --- a/assets/icons/broken/microphone.svg +++ b/assets/icons/broken/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifer-zoom-in.svg b/assets/icons/broken/minimalistic-magnifer-zoom-in.svg deleted file mode 100644 index bf5003c4..00000000 --- a/assets/icons/broken/minimalistic-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifer-zoom-out.svg b/assets/icons/broken/minimalistic-magnifer-zoom-out.svg deleted file mode 100644 index 95fc3d4f..00000000 --- a/assets/icons/broken/minimalistic-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifer.svg b/assets/icons/broken/minimalistic-magnifer.svg deleted file mode 100644 index 10aa78db..00000000 --- a/assets/icons/broken/minimalistic-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifer-bug.svg b/assets/icons/broken/minimalistic-magnifier-bug.svg similarity index 68% rename from assets/icons/broken/minimalistic-magnifer-bug.svg rename to assets/icons/broken/minimalistic-magnifier-bug.svg index c25e6827..22f8c814 100644 --- a/assets/icons/broken/minimalistic-magnifer-bug.svg +++ b/assets/icons/broken/minimalistic-magnifier-bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifier-zoom-in.svg b/assets/icons/broken/minimalistic-magnifier-zoom-in.svg new file mode 100644 index 00000000..d6adbd5d --- /dev/null +++ b/assets/icons/broken/minimalistic-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifier-zoom-out.svg b/assets/icons/broken/minimalistic-magnifier-zoom-out.svg new file mode 100644 index 00000000..0e33c402 --- /dev/null +++ b/assets/icons/broken/minimalistic-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/minimalistic-magnifier.svg b/assets/icons/broken/minimalistic-magnifier.svg new file mode 100644 index 00000000..e4267756 --- /dev/null +++ b/assets/icons/broken/minimalistic-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/minimize-square-2.svg b/assets/icons/broken/minimize-square-2.svg index 3cd467a0..9b7bee83 100644 --- a/assets/icons/broken/minimize-square-2.svg +++ b/assets/icons/broken/minimize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimize-square-3.svg b/assets/icons/broken/minimize-square-3.svg index ba4d1ee7..6a47decc 100644 --- a/assets/icons/broken/minimize-square-3.svg +++ b/assets/icons/broken/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimize-square-minimalistic.svg b/assets/icons/broken/minimize-square-minimalistic.svg index 90998037..d935cd1e 100644 --- a/assets/icons/broken/minimize-square-minimalistic.svg +++ b/assets/icons/broken/minimize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimize-square.svg b/assets/icons/broken/minimize-square.svg index e61714c4..f8b8e3a3 100644 --- a/assets/icons/broken/minimize-square.svg +++ b/assets/icons/broken/minimize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minimize.svg b/assets/icons/broken/minimize.svg index afb67e08..67c0c536 100644 --- a/assets/icons/broken/minimize.svg +++ b/assets/icons/broken/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minus-circle.svg b/assets/icons/broken/minus-circle.svg index b51b7f4f..e77a6bd7 100644 --- a/assets/icons/broken/minus-circle.svg +++ b/assets/icons/broken/minus-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/minus-square.svg b/assets/icons/broken/minus-square.svg index 055df0b9..c68a1cdc 100644 --- a/assets/icons/broken/minus-square.svg +++ b/assets/icons/broken/minus-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mirror-2.svg b/assets/icons/broken/mirror-2.svg new file mode 100644 index 00000000..829980c5 --- /dev/null +++ b/assets/icons/broken/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/mirror.svg b/assets/icons/broken/mirror.svg index e2f4b6fe..bd46752f 100644 --- a/assets/icons/broken/mirror.svg +++ b/assets/icons/broken/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/money-bag.svg b/assets/icons/broken/money-bag.svg index 254b527d..2332a09f 100644 --- a/assets/icons/broken/money-bag.svg +++ b/assets/icons/broken/money-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wad-of-money.svg b/assets/icons/broken/money-roll.svg similarity index 74% rename from assets/icons/broken/wad-of-money.svg rename to assets/icons/broken/money-roll.svg index 62df5021..1384c024 100644 --- a/assets/icons/broken/wad-of-money.svg +++ b/assets/icons/broken/money-roll.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/monitor-camera.svg b/assets/icons/broken/monitor-camera.svg index ef0c1173..7b3eff9e 100644 --- a/assets/icons/broken/monitor-camera.svg +++ b/assets/icons/broken/monitor-camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/monitor-smartphone.svg b/assets/icons/broken/monitor-smartphone.svg index f73174a7..13f369f3 100644 --- a/assets/icons/broken/monitor-smartphone.svg +++ b/assets/icons/broken/monitor-smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/monitor.svg b/assets/icons/broken/monitor.svg index 320c3a82..0bad62cf 100644 --- a/assets/icons/broken/monitor.svg +++ b/assets/icons/broken/monitor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/moon-fog.svg b/assets/icons/broken/moon-fog.svg index 93a627e0..4403b560 100644 --- a/assets/icons/broken/moon-fog.svg +++ b/assets/icons/broken/moon-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/moon-sleep.svg b/assets/icons/broken/moon-sleep.svg index 33d30c5e..05c831fb 100644 --- a/assets/icons/broken/moon-sleep.svg +++ b/assets/icons/broken/moon-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/moon-stars.svg b/assets/icons/broken/moon-stars.svg index b671566b..78c59329 100644 --- a/assets/icons/broken/moon-stars.svg +++ b/assets/icons/broken/moon-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/moon.svg b/assets/icons/broken/moon.svg index eef8e144..a194de62 100644 --- a/assets/icons/broken/moon.svg +++ b/assets/icons/broken/moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mouse-circle.svg b/assets/icons/broken/mouse-circle.svg index de90a361..fc390ae9 100644 --- a/assets/icons/broken/mouse-circle.svg +++ b/assets/icons/broken/mouse-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mouse-minimalistic.svg b/assets/icons/broken/mouse-minimalistic.svg index 45c668dc..b4960bad 100644 --- a/assets/icons/broken/mouse-minimalistic.svg +++ b/assets/icons/broken/mouse-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/move-to-folder.svg b/assets/icons/broken/move-to-folder.svg index 64ef96c8..5b8c6213 100644 --- a/assets/icons/broken/move-to-folder.svg +++ b/assets/icons/broken/move-to-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/mug.svg b/assets/icons/broken/mug.svg new file mode 100644 index 00000000..d4197877 --- /dev/null +++ b/assets/icons/broken/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/music-library-2.svg b/assets/icons/broken/music-library-2.svg index 052a41fd..fa73215d 100644 --- a/assets/icons/broken/music-library-2.svg +++ b/assets/icons/broken/music-library-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-library.svg b/assets/icons/broken/music-library.svg index bb95dae6..49289fa6 100644 --- a/assets/icons/broken/music-library.svg +++ b/assets/icons/broken/music-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-note-3.svg b/assets/icons/broken/music-note-3.svg index f8359c6c..a00ed8a2 100644 --- a/assets/icons/broken/music-note-3.svg +++ b/assets/icons/broken/music-note-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-note-4.svg b/assets/icons/broken/music-note-4.svg index dfc2ea8b..5797bda8 100644 --- a/assets/icons/broken/music-note-4.svg +++ b/assets/icons/broken/music-note-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-note-slider-2.svg b/assets/icons/broken/music-note-slider-2.svg index 65009a6f..835ca087 100644 --- a/assets/icons/broken/music-note-slider-2.svg +++ b/assets/icons/broken/music-note-slider-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-note.svg b/assets/icons/broken/music-note.svg index fe39f151..64875be8 100644 --- a/assets/icons/broken/music-note.svg +++ b/assets/icons/broken/music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/music-notes.svg b/assets/icons/broken/music-notes.svg index 849ccfe2..30c533a5 100644 --- a/assets/icons/broken/music-notes.svg +++ b/assets/icons/broken/music-notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/muted.svg b/assets/icons/broken/muted.svg index 854faa11..9611f950 100644 --- a/assets/icons/broken/muted.svg +++ b/assets/icons/broken/muted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notebook-2.svg b/assets/icons/broken/notebook-2.svg new file mode 100644 index 00000000..8f1b672b --- /dev/null +++ b/assets/icons/broken/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/notebook-bookmark.svg b/assets/icons/broken/notebook-bookmark.svg index 4e5badac..e20d064e 100644 --- a/assets/icons/broken/notebook-bookmark.svg +++ b/assets/icons/broken/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notebook-minimalistic.svg b/assets/icons/broken/notebook-minimalistic.svg index 907e6ae6..f489598e 100644 --- a/assets/icons/broken/notebook-minimalistic.svg +++ b/assets/icons/broken/notebook-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notebook-square.svg b/assets/icons/broken/notebook-square.svg index 2ca51e43..52e1a3b6 100644 --- a/assets/icons/broken/notebook-square.svg +++ b/assets/icons/broken/notebook-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notebook.svg b/assets/icons/broken/notebook.svg index bd7bbf4f..88e74120 100644 --- a/assets/icons/broken/notebook.svg +++ b/assets/icons/broken/notebook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notes.svg b/assets/icons/broken/notes.svg index 38e44d87..9547afc9 100644 --- a/assets/icons/broken/notes.svg +++ b/assets/icons/broken/notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notification-lines-remove.svg b/assets/icons/broken/notification-lines-remove.svg index e75a38fe..5d81cf7e 100644 --- a/assets/icons/broken/notification-lines-remove.svg +++ b/assets/icons/broken/notification-lines-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notification-remove.svg b/assets/icons/broken/notification-remove.svg index 02f7a45a..bcb6debe 100644 --- a/assets/icons/broken/notification-remove.svg +++ b/assets/icons/broken/notification-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/notification-unread-lines.svg b/assets/icons/broken/notification-unread-lines.svg index 43873225..11a777b7 100644 --- a/assets/icons/broken/notification-unread-lines.svg +++ b/assets/icons/broken/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/object-scan.svg b/assets/icons/broken/object-scan.svg index bb7a947b..99c787a1 100644 --- a/assets/icons/broken/object-scan.svg +++ b/assets/icons/broken/object-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/outgoing-call-rounded.svg b/assets/icons/broken/outgoing-call-rounded.svg index 48ea9d8d..cff73cc3 100644 --- a/assets/icons/broken/outgoing-call-rounded.svg +++ b/assets/icons/broken/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/outgoing-call.svg b/assets/icons/broken/outgoing-call.svg index f5eaed88..b2011941 100644 --- a/assets/icons/broken/outgoing-call.svg +++ b/assets/icons/broken/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/oven-mitts-minimalistic.svg b/assets/icons/broken/oven-mitts-minimalistic.svg index 8c4f6f60..53f2919e 100644 --- a/assets/icons/broken/oven-mitts-minimalistic.svg +++ b/assets/icons/broken/oven-mitts-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/oven-mitts.svg b/assets/icons/broken/oven-mitts.svg index c0524e64..ca2ad851 100644 --- a/assets/icons/broken/oven-mitts.svg +++ b/assets/icons/broken/oven-mitts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/paint-roller.svg b/assets/icons/broken/paint-roller.svg index 701871f2..d9e22d31 100644 --- a/assets/icons/broken/paint-roller.svg +++ b/assets/icons/broken/paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pallete-2.svg b/assets/icons/broken/palette-2.svg similarity index 79% rename from assets/icons/broken/pallete-2.svg rename to assets/icons/broken/palette-2.svg index f7bebe8c..1e26eba4 100644 --- a/assets/icons/broken/pallete-2.svg +++ b/assets/icons/broken/palette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/palette-round.svg b/assets/icons/broken/palette-round.svg index c349b06b..cadb20c3 100644 --- a/assets/icons/broken/palette-round.svg +++ b/assets/icons/broken/palette-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/palette.svg b/assets/icons/broken/palette.svg index 1e03a7ec..a9442218 100644 --- a/assets/icons/broken/palette.svg +++ b/assets/icons/broken/palette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/panorama.svg b/assets/icons/broken/panorama.svg index b674c875..335075f9 100644 --- a/assets/icons/broken/panorama.svg +++ b/assets/icons/broken/panorama.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/paper-bin.svg b/assets/icons/broken/paper-bin.svg index d9fd76d8..cc9a0b70 100644 --- a/assets/icons/broken/paper-bin.svg +++ b/assets/icons/broken/paper-bin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/paragraph-spacing.svg b/assets/icons/broken/paragraph-spacing.svg index 2c072ecd..f30efe0f 100644 --- a/assets/icons/broken/paragraph-spacing.svg +++ b/assets/icons/broken/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/passport-minimalistic.svg b/assets/icons/broken/passport-minimalistic.svg index ac6db773..21c6e22b 100644 --- a/assets/icons/broken/passport-minimalistic.svg +++ b/assets/icons/broken/passport-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/passport.svg b/assets/icons/broken/passport.svg index 9dd30eb4..afe8380a 100644 --- a/assets/icons/broken/passport.svg +++ b/assets/icons/broken/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/password-minimalistic-input.svg b/assets/icons/broken/password-minimalistic-input.svg index 973b816c..19ed2da2 100644 --- a/assets/icons/broken/password-minimalistic-input.svg +++ b/assets/icons/broken/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/password-minimalistic.svg b/assets/icons/broken/password-minimalistic.svg index 37e899b6..ec319674 100644 --- a/assets/icons/broken/password-minimalistic.svg +++ b/assets/icons/broken/password-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/password.svg b/assets/icons/broken/password.svg index c957fb48..2e2db95a 100644 --- a/assets/icons/broken/password.svg +++ b/assets/icons/broken/password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pause-circle.svg b/assets/icons/broken/pause-circle.svg index 681f6b59..c77559f3 100644 --- a/assets/icons/broken/pause-circle.svg +++ b/assets/icons/broken/pause-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pause.svg b/assets/icons/broken/pause.svg index 8909adc5..ac5753cc 100644 --- a/assets/icons/broken/pause.svg +++ b/assets/icons/broken/pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/paw.svg b/assets/icons/broken/paw.svg index 790e2765..c7ba59e5 100644 --- a/assets/icons/broken/paw.svg +++ b/assets/icons/broken/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pen-2.svg b/assets/icons/broken/pen-2.svg index d9d1980e..c19bfeee 100644 --- a/assets/icons/broken/pen-2.svg +++ b/assets/icons/broken/pen-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pen-new-round.svg b/assets/icons/broken/pen-new-round.svg index d7dc4070..17df73a8 100644 --- a/assets/icons/broken/pen-new-round.svg +++ b/assets/icons/broken/pen-new-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pen-new-square.svg b/assets/icons/broken/pen-new-square.svg index 4e3431d1..a6eaff5b 100644 --- a/assets/icons/broken/pen-new-square.svg +++ b/assets/icons/broken/pen-new-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pen.svg b/assets/icons/broken/pen.svg index cfea7e19..037ff0b7 100644 --- a/assets/icons/broken/pen.svg +++ b/assets/icons/broken/pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/people-nearby.svg b/assets/icons/broken/people-nearby.svg index ae355868..51823ed7 100644 --- a/assets/icons/broken/people-nearby.svg +++ b/assets/icons/broken/people-nearby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/perfume.svg b/assets/icons/broken/perfume.svg index 404e28ff..a4be0e93 100644 --- a/assets/icons/broken/perfume.svg +++ b/assets/icons/broken/perfume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/phone-calling-rounded.svg b/assets/icons/broken/phone-calling-rounded.svg index ee873bc7..2c4d4bde 100644 --- a/assets/icons/broken/phone-calling-rounded.svg +++ b/assets/icons/broken/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/phone-calling.svg b/assets/icons/broken/phone-calling.svg index 65f79d64..9d27e3e0 100644 --- a/assets/icons/broken/phone-calling.svg +++ b/assets/icons/broken/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/phone.svg b/assets/icons/broken/phone.svg index b0979d7d..e23a50f7 100644 --- a/assets/icons/broken/phone.svg +++ b/assets/icons/broken/phone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pie-chart-3.svg b/assets/icons/broken/pie-chart-3.svg index 75b3618e..ceff7016 100644 --- a/assets/icons/broken/pie-chart-3.svg +++ b/assets/icons/broken/pie-chart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pills-2.svg b/assets/icons/broken/pills-2.svg index 9da6918f..cac228f3 100644 --- a/assets/icons/broken/pills-2.svg +++ b/assets/icons/broken/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pills-3.svg b/assets/icons/broken/pills-3.svg index dcdbf04f..c61c3c0a 100644 --- a/assets/icons/broken/pills-3.svg +++ b/assets/icons/broken/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pills.svg b/assets/icons/broken/pills.svg index 2f0ba3db..e7f2d42f 100644 --- a/assets/icons/broken/pills.svg +++ b/assets/icons/broken/pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pin-circle.svg b/assets/icons/broken/pin-circle.svg index 2a5e365c..6187196f 100644 --- a/assets/icons/broken/pin-circle.svg +++ b/assets/icons/broken/pin-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pin-list.svg b/assets/icons/broken/pin-list.svg index 94a8632f..2d01f867 100644 --- a/assets/icons/broken/pin-list.svg +++ b/assets/icons/broken/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pin.svg b/assets/icons/broken/pin.svg index a53fd055..1f54e8c4 100644 --- a/assets/icons/broken/pin.svg +++ b/assets/icons/broken/pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/pipette.svg b/assets/icons/broken/pipette.svg index e532cc26..488bc067 100644 --- a/assets/icons/broken/pipette.svg +++ b/assets/icons/broken/pipette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/plaaylist-minimalistic.svg b/assets/icons/broken/plaaylist-minimalistic.svg deleted file mode 100644 index c2d4f82e..00000000 --- a/assets/icons/broken/plaaylist-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/plain-2.svg b/assets/icons/broken/plain-2.svg deleted file mode 100644 index 5c1edd63..00000000 --- a/assets/icons/broken/plain-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/plain-3.svg b/assets/icons/broken/plain-3.svg deleted file mode 100644 index 115d0c3b..00000000 --- a/assets/icons/broken/plain-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/plain.svg b/assets/icons/broken/plain.svg deleted file mode 100644 index e434c063..00000000 --- a/assets/icons/broken/plain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/plane-2.svg b/assets/icons/broken/plane-2.svg new file mode 100644 index 00000000..14f71289 --- /dev/null +++ b/assets/icons/broken/plane-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/plane-3.svg b/assets/icons/broken/plane-3.svg new file mode 100644 index 00000000..2c037c23 --- /dev/null +++ b/assets/icons/broken/plane-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/plane.svg b/assets/icons/broken/plane.svg new file mode 100644 index 00000000..0e1f61ce --- /dev/null +++ b/assets/icons/broken/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/planet-3.svg b/assets/icons/broken/planet-3.svg index e2cc000a..8736d8ea 100644 --- a/assets/icons/broken/planet-3.svg +++ b/assets/icons/broken/planet-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/planet-4.svg b/assets/icons/broken/planet-4.svg index b241dfc3..998b44ec 100644 --- a/assets/icons/broken/planet-4.svg +++ b/assets/icons/broken/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/plate.svg b/assets/icons/broken/plate.svg index a2626778..d74956a8 100644 --- a/assets/icons/broken/plate.svg +++ b/assets/icons/broken/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/play-stream.svg b/assets/icons/broken/play-stream.svg index 2dec8568..d5ba2016 100644 --- a/assets/icons/broken/play-stream.svg +++ b/assets/icons/broken/play-stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/playlist-2.svg b/assets/icons/broken/playlist-2.svg index d1c27c53..4233bb2e 100644 --- a/assets/icons/broken/playlist-2.svg +++ b/assets/icons/broken/playlist-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/playlist-minimalistic-2.svg b/assets/icons/broken/playlist-minimalistic-2.svg index 42054124..e4456acf 100644 --- a/assets/icons/broken/playlist-minimalistic-2.svg +++ b/assets/icons/broken/playlist-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/playlist-minimalistic-3.svg b/assets/icons/broken/playlist-minimalistic-3.svg index 83593d94..2ef705f0 100644 --- a/assets/icons/broken/playlist-minimalistic-3.svg +++ b/assets/icons/broken/playlist-minimalistic-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/playlist-minimalistic.svg b/assets/icons/broken/playlist-minimalistic.svg new file mode 100644 index 00000000..1d946a15 --- /dev/null +++ b/assets/icons/broken/playlist-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/playlist.svg b/assets/icons/broken/playlist.svg index b8ba2648..de9fa2f3 100644 --- a/assets/icons/broken/playlist.svg +++ b/assets/icons/broken/playlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/plug-circle.svg b/assets/icons/broken/plug-circle.svg index 8973974b..55443e2d 100644 --- a/assets/icons/broken/plug-circle.svg +++ b/assets/icons/broken/plug-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/plus-minus.svg b/assets/icons/broken/plus-minus.svg index 861511a9..223bf138 100644 --- a/assets/icons/broken/plus-minus.svg +++ b/assets/icons/broken/plus-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/podcast.svg b/assets/icons/broken/podcast.svg index 266a6adc..55e47375 100644 --- a/assets/icons/broken/podcast.svg +++ b/assets/icons/broken/podcast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/point-on-map-perspective.svg b/assets/icons/broken/point-on-map-perspective.svg index d4d83845..22ef14c6 100644 --- a/assets/icons/broken/point-on-map-perspective.svg +++ b/assets/icons/broken/point-on-map-perspective.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/posts-carousel-horizontal.svg b/assets/icons/broken/posts-carousel-horizontal.svg index 1efc57b7..2abe0949 100644 --- a/assets/icons/broken/posts-carousel-horizontal.svg +++ b/assets/icons/broken/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/posts-carousel-vertical.svg b/assets/icons/broken/posts-carousel-vertical.svg index 0278e334..567099d5 100644 --- a/assets/icons/broken/posts-carousel-vertical.svg +++ b/assets/icons/broken/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/power.svg b/assets/icons/broken/power.svg index 175878bc..268123f0 100644 --- a/assets/icons/broken/power.svg +++ b/assets/icons/broken/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/presentation-graph.svg b/assets/icons/broken/presentation-graph.svg index 23980828..bd94f2d5 100644 --- a/assets/icons/broken/presentation-graph.svg +++ b/assets/icons/broken/presentation-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/printer-2.svg b/assets/icons/broken/printer-2.svg index 20129fdc..46a14152 100644 --- a/assets/icons/broken/printer-2.svg +++ b/assets/icons/broken/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/printer.svg b/assets/icons/broken/printer.svg index de938e54..b932d98c 100644 --- a/assets/icons/broken/printer.svg +++ b/assets/icons/broken/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/programming.svg b/assets/icons/broken/programming.svg index 36c09c59..4b68ada8 100644 --- a/assets/icons/broken/programming.svg +++ b/assets/icons/broken/programming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/projector.svg b/assets/icons/broken/projector.svg index d307ccfa..f8cc30bf 100644 --- a/assets/icons/broken/projector.svg +++ b/assets/icons/broken/projector.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/qr-code.svg b/assets/icons/broken/qr-code.svg index 1e066afa..f3669f55 100644 --- a/assets/icons/broken/qr-code.svg +++ b/assets/icons/broken/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/question-circle.svg b/assets/icons/broken/question-circle.svg index 0e25d4c8..78254278 100644 --- a/assets/icons/broken/question-circle.svg +++ b/assets/icons/broken/question-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/question-square.svg b/assets/icons/broken/question-square.svg index 4ab141eb..b6ad2695 100644 --- a/assets/icons/broken/question-square.svg +++ b/assets/icons/broken/question-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/quit-full-screen-circle.svg b/assets/icons/broken/quit-full-screen-circle.svg index eba516a0..e41fd44a 100644 --- a/assets/icons/broken/quit-full-screen-circle.svg +++ b/assets/icons/broken/quit-full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/quit-full-screen-square.svg b/assets/icons/broken/quit-full-screen-square.svg index b6525aea..26f6cb5f 100644 --- a/assets/icons/broken/quit-full-screen-square.svg +++ b/assets/icons/broken/quit-full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/quit-full-screen.svg b/assets/icons/broken/quit-full-screen.svg index 0c5ea65f..d1f141a2 100644 --- a/assets/icons/broken/quit-full-screen.svg +++ b/assets/icons/broken/quit-full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/quit-pip.svg b/assets/icons/broken/quit-pip.svg index ecdd2ee3..054803ee 100644 --- a/assets/icons/broken/quit-pip.svg +++ b/assets/icons/broken/quit-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/radial-blur.svg b/assets/icons/broken/radial-blur.svg index afcd57af..3a75ccf3 100644 --- a/assets/icons/broken/radial-blur.svg +++ b/assets/icons/broken/radial-blur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/radio-minimalistic.svg b/assets/icons/broken/radio-minimalistic.svg index 58684c4c..f3aa8962 100644 --- a/assets/icons/broken/radio-minimalistic.svg +++ b/assets/icons/broken/radio-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/radio.svg b/assets/icons/broken/radio.svg index 18241ec3..6f96dd48 100644 --- a/assets/icons/broken/radio.svg +++ b/assets/icons/broken/radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ranking.svg b/assets/icons/broken/ranking.svg index 008bf61f..72b28e6c 100644 --- a/assets/icons/broken/ranking.svg +++ b/assets/icons/broken/ranking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/receive-square.svg b/assets/icons/broken/receive-square.svg new file mode 100644 index 00000000..a2dc4650 --- /dev/null +++ b/assets/icons/broken/receive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/receive-twice-square.svg b/assets/icons/broken/receive-twice-square.svg new file mode 100644 index 00000000..8ff2e3cd --- /dev/null +++ b/assets/icons/broken/receive-twice-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/recive-square.svg b/assets/icons/broken/recive-square.svg deleted file mode 100644 index b3e182a3..00000000 --- a/assets/icons/broken/recive-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/recive-twice-square.svg b/assets/icons/broken/recive-twice-square.svg deleted file mode 100644 index 787610b2..00000000 --- a/assets/icons/broken/recive-twice-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/record-audio-circle.svg b/assets/icons/broken/record-audio-circle.svg new file mode 100644 index 00000000..de8d7c35 --- /dev/null +++ b/assets/icons/broken/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/record-circle.svg b/assets/icons/broken/record-circle.svg index de8d7c35..d0b2025d 100644 --- a/assets/icons/broken/record-circle.svg +++ b/assets/icons/broken/record-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/record-square.svg b/assets/icons/broken/record-square.svg index e542dabb..c1d9b64f 100644 --- a/assets/icons/broken/record-square.svg +++ b/assets/icons/broken/record-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/reel-2.svg b/assets/icons/broken/reel-2.svg index 9d09e2b7..5895346f 100644 --- a/assets/icons/broken/reel-2.svg +++ b/assets/icons/broken/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/reel.svg b/assets/icons/broken/reel.svg index 51c130ef..a1ed9a19 100644 --- a/assets/icons/broken/reel.svg +++ b/assets/icons/broken/reel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/refresh-circle.svg b/assets/icons/broken/refresh-circle.svg index 5eec31bb..53edf14a 100644 --- a/assets/icons/broken/refresh-circle.svg +++ b/assets/icons/broken/refresh-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/refresh-square.svg b/assets/icons/broken/refresh-square.svg index fb417374..64dbea7a 100644 --- a/assets/icons/broken/refresh-square.svg +++ b/assets/icons/broken/refresh-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/refresh.svg b/assets/icons/broken/refresh.svg index 968516fc..6c64685e 100644 --- a/assets/icons/broken/refresh.svg +++ b/assets/icons/broken/refresh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/remote-controller-2.svg b/assets/icons/broken/remote-controller-2.svg index 679e8c8f..402c0548 100644 --- a/assets/icons/broken/remote-controller-2.svg +++ b/assets/icons/broken/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/remote-controller-minimalistic.svg b/assets/icons/broken/remote-controller-minimalistic.svg index c635d375..715cd53d 100644 --- a/assets/icons/broken/remote-controller-minimalistic.svg +++ b/assets/icons/broken/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/remote-controller.svg b/assets/icons/broken/remote-controller.svg index b7ddc8bb..138204ee 100644 --- a/assets/icons/broken/remote-controller.svg +++ b/assets/icons/broken/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/remove-folder.svg b/assets/icons/broken/remove-folder.svg index f40df725..7ea566d5 100644 --- a/assets/icons/broken/remove-folder.svg +++ b/assets/icons/broken/remove-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/reorder-2.svg b/assets/icons/broken/reorder-2.svg new file mode 100644 index 00000000..fe105232 --- /dev/null +++ b/assets/icons/broken/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/reorder.svg b/assets/icons/broken/reorder.svg index 272b733b..94e9615c 100644 --- a/assets/icons/broken/reorder.svg +++ b/assets/icons/broken/reorder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/repeat-one-minimalistic.svg b/assets/icons/broken/repeat-one-minimalistic.svg index d3a47d31..ffd7a23c 100644 --- a/assets/icons/broken/repeat-one-minimalistic.svg +++ b/assets/icons/broken/repeat-one-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/repeat-one.svg b/assets/icons/broken/repeat-one.svg index 36533ddd..51f3b1ea 100644 --- a/assets/icons/broken/repeat-one.svg +++ b/assets/icons/broken/repeat-one.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/repeat.svg b/assets/icons/broken/repeat.svg index 85cc2c39..c702a5d8 100644 --- a/assets/icons/broken/repeat.svg +++ b/assets/icons/broken/repeat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/reply-2.svg b/assets/icons/broken/reply-2.svg index 48d7cbb3..f755de29 100644 --- a/assets/icons/broken/reply-2.svg +++ b/assets/icons/broken/reply-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/reply.svg b/assets/icons/broken/reply.svg index b1f97bc0..79f4a4eb 100644 --- a/assets/icons/broken/reply.svg +++ b/assets/icons/broken/reply.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/restart-circle.svg b/assets/icons/broken/restart-circle.svg index 97d2466d..fca0efa1 100644 --- a/assets/icons/broken/restart-circle.svg +++ b/assets/icons/broken/restart-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/restart-square.svg b/assets/icons/broken/restart-square.svg index c3c9e9b4..01d7dfe4 100644 --- a/assets/icons/broken/restart-square.svg +++ b/assets/icons/broken/restart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/restart.svg b/assets/icons/broken/restart.svg index 6b19665c..1a5f7a90 100644 --- a/assets/icons/broken/restart.svg +++ b/assets/icons/broken/restart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/revote.svg b/assets/icons/broken/revote.svg index ddf8be3c..00c0a7ad 100644 --- a/assets/icons/broken/revote.svg +++ b/assets/icons/broken/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rewind-back.svg b/assets/icons/broken/rewind-back.svg index 9d508e2e..21338317 100644 --- a/assets/icons/broken/rewind-back.svg +++ b/assets/icons/broken/rewind-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rewind-forward.svg b/assets/icons/broken/rewind-forward.svg index 61dc16c6..02c535a8 100644 --- a/assets/icons/broken/rewind-forward.svg +++ b/assets/icons/broken/rewind-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rocket-2.svg b/assets/icons/broken/rocket-2.svg index 6e6adb99..212ba3f2 100644 --- a/assets/icons/broken/rocket-2.svg +++ b/assets/icons/broken/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rocket.svg b/assets/icons/broken/rocket.svg index 6289e1d4..54fd309c 100644 --- a/assets/icons/broken/rocket.svg +++ b/assets/icons/broken/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rolling-pin.svg b/assets/icons/broken/rolling-pin.svg index 46a85e85..75dac219 100644 --- a/assets/icons/broken/rolling-pin.svg +++ b/assets/icons/broken/rolling-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-down.svg b/assets/icons/broken/round-arrow-down.svg index 9e2ba025..fd2ca453 100644 --- a/assets/icons/broken/round-arrow-down.svg +++ b/assets/icons/broken/round-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-left-down.svg b/assets/icons/broken/round-arrow-left-down.svg index 02480874..927e18f2 100644 --- a/assets/icons/broken/round-arrow-left-down.svg +++ b/assets/icons/broken/round-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-left-up.svg b/assets/icons/broken/round-arrow-left-up.svg index 18ab0dfb..b4e4b241 100644 --- a/assets/icons/broken/round-arrow-left-up.svg +++ b/assets/icons/broken/round-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-left.svg b/assets/icons/broken/round-arrow-left.svg index 24add7da..faacbae8 100644 --- a/assets/icons/broken/round-arrow-left.svg +++ b/assets/icons/broken/round-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-right-down.svg b/assets/icons/broken/round-arrow-right-down.svg index aa5af636..0cd38cda 100644 --- a/assets/icons/broken/round-arrow-right-down.svg +++ b/assets/icons/broken/round-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-right-up.svg b/assets/icons/broken/round-arrow-right-up.svg index a95ce65a..300b5b91 100644 --- a/assets/icons/broken/round-arrow-right-up.svg +++ b/assets/icons/broken/round-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-right.svg b/assets/icons/broken/round-arrow-right.svg index 3aeb2f6e..c1c338e5 100644 --- a/assets/icons/broken/round-arrow-right.svg +++ b/assets/icons/broken/round-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-arrow-up.svg b/assets/icons/broken/round-arrow-up.svg index a20ea2f1..da6229db 100644 --- a/assets/icons/broken/round-arrow-up.svg +++ b/assets/icons/broken/round-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-double-alt-arrow-down.svg b/assets/icons/broken/round-double-alt-arrow-down.svg index e294702a..5eb53f16 100644 --- a/assets/icons/broken/round-double-alt-arrow-down.svg +++ b/assets/icons/broken/round-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-double-alt-arrow-left.svg b/assets/icons/broken/round-double-alt-arrow-left.svg index 03144490..b2a09ba0 100644 --- a/assets/icons/broken/round-double-alt-arrow-left.svg +++ b/assets/icons/broken/round-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-double-alt-arrow-right.svg b/assets/icons/broken/round-double-alt-arrow-right.svg index ab485f27..57642748 100644 --- a/assets/icons/broken/round-double-alt-arrow-right.svg +++ b/assets/icons/broken/round-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-double-alt-arrow-up.svg b/assets/icons/broken/round-double-alt-arrow-up.svg index da29f0c3..9902fae6 100644 --- a/assets/icons/broken/round-double-alt-arrow-up.svg +++ b/assets/icons/broken/round-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-sort-horizontal.svg b/assets/icons/broken/round-sort-horizontal.svg index a80a63d1..8b00d98c 100644 --- a/assets/icons/broken/round-sort-horizontal.svg +++ b/assets/icons/broken/round-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-sort-vertical.svg b/assets/icons/broken/round-sort-vertical.svg index ae2107f3..de2731e8 100644 --- a/assets/icons/broken/round-sort-vertical.svg +++ b/assets/icons/broken/round-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-transfer-diagonal.svg b/assets/icons/broken/round-transfer-diagonal.svg index 7d4c13b4..b981ba57 100644 --- a/assets/icons/broken/round-transfer-diagonal.svg +++ b/assets/icons/broken/round-transfer-diagonal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-transfer-horizontal.svg b/assets/icons/broken/round-transfer-horizontal.svg index f4d83594..3e9a8a53 100644 --- a/assets/icons/broken/round-transfer-horizontal.svg +++ b/assets/icons/broken/round-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/round-transfer-vertical.svg b/assets/icons/broken/round-transfer-vertical.svg index 6314043f..05341235 100644 --- a/assets/icons/broken/round-transfer-vertical.svg +++ b/assets/icons/broken/round-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifer-bug.svg b/assets/icons/broken/rounded-magnifer-bug.svg deleted file mode 100644 index c2e26e31..00000000 --- a/assets/icons/broken/rounded-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifer-zoom-in.svg b/assets/icons/broken/rounded-magnifer-zoom-in.svg deleted file mode 100644 index d15d6a40..00000000 --- a/assets/icons/broken/rounded-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifer-zoom-out.svg b/assets/icons/broken/rounded-magnifer-zoom-out.svg deleted file mode 100644 index 4b84c980..00000000 --- a/assets/icons/broken/rounded-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifer.svg b/assets/icons/broken/rounded-magnifer.svg deleted file mode 100644 index 2a8f8a1f..00000000 --- a/assets/icons/broken/rounded-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifier-bug.svg b/assets/icons/broken/rounded-magnifier-bug.svg new file mode 100644 index 00000000..61296b7d --- /dev/null +++ b/assets/icons/broken/rounded-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifier-zoom-in.svg b/assets/icons/broken/rounded-magnifier-zoom-in.svg new file mode 100644 index 00000000..09289332 --- /dev/null +++ b/assets/icons/broken/rounded-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifier-zoom-out.svg b/assets/icons/broken/rounded-magnifier-zoom-out.svg new file mode 100644 index 00000000..f922907a --- /dev/null +++ b/assets/icons/broken/rounded-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/rounded-magnifier.svg b/assets/icons/broken/rounded-magnifier.svg new file mode 100644 index 00000000..67779c06 --- /dev/null +++ b/assets/icons/broken/rounded-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/route.svg b/assets/icons/broken/route.svg index 56429e31..93269d5f 100644 --- a/assets/icons/broken/route.svg +++ b/assets/icons/broken/route.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/routing-2.svg b/assets/icons/broken/routing-2.svg index d4a76172..23826c3a 100644 --- a/assets/icons/broken/routing-2.svg +++ b/assets/icons/broken/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/routing-3.svg b/assets/icons/broken/routing-3.svg index d7a24890..c96fd085 100644 --- a/assets/icons/broken/routing-3.svg +++ b/assets/icons/broken/routing-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/routing.svg b/assets/icons/broken/routing.svg index 6a5f734d..0bbdd006 100644 --- a/assets/icons/broken/routing.svg +++ b/assets/icons/broken/routing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ruble.svg b/assets/icons/broken/ruble.svg index 27a30eac..4494d5bc 100644 --- a/assets/icons/broken/ruble.svg +++ b/assets/icons/broken/ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/rugby.svg b/assets/icons/broken/rugby.svg index 0843f70c..4c06b910 100644 --- a/assets/icons/broken/rugby.svg +++ b/assets/icons/broken/rugby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ruler-angular.svg b/assets/icons/broken/ruler-angular.svg index ced3389e..0f9f81ae 100644 --- a/assets/icons/broken/ruler-angular.svg +++ b/assets/icons/broken/ruler-angular.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ruler-cross-pen.svg b/assets/icons/broken/ruler-cross-pen.svg index 656d69ea..fc4cd271 100644 --- a/assets/icons/broken/ruler-cross-pen.svg +++ b/assets/icons/broken/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ruler-pen.svg b/assets/icons/broken/ruler-pen.svg index 97788e2f..8c797c85 100644 --- a/assets/icons/broken/ruler-pen.svg +++ b/assets/icons/broken/ruler-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ruler.svg b/assets/icons/broken/ruler.svg index 62f72957..16384148 100644 --- a/assets/icons/broken/ruler.svg +++ b/assets/icons/broken/ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/running-2.svg b/assets/icons/broken/running-2.svg index 40e0e354..eb544484 100644 --- a/assets/icons/broken/running-2.svg +++ b/assets/icons/broken/running-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/running-round.svg b/assets/icons/broken/running-round.svg index ce8ee4e8..f377a4e0 100644 --- a/assets/icons/broken/running-round.svg +++ b/assets/icons/broken/running-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/running.svg b/assets/icons/broken/running.svg index 317d2bcc..0d162ddd 100644 --- a/assets/icons/broken/running.svg +++ b/assets/icons/broken/running.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sad-circle.svg b/assets/icons/broken/sad-circle.svg index 62ad34df..46547085 100644 --- a/assets/icons/broken/sad-circle.svg +++ b/assets/icons/broken/sad-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sad-square.svg b/assets/icons/broken/sad-square.svg index dd8f5b96..86022135 100644 --- a/assets/icons/broken/sad-square.svg +++ b/assets/icons/broken/sad-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/safe-2.svg b/assets/icons/broken/safe-2.svg index d5ca9e58..446c23f2 100644 --- a/assets/icons/broken/safe-2.svg +++ b/assets/icons/broken/safe-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/safe-circle.svg b/assets/icons/broken/safe-circle.svg index 45e47385..135cb62a 100644 --- a/assets/icons/broken/safe-circle.svg +++ b/assets/icons/broken/safe-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/safe-square.svg b/assets/icons/broken/safe-square.svg index 26972a67..3742e2aa 100644 --- a/assets/icons/broken/safe-square.svg +++ b/assets/icons/broken/safe-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sale-square.svg b/assets/icons/broken/sale-square.svg index 46159ecd..10c0a38d 100644 --- a/assets/icons/broken/sale-square.svg +++ b/assets/icons/broken/sale-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sale.svg b/assets/icons/broken/sale.svg index a17cf23e..3705b802 100644 --- a/assets/icons/broken/sale.svg +++ b/assets/icons/broken/sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/satellite.svg b/assets/icons/broken/satellite.svg index 42d44185..5e244912 100644 --- a/assets/icons/broken/satellite.svg +++ b/assets/icons/broken/satellite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scale.svg b/assets/icons/broken/scale.svg index 971e5680..c8a62cc9 100644 --- a/assets/icons/broken/scale.svg +++ b/assets/icons/broken/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scaling.svg b/assets/icons/broken/scaling.svg new file mode 100644 index 00000000..8fbb57e2 --- /dev/null +++ b/assets/icons/broken/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/scanner-2.svg b/assets/icons/broken/scanner-2.svg index e4351e6a..d1451afb 100644 --- a/assets/icons/broken/scanner-2.svg +++ b/assets/icons/broken/scanner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scanner.svg b/assets/icons/broken/scanner.svg index 1aac94c7..05fdd067 100644 --- a/assets/icons/broken/scanner.svg +++ b/assets/icons/broken/scanner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scissors-square.svg b/assets/icons/broken/scissors-square.svg index 3f30def2..3f2039b8 100644 --- a/assets/icons/broken/scissors-square.svg +++ b/assets/icons/broken/scissors-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scissors.svg b/assets/icons/broken/scissors.svg index 29c22c2b..a0c886bc 100644 --- a/assets/icons/broken/scissors.svg +++ b/assets/icons/broken/scissors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/scooter.svg b/assets/icons/broken/scooter.svg index f9b8812f..b9f231e8 100644 --- a/assets/icons/broken/scooter.svg +++ b/assets/icons/broken/scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/screen-share.svg b/assets/icons/broken/screen-share.svg index 421fe78b..219e0019 100644 --- a/assets/icons/broken/screen-share.svg +++ b/assets/icons/broken/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/screencast.svg b/assets/icons/broken/screencast.svg index 136e365d..34feff1f 100644 --- a/assets/icons/broken/screencast.svg +++ b/assets/icons/broken/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sd-card.svg b/assets/icons/broken/sd-card.svg index dd210811..bfcafcf5 100644 --- a/assets/icons/broken/sd-card.svg +++ b/assets/icons/broken/sd-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/send-square.svg b/assets/icons/broken/send-square.svg index e9019ddf..c1fbdc17 100644 --- a/assets/icons/broken/send-square.svg +++ b/assets/icons/broken/send-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/send-twice-square.svg b/assets/icons/broken/send-twice-square.svg index b0b3bd3b..160fe392 100644 --- a/assets/icons/broken/send-twice-square.svg +++ b/assets/icons/broken/send-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-2.svg b/assets/icons/broken/server-2.svg index 7aab16d5..c58b84e2 100644 --- a/assets/icons/broken/server-2.svg +++ b/assets/icons/broken/server-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-minimalistic.svg b/assets/icons/broken/server-minimalistic.svg index b3e84670..c9cac309 100644 --- a/assets/icons/broken/server-minimalistic.svg +++ b/assets/icons/broken/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-path.svg b/assets/icons/broken/server-path.svg index db4fd37f..5112cf05 100644 --- a/assets/icons/broken/server-path.svg +++ b/assets/icons/broken/server-path.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-square-cloud.svg b/assets/icons/broken/server-square-cloud.svg index ef58dfe3..aff2bdf5 100644 --- a/assets/icons/broken/server-square-cloud.svg +++ b/assets/icons/broken/server-square-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-square-update.svg b/assets/icons/broken/server-square-update.svg index a94ae894..641a1031 100644 --- a/assets/icons/broken/server-square-update.svg +++ b/assets/icons/broken/server-square-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server-square.svg b/assets/icons/broken/server-square.svg index 257f0228..7c69d2b9 100644 --- a/assets/icons/broken/server-square.svg +++ b/assets/icons/broken/server-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/server.svg b/assets/icons/broken/server.svg index 519b6668..b95bfa5d 100644 --- a/assets/icons/broken/server.svg +++ b/assets/icons/broken/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/share-circle.svg b/assets/icons/broken/share-circle.svg index 5ce1960f..f0b754bc 100644 --- a/assets/icons/broken/share-circle.svg +++ b/assets/icons/broken/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/share.svg b/assets/icons/broken/share.svg index 5f57fe44..f151e673 100644 --- a/assets/icons/broken/share.svg +++ b/assets/icons/broken/share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield-cross.svg b/assets/icons/broken/shield-cross.svg index 84c21384..7cb1bbe7 100644 --- a/assets/icons/broken/shield-cross.svg +++ b/assets/icons/broken/shield-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield-minus.svg b/assets/icons/broken/shield-minus.svg index a9c34319..019f1844 100644 --- a/assets/icons/broken/shield-minus.svg +++ b/assets/icons/broken/shield-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield-network.svg b/assets/icons/broken/shield-network.svg index 05885f33..63abfdee 100644 --- a/assets/icons/broken/shield-network.svg +++ b/assets/icons/broken/shield-network.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield-plus.svg b/assets/icons/broken/shield-plus.svg index 13491a10..bb096b94 100644 --- a/assets/icons/broken/shield-plus.svg +++ b/assets/icons/broken/shield-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield-warning.svg b/assets/icons/broken/shield-warning.svg index 0aed9839..9691388a 100644 --- a/assets/icons/broken/shield-warning.svg +++ b/assets/icons/broken/shield-warning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shield.svg b/assets/icons/broken/shield.svg index 8c1026e3..e8a2d45d 100644 --- a/assets/icons/broken/shield.svg +++ b/assets/icons/broken/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shock-absorber.svg b/assets/icons/broken/shock-absorber.svg index 771e240a..37146725 100644 --- a/assets/icons/broken/shock-absorber.svg +++ b/assets/icons/broken/shock-absorber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shop-2.svg b/assets/icons/broken/shop-2.svg index f46d532b..42b56b81 100644 --- a/assets/icons/broken/shop-2.svg +++ b/assets/icons/broken/shop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shop-minimalistic.svg b/assets/icons/broken/shop-minimalistic.svg index 32876a8d..51078800 100644 --- a/assets/icons/broken/shop-minimalistic.svg +++ b/assets/icons/broken/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shop.svg b/assets/icons/broken/shop.svg index fe969396..4eacafc3 100644 --- a/assets/icons/broken/shop.svg +++ b/assets/icons/broken/shop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/shuffle.svg b/assets/icons/broken/shuffle.svg index 5c5f2489..bd1b7254 100644 --- a/assets/icons/broken/shuffle.svg +++ b/assets/icons/broken/shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sidebar-code.svg b/assets/icons/broken/sidebar-code.svg index 47facbe8..1ec8fca3 100644 --- a/assets/icons/broken/sidebar-code.svg +++ b/assets/icons/broken/sidebar-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sidebar-minimalistic.svg b/assets/icons/broken/sidebar-minimalistic.svg index 0f4146e3..ac89e6e5 100644 --- a/assets/icons/broken/sidebar-minimalistic.svg +++ b/assets/icons/broken/sidebar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sidebar.svg b/assets/icons/broken/sidebar.svg new file mode 100644 index 00000000..943f2e9b --- /dev/null +++ b/assets/icons/broken/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/siderbar.svg b/assets/icons/broken/siderbar.svg deleted file mode 100644 index c2f4d67d..00000000 --- a/assets/icons/broken/siderbar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/signpost-2.svg b/assets/icons/broken/signpost-2.svg index 76fde8cf..bf698637 100644 --- a/assets/icons/broken/signpost-2.svg +++ b/assets/icons/broken/signpost-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/signpost.svg b/assets/icons/broken/signpost.svg index 7dff6f5a..06a97cce 100644 --- a/assets/icons/broken/signpost.svg +++ b/assets/icons/broken/signpost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sim-cards.svg b/assets/icons/broken/sim-cards.svg index ee49bfb2..5a6929ed 100644 --- a/assets/icons/broken/sim-cards.svg +++ b/assets/icons/broken/sim-cards.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/siren-rounded.svg b/assets/icons/broken/siren-rounded.svg index f039f13f..8e64d8a4 100644 --- a/assets/icons/broken/siren-rounded.svg +++ b/assets/icons/broken/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/siren.svg b/assets/icons/broken/siren.svg index b39ac43f..d2abed4d 100644 --- a/assets/icons/broken/siren.svg +++ b/assets/icons/broken/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/skateboarding-round.svg b/assets/icons/broken/skateboarding-round.svg index aa1f254f..e45aa45d 100644 --- a/assets/icons/broken/skateboarding-round.svg +++ b/assets/icons/broken/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/skateboarding.svg b/assets/icons/broken/skateboarding.svg index ec9b2c6e..7524ca15 100644 --- a/assets/icons/broken/skateboarding.svg +++ b/assets/icons/broken/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/skip-next.svg b/assets/icons/broken/skip-next.svg index 719fce15..0850bcd1 100644 --- a/assets/icons/broken/skip-next.svg +++ b/assets/icons/broken/skip-next.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/skip-previous.svg b/assets/icons/broken/skip-previous.svg index a63b8e66..a5b8285a 100644 --- a/assets/icons/broken/skip-previous.svg +++ b/assets/icons/broken/skip-previous.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/skirt.svg b/assets/icons/broken/skirt.svg index 538f04c5..2c28bbbf 100644 --- a/assets/icons/broken/skirt.svg +++ b/assets/icons/broken/skirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sleeping-circle.svg b/assets/icons/broken/sleeping-circle.svg index ad950885..37936008 100644 --- a/assets/icons/broken/sleeping-circle.svg +++ b/assets/icons/broken/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sleeping-square.svg b/assets/icons/broken/sleeping-square.svg index 1cee39dd..08e6facc 100644 --- a/assets/icons/broken/sleeping-square.svg +++ b/assets/icons/broken/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sleeping.svg b/assets/icons/broken/sleeping.svg index 19df051d..9bc9ad0b 100644 --- a/assets/icons/broken/sleeping.svg +++ b/assets/icons/broken/sleeping.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/slider-horizontal.svg b/assets/icons/broken/slider-horizontal.svg index fdc2ec30..d72aec21 100644 --- a/assets/icons/broken/slider-horizontal.svg +++ b/assets/icons/broken/slider-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/slider-minimalistic-horizontal.svg b/assets/icons/broken/slider-minimalistic-horizontal.svg index c2cbd2f2..9acbd0dc 100644 --- a/assets/icons/broken/slider-minimalistic-horizontal.svg +++ b/assets/icons/broken/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/slider-vertical-minimalistic.svg b/assets/icons/broken/slider-vertical-minimalistic.svg index 19000dcd..37c147a6 100644 --- a/assets/icons/broken/slider-vertical-minimalistic.svg +++ b/assets/icons/broken/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/slider-vertical.svg b/assets/icons/broken/slider-vertical.svg index ca223414..84eee966 100644 --- a/assets/icons/broken/slider-vertical.svg +++ b/assets/icons/broken/slider-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smart-home-angle.svg b/assets/icons/broken/smart-home-angle.svg index 6e75c90b..e4617870 100644 --- a/assets/icons/broken/smart-home-angle.svg +++ b/assets/icons/broken/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smart-home.svg b/assets/icons/broken/smart-home.svg index 176e2a94..dab23bf3 100644 --- a/assets/icons/broken/smart-home.svg +++ b/assets/icons/broken/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smart-speaker-2.svg b/assets/icons/broken/smart-speaker-2.svg index a86a882e..e99ea51b 100644 --- a/assets/icons/broken/smart-speaker-2.svg +++ b/assets/icons/broken/smart-speaker-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smart-vacuum-cleaner-2.svg b/assets/icons/broken/smart-vacuum-cleaner-2.svg index e07f4b3b..1117abcb 100644 --- a/assets/icons/broken/smart-vacuum-cleaner-2.svg +++ b/assets/icons/broken/smart-vacuum-cleaner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smart-vacuum-cleaner.svg b/assets/icons/broken/smart-vacuum-cleaner.svg index 2452cf7e..808e488f 100644 --- a/assets/icons/broken/smart-vacuum-cleaner.svg +++ b/assets/icons/broken/smart-vacuum-cleaner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-2.svg b/assets/icons/broken/smartphone-2.svg index 2e81e11f..cafa2b07 100644 --- a/assets/icons/broken/smartphone-2.svg +++ b/assets/icons/broken/smartphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-rotate-2.svg b/assets/icons/broken/smartphone-rotate-2.svg index 8a8ffd8b..4fda7f07 100644 --- a/assets/icons/broken/smartphone-rotate-2.svg +++ b/assets/icons/broken/smartphone-rotate-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-rotate-angle.svg b/assets/icons/broken/smartphone-rotate-angle.svg index be9d3315..75388208 100644 --- a/assets/icons/broken/smartphone-rotate-angle.svg +++ b/assets/icons/broken/smartphone-rotate-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-rotate-orientation.svg b/assets/icons/broken/smartphone-rotate-orientation.svg index fc800af7..386bb7fe 100644 --- a/assets/icons/broken/smartphone-rotate-orientation.svg +++ b/assets/icons/broken/smartphone-rotate-orientation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-update.svg b/assets/icons/broken/smartphone-update.svg index 11648d28..9a89e8bf 100644 --- a/assets/icons/broken/smartphone-update.svg +++ b/assets/icons/broken/smartphone-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone-vibration.svg b/assets/icons/broken/smartphone-vibration.svg index bea4c959..c4e7ac29 100644 --- a/assets/icons/broken/smartphone-vibration.svg +++ b/assets/icons/broken/smartphone-vibration.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smartphone.svg b/assets/icons/broken/smartphone.svg index ecd497c0..6317b188 100644 --- a/assets/icons/broken/smartphone.svg +++ b/assets/icons/broken/smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smile-circle.svg b/assets/icons/broken/smile-circle.svg index cc4d19ec..30d75d69 100644 --- a/assets/icons/broken/smile-circle.svg +++ b/assets/icons/broken/smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/smile-square.svg b/assets/icons/broken/smile-square.svg index 015cfc43..4b2f2218 100644 --- a/assets/icons/broken/smile-square.svg +++ b/assets/icons/broken/smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/snowflake.svg b/assets/icons/broken/snowflake.svg index 1f60e49a..a8fa407b 100644 --- a/assets/icons/broken/snowflake.svg +++ b/assets/icons/broken/snowflake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/socket.svg b/assets/icons/broken/socket.svg index 53e0bfea..084114ef 100644 --- a/assets/icons/broken/socket.svg +++ b/assets/icons/broken/socket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sofa-2.svg b/assets/icons/broken/sofa-2.svg index 53762f1f..4477f4a8 100644 --- a/assets/icons/broken/sofa-2.svg +++ b/assets/icons/broken/sofa-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sofa-3.svg b/assets/icons/broken/sofa-3.svg index 599a50ed..40aa2ae2 100644 --- a/assets/icons/broken/sofa-3.svg +++ b/assets/icons/broken/sofa-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sofa.svg b/assets/icons/broken/sofa.svg index 72f32b18..77865903 100644 --- a/assets/icons/broken/sofa.svg +++ b/assets/icons/broken/sofa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort-alphabetically.svg b/assets/icons/broken/sort-alphabetically.svg new file mode 100644 index 00000000..c56838a4 --- /dev/null +++ b/assets/icons/broken/sort-alphabetically.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/sort-by-alphabet.svg b/assets/icons/broken/sort-by-alphabet.svg deleted file mode 100644 index 1ad423b7..00000000 --- a/assets/icons/broken/sort-by-alphabet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/sort-by-time.svg b/assets/icons/broken/sort-by-time.svg index 9c1a8c0d..d989e567 100644 --- a/assets/icons/broken/sort-by-time.svg +++ b/assets/icons/broken/sort-by-time.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort-from-bottom-to-top.svg b/assets/icons/broken/sort-from-bottom-to-top.svg index 10545a95..e9491588 100644 --- a/assets/icons/broken/sort-from-bottom-to-top.svg +++ b/assets/icons/broken/sort-from-bottom-to-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort-from-top-to-bottom.svg b/assets/icons/broken/sort-from-top-to-bottom.svg index c186483c..2c09caf6 100644 --- a/assets/icons/broken/sort-from-top-to-bottom.svg +++ b/assets/icons/broken/sort-from-top-to-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort-horizontal.svg b/assets/icons/broken/sort-horizontal.svg index 5a566b53..fa865279 100644 --- a/assets/icons/broken/sort-horizontal.svg +++ b/assets/icons/broken/sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort-vertical.svg b/assets/icons/broken/sort-vertical.svg index 30ef8c25..87c765d3 100644 --- a/assets/icons/broken/sort-vertical.svg +++ b/assets/icons/broken/sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sort.svg b/assets/icons/broken/sort.svg index 005564b6..d4bcea47 100644 --- a/assets/icons/broken/sort.svg +++ b/assets/icons/broken/sort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/soundwave-circle.svg b/assets/icons/broken/soundwave-circle.svg index a14ee713..c13b73bc 100644 --- a/assets/icons/broken/soundwave-circle.svg +++ b/assets/icons/broken/soundwave-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/soundwave-square.svg b/assets/icons/broken/soundwave-square.svg index 96c51586..57ecc5d7 100644 --- a/assets/icons/broken/soundwave-square.svg +++ b/assets/icons/broken/soundwave-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/soundwave.svg b/assets/icons/broken/soundwave.svg index ee6ce624..6cd6a789 100644 --- a/assets/icons/broken/soundwave.svg +++ b/assets/icons/broken/soundwave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/speaker.svg b/assets/icons/broken/speaker.svg index 5a9f191a..c0a22093 100644 --- a/assets/icons/broken/speaker.svg +++ b/assets/icons/broken/speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/special-effects.svg b/assets/icons/broken/special-effects.svg index dc44accc..e8ac709c 100644 --- a/assets/icons/broken/special-effects.svg +++ b/assets/icons/broken/special-effects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/spedometer-low.svg b/assets/icons/broken/spedometer-low.svg deleted file mode 100644 index 52539db2..00000000 --- a/assets/icons/broken/spedometer-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/spedometer-max.svg b/assets/icons/broken/spedometer-max.svg deleted file mode 100644 index 3de32ef4..00000000 --- a/assets/icons/broken/spedometer-max.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/spedometer-middle.svg b/assets/icons/broken/spedometer-middle.svg deleted file mode 100644 index b5a77c73..00000000 --- a/assets/icons/broken/spedometer-middle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/speedometer-low.svg b/assets/icons/broken/speedometer-low.svg new file mode 100644 index 00000000..3be75a8a --- /dev/null +++ b/assets/icons/broken/speedometer-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/speedometer-max.svg b/assets/icons/broken/speedometer-max.svg new file mode 100644 index 00000000..4e477db5 --- /dev/null +++ b/assets/icons/broken/speedometer-max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/speedometer-middle.svg b/assets/icons/broken/speedometer-middle.svg new file mode 100644 index 00000000..15ab03f1 --- /dev/null +++ b/assets/icons/broken/speedometer-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/square-academic-cap.svg b/assets/icons/broken/square-academic-cap.svg index 0bb63693..15c68a87 100644 --- a/assets/icons/broken/square-academic-cap.svg +++ b/assets/icons/broken/square-academic-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-down.svg b/assets/icons/broken/square-arrow-down.svg index 2d4c2605..d8d94360 100644 --- a/assets/icons/broken/square-arrow-down.svg +++ b/assets/icons/broken/square-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-left-down.svg b/assets/icons/broken/square-arrow-left-down.svg index b435bbd6..662f17ab 100644 --- a/assets/icons/broken/square-arrow-left-down.svg +++ b/assets/icons/broken/square-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-left-up.svg b/assets/icons/broken/square-arrow-left-up.svg index 67964da0..cd32e4fd 100644 --- a/assets/icons/broken/square-arrow-left-up.svg +++ b/assets/icons/broken/square-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-left.svg b/assets/icons/broken/square-arrow-left.svg index df9039f8..87c7494e 100644 --- a/assets/icons/broken/square-arrow-left.svg +++ b/assets/icons/broken/square-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-right-down.svg b/assets/icons/broken/square-arrow-right-down.svg index bf478d7f..29292b21 100644 --- a/assets/icons/broken/square-arrow-right-down.svg +++ b/assets/icons/broken/square-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-right-up.svg b/assets/icons/broken/square-arrow-right-up.svg index a924b1dd..b8f7163c 100644 --- a/assets/icons/broken/square-arrow-right-up.svg +++ b/assets/icons/broken/square-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-right.svg b/assets/icons/broken/square-arrow-right.svg index 2f722271..1cc118d7 100644 --- a/assets/icons/broken/square-arrow-right.svg +++ b/assets/icons/broken/square-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-arrow-up.svg b/assets/icons/broken/square-arrow-up.svg index 4e6dceda..8c0f93aa 100644 --- a/assets/icons/broken/square-arrow-up.svg +++ b/assets/icons/broken/square-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-bottom-down.svg b/assets/icons/broken/square-bottom-down.svg index 97d59fe8..47b67434 100644 --- a/assets/icons/broken/square-bottom-down.svg +++ b/assets/icons/broken/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-bottom-up.svg b/assets/icons/broken/square-bottom-up.svg index d77ea096..5ebf2294 100644 --- a/assets/icons/broken/square-bottom-up.svg +++ b/assets/icons/broken/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-double-alt-arrow-down.svg b/assets/icons/broken/square-double-alt-arrow-down.svg index 2fa1c793..b8340854 100644 --- a/assets/icons/broken/square-double-alt-arrow-down.svg +++ b/assets/icons/broken/square-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-double-alt-arrow-left.svg b/assets/icons/broken/square-double-alt-arrow-left.svg index aab4bd5e..b0d8fb73 100644 --- a/assets/icons/broken/square-double-alt-arrow-left.svg +++ b/assets/icons/broken/square-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-double-alt-arrow-right.svg b/assets/icons/broken/square-double-alt-arrow-right.svg index aaca6bfe..2f26dbee 100644 --- a/assets/icons/broken/square-double-alt-arrow-right.svg +++ b/assets/icons/broken/square-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-double-alt-arrow-up.svg b/assets/icons/broken/square-double-alt-arrow-up.svg index 6d01bce4..b0de793e 100644 --- a/assets/icons/broken/square-double-alt-arrow-up.svg +++ b/assets/icons/broken/square-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-forward.svg b/assets/icons/broken/square-forward.svg index 8e6f0f7c..31906508 100644 --- a/assets/icons/broken/square-forward.svg +++ b/assets/icons/broken/square-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-share-line.svg b/assets/icons/broken/square-share-line.svg index c4616054..8358c5eb 100644 --- a/assets/icons/broken/square-share-line.svg +++ b/assets/icons/broken/square-share-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-sort-horizontal.svg b/assets/icons/broken/square-sort-horizontal.svg index 8f0512bc..ea9781f9 100644 --- a/assets/icons/broken/square-sort-horizontal.svg +++ b/assets/icons/broken/square-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-sort-vertical.svg b/assets/icons/broken/square-sort-vertical.svg index 0d0c6698..4a11b955 100644 --- a/assets/icons/broken/square-sort-vertical.svg +++ b/assets/icons/broken/square-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-top-down.svg b/assets/icons/broken/square-top-down.svg index d55262df..6357aefb 100644 --- a/assets/icons/broken/square-top-down.svg +++ b/assets/icons/broken/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-top-up.svg b/assets/icons/broken/square-top-up.svg index 7461b42d..37daf032 100644 --- a/assets/icons/broken/square-top-up.svg +++ b/assets/icons/broken/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-transfer-horizontal.svg b/assets/icons/broken/square-transfer-horizontal.svg index 23c6e924..45a2a161 100644 --- a/assets/icons/broken/square-transfer-horizontal.svg +++ b/assets/icons/broken/square-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/square-transfer-vertical.svg b/assets/icons/broken/square-transfer-vertical.svg index 66952bc8..1b8499f5 100644 --- a/assets/icons/broken/square-transfer-vertical.svg +++ b/assets/icons/broken/square-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ssd-round.svg b/assets/icons/broken/ssd-round.svg index 5d1cd169..a4eef4ff 100644 --- a/assets/icons/broken/ssd-round.svg +++ b/assets/icons/broken/ssd-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ssd-square.svg b/assets/icons/broken/ssd-square.svg index d693b6a4..e9dbbe2e 100644 --- a/assets/icons/broken/ssd-square.svg +++ b/assets/icons/broken/ssd-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-2.svg b/assets/icons/broken/star-2.svg new file mode 100644 index 00000000..5544eb5f --- /dev/null +++ b/assets/icons/broken/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/star-angle.svg b/assets/icons/broken/star-angle.svg index d8efec3f..707b5d94 100644 --- a/assets/icons/broken/star-angle.svg +++ b/assets/icons/broken/star-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-fall-minimalistic-2.svg b/assets/icons/broken/star-fall-minimalistic-2.svg index c21f4b17..8f3df0ee 100644 --- a/assets/icons/broken/star-fall-minimalistic-2.svg +++ b/assets/icons/broken/star-fall-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-fall-minimalistic.svg b/assets/icons/broken/star-fall-minimalistic.svg index bce6bb39..c5108ddc 100644 --- a/assets/icons/broken/star-fall-minimalistic.svg +++ b/assets/icons/broken/star-fall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-fall.svg b/assets/icons/broken/star-fall.svg index 4f564550..00ea264b 100644 --- a/assets/icons/broken/star-fall.svg +++ b/assets/icons/broken/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-rainbow.svg b/assets/icons/broken/star-rainbow.svg index 486308ca..6d13375b 100644 --- a/assets/icons/broken/star-rainbow.svg +++ b/assets/icons/broken/star-rainbow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-ring.svg b/assets/icons/broken/star-ring.svg index 9e6a9a38..5008a91e 100644 --- a/assets/icons/broken/star-ring.svg +++ b/assets/icons/broken/star-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-rings.svg b/assets/icons/broken/star-rings.svg index 2bc4e7bc..708685ac 100644 --- a/assets/icons/broken/star-rings.svg +++ b/assets/icons/broken/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/star-shine.svg b/assets/icons/broken/star-shine.svg index 1e95ff6f..634ba0d4 100644 --- a/assets/icons/broken/star-shine.svg +++ b/assets/icons/broken/star-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stars-2.svg b/assets/icons/broken/stars-2.svg new file mode 100644 index 00000000..f9fec941 --- /dev/null +++ b/assets/icons/broken/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/stars-line.svg b/assets/icons/broken/stars-line.svg index 8c4b9fbc..3f06e9d9 100644 --- a/assets/icons/broken/stars-line.svg +++ b/assets/icons/broken/stars-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stars.svg b/assets/icons/broken/stars.svg index f9fec941..f19a102b 100644 --- a/assets/icons/broken/stars.svg +++ b/assets/icons/broken/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/station.svg b/assets/icons/broken/station.svg index ef6b534b..91e14b02 100644 --- a/assets/icons/broken/station.svg +++ b/assets/icons/broken/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stethoscope.svg b/assets/icons/broken/stethoscope.svg index 90e16d0f..bdb4ce56 100644 --- a/assets/icons/broken/stethoscope.svg +++ b/assets/icons/broken/stethoscope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sticker-smile-circle-2.svg b/assets/icons/broken/sticker-smile-circle-2.svg index 19d72836..104d5592 100644 --- a/assets/icons/broken/sticker-smile-circle-2.svg +++ b/assets/icons/broken/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sticker-smile-circle.svg b/assets/icons/broken/sticker-smile-circle.svg index 1062e654..9d631812 100644 --- a/assets/icons/broken/sticker-smile-circle.svg +++ b/assets/icons/broken/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sticker-smile-square.svg b/assets/icons/broken/sticker-smile-square.svg index c48896c5..3577fec2 100644 --- a/assets/icons/broken/sticker-smile-square.svg +++ b/assets/icons/broken/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stopwatch-pause.svg b/assets/icons/broken/stopwatch-pause.svg index ad27fc14..0ad4ac64 100644 --- a/assets/icons/broken/stopwatch-pause.svg +++ b/assets/icons/broken/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stopwatch.svg b/assets/icons/broken/stopwatch.svg index 8fe37dea..be079b48 100644 --- a/assets/icons/broken/stopwatch.svg +++ b/assets/icons/broken/stopwatch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/stream.svg b/assets/icons/broken/stream.svg index 61b1fcfd..a882ab36 100644 --- a/assets/icons/broken/stream.svg +++ b/assets/icons/broken/stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/streets-map-point.svg b/assets/icons/broken/streets-map-point.svg index dbedb616..c453f78c 100644 --- a/assets/icons/broken/streets-map-point.svg +++ b/assets/icons/broken/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/streets-navigation.svg b/assets/icons/broken/streets-navigation.svg index 17d61f78..b4b6d2e8 100644 --- a/assets/icons/broken/streets-navigation.svg +++ b/assets/icons/broken/streets-navigation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/streets.svg b/assets/icons/broken/streets.svg index 7eef8aa4..c9a8a5bf 100644 --- a/assets/icons/broken/streets.svg +++ b/assets/icons/broken/streets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/structure.svg b/assets/icons/broken/structure.svg index 43792db0..204bc708 100644 --- a/assets/icons/broken/structure.svg +++ b/assets/icons/broken/structure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/subtitles.svg b/assets/icons/broken/subtitles.svg index 62f56a6b..a8cfb926 100644 --- a/assets/icons/broken/subtitles.svg +++ b/assets/icons/broken/subtitles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suitcase-lines.svg b/assets/icons/broken/suitcase-lines.svg index b33926cb..b56c42a4 100644 --- a/assets/icons/broken/suitcase-lines.svg +++ b/assets/icons/broken/suitcase-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suitcase-tag.svg b/assets/icons/broken/suitcase-tag.svg index 476432e5..9c9cbcff 100644 --- a/assets/icons/broken/suitcase-tag.svg +++ b/assets/icons/broken/suitcase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suitcase.svg b/assets/icons/broken/suitcase.svg index c736269c..a90b2301 100644 --- a/assets/icons/broken/suitcase.svg +++ b/assets/icons/broken/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sun-2.svg b/assets/icons/broken/sun-2.svg index 2cdd209f..3b0ea53a 100644 --- a/assets/icons/broken/sun-2.svg +++ b/assets/icons/broken/sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sun-fog.svg b/assets/icons/broken/sun-fog.svg index c8b1b708..7db6305a 100644 --- a/assets/icons/broken/sun-fog.svg +++ b/assets/icons/broken/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sun.svg b/assets/icons/broken/sun.svg index 9ff97a48..8be0d899 100644 --- a/assets/icons/broken/sun.svg +++ b/assets/icons/broken/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sunrise.svg b/assets/icons/broken/sunrise.svg index e444d7af..ed094f92 100644 --- a/assets/icons/broken/sunrise.svg +++ b/assets/icons/broken/sunrise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/sunset.svg b/assets/icons/broken/sunset.svg index 7fd9e354..49a93c8e 100644 --- a/assets/icons/broken/sunset.svg +++ b/assets/icons/broken/sunset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suspension-bolt.svg b/assets/icons/broken/suspension-bolt.svg index 86a08fa0..7518c15e 100644 --- a/assets/icons/broken/suspension-bolt.svg +++ b/assets/icons/broken/suspension-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suspension-cross.svg b/assets/icons/broken/suspension-cross.svg index d3dabf8f..5fb66dcd 100644 --- a/assets/icons/broken/suspension-cross.svg +++ b/assets/icons/broken/suspension-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/suspension.svg b/assets/icons/broken/suspension.svg index 3c617f3d..56d82369 100644 --- a/assets/icons/broken/suspension.svg +++ b/assets/icons/broken/suspension.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/swimming.svg b/assets/icons/broken/swimming.svg index 436b9e38..28440ce8 100644 --- a/assets/icons/broken/swimming.svg +++ b/assets/icons/broken/swimming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/syringe.svg b/assets/icons/broken/syringe.svg index 4e669942..b891d783 100644 --- a/assets/icons/broken/syringe.svg +++ b/assets/icons/broken/syringe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tablet.svg b/assets/icons/broken/tablet.svg index 677a90d1..c4214d39 100644 --- a/assets/icons/broken/tablet.svg +++ b/assets/icons/broken/tablet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tag-horizontal.svg b/assets/icons/broken/tag-horizontal.svg index b08a9446..d4d417d8 100644 --- a/assets/icons/broken/tag-horizontal.svg +++ b/assets/icons/broken/tag-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tag-price.svg b/assets/icons/broken/tag-price.svg index ca1bab97..5a2d3fd4 100644 --- a/assets/icons/broken/tag-price.svg +++ b/assets/icons/broken/tag-price.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tag.svg b/assets/icons/broken/tag.svg index a6f19ee5..670b3458 100644 --- a/assets/icons/broken/tag.svg +++ b/assets/icons/broken/tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/target.svg b/assets/icons/broken/target.svg index 02c5062f..1eb4e79d 100644 --- a/assets/icons/broken/target.svg +++ b/assets/icons/broken/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tea-cup.svg b/assets/icons/broken/tea-cup.svg index cfb5da13..7d590e21 100644 --- a/assets/icons/broken/tea-cup.svg +++ b/assets/icons/broken/tea-cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/telescope.svg b/assets/icons/broken/telescope.svg index 5e72e508..1aab08ff 100644 --- a/assets/icons/broken/telescope.svg +++ b/assets/icons/broken/telescope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/test-tube-minimalistic.svg b/assets/icons/broken/test-tube-minimalistic.svg index 19e9b145..3d4eaa1b 100644 --- a/assets/icons/broken/test-tube-minimalistic.svg +++ b/assets/icons/broken/test-tube-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/test-tube.svg b/assets/icons/broken/test-tube.svg index 8394ec63..76c5e056 100644 --- a/assets/icons/broken/test-tube.svg +++ b/assets/icons/broken/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-bold-circle.svg b/assets/icons/broken/text-bold-circle.svg index af4fbf6a..0e02ea9a 100644 --- a/assets/icons/broken/text-bold-circle.svg +++ b/assets/icons/broken/text-bold-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-bold-square.svg b/assets/icons/broken/text-bold-square.svg index 735a1bf7..b9864fdb 100644 --- a/assets/icons/broken/text-bold-square.svg +++ b/assets/icons/broken/text-bold-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-circle.svg b/assets/icons/broken/text-circle.svg index 82f5397a..57bad261 100644 --- a/assets/icons/broken/text-circle.svg +++ b/assets/icons/broken/text-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-cross-circle.svg b/assets/icons/broken/text-cross-circle.svg index e43d5e6f..a67b797b 100644 --- a/assets/icons/broken/text-cross-circle.svg +++ b/assets/icons/broken/text-cross-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-cross-square.svg b/assets/icons/broken/text-cross-square.svg index e9b5238c..780d38ed 100644 --- a/assets/icons/broken/text-cross-square.svg +++ b/assets/icons/broken/text-cross-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-cross.svg b/assets/icons/broken/text-cross.svg index cf93ebae..09b219be 100644 --- a/assets/icons/broken/text-cross.svg +++ b/assets/icons/broken/text-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-field-focus.svg b/assets/icons/broken/text-field-focus.svg index 2255e950..dc2d5d04 100644 --- a/assets/icons/broken/text-field-focus.svg +++ b/assets/icons/broken/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-field.svg b/assets/icons/broken/text-field.svg index 953955cd..0959e4fd 100644 --- a/assets/icons/broken/text-field.svg +++ b/assets/icons/broken/text-field.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-format.svg b/assets/icons/broken/text-format.svg new file mode 100644 index 00000000..6894314e --- /dev/null +++ b/assets/icons/broken/text-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/text-selection.svg b/assets/icons/broken/text-selection.svg index d7ed0bfc..7c4e6c56 100644 --- a/assets/icons/broken/text-selection.svg +++ b/assets/icons/broken/text-selection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-square-2.svg b/assets/icons/broken/text-square-2.svg index b7847cf6..515c365a 100644 --- a/assets/icons/broken/text-square-2.svg +++ b/assets/icons/broken/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-square.svg b/assets/icons/broken/text-square.svg index 9e4dd7a7..0d7dd33b 100644 --- a/assets/icons/broken/text-square.svg +++ b/assets/icons/broken/text-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-underline-circle.svg b/assets/icons/broken/text-underline-circle.svg index a49cd8a5..a1c77a52 100644 --- a/assets/icons/broken/text-underline-circle.svg +++ b/assets/icons/broken/text-underline-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-underline-cross.svg b/assets/icons/broken/text-underline-cross.svg index 3bf915ac..b679a471 100644 --- a/assets/icons/broken/text-underline-cross.svg +++ b/assets/icons/broken/text-underline-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text-underline.svg b/assets/icons/broken/text-underline.svg index 28a30367..e8dc2105 100644 --- a/assets/icons/broken/text-underline.svg +++ b/assets/icons/broken/text-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/text.svg b/assets/icons/broken/text.svg deleted file mode 100644 index 32686a1e..00000000 --- a/assets/icons/broken/text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/ticker-star.svg b/assets/icons/broken/ticker-star.svg index 5152af1c..cc90ccd9 100644 --- a/assets/icons/broken/ticker-star.svg +++ b/assets/icons/broken/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ticket-sale.svg b/assets/icons/broken/ticket-sale.svg index b7cecee8..5435727b 100644 --- a/assets/icons/broken/ticket-sale.svg +++ b/assets/icons/broken/ticket-sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ticket.svg b/assets/icons/broken/ticket.svg index b2fef285..da45534d 100644 --- a/assets/icons/broken/ticket.svg +++ b/assets/icons/broken/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/to-pip.svg b/assets/icons/broken/to-pip.svg index 26bb55e8..090b4c1a 100644 --- a/assets/icons/broken/to-pip.svg +++ b/assets/icons/broken/to-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tornado-small.svg b/assets/icons/broken/tornado-small.svg index 974df565..6d3f01c7 100644 --- a/assets/icons/broken/tornado-small.svg +++ b/assets/icons/broken/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tornado.svg b/assets/icons/broken/tornado.svg index 48f86664..7b48b304 100644 --- a/assets/icons/broken/tornado.svg +++ b/assets/icons/broken/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/traffic-economy.svg b/assets/icons/broken/traffic-economy.svg index 7be12e65..81e59fee 100644 --- a/assets/icons/broken/traffic-economy.svg +++ b/assets/icons/broken/traffic-economy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/traffic.svg b/assets/icons/broken/traffic.svg index d0a80f08..01bb4f7f 100644 --- a/assets/icons/broken/traffic.svg +++ b/assets/icons/broken/traffic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tram.svg b/assets/icons/broken/tram.svg index 862d1ddb..9ec52c47 100644 --- a/assets/icons/broken/tram.svg +++ b/assets/icons/broken/tram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/transfer-horizontal.svg b/assets/icons/broken/transfer-horizontal.svg index 63f63b2d..95489cea 100644 --- a/assets/icons/broken/transfer-horizontal.svg +++ b/assets/icons/broken/transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/transfer-vertical.svg b/assets/icons/broken/transfer-vertical.svg index f8160870..e2e914b2 100644 --- a/assets/icons/broken/transfer-vertical.svg +++ b/assets/icons/broken/transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/translation.svg b/assets/icons/broken/translation.svg index 3adc7e43..703210f7 100644 --- a/assets/icons/broken/translation.svg +++ b/assets/icons/broken/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/transmission-circle.svg b/assets/icons/broken/transmission-circle.svg index 5c980234..60e6dbc3 100644 --- a/assets/icons/broken/transmission-circle.svg +++ b/assets/icons/broken/transmission-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/transmission-square.svg b/assets/icons/broken/transmission-square.svg index f8865192..21eb8000 100644 --- a/assets/icons/broken/transmission-square.svg +++ b/assets/icons/broken/transmission-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/transmission.svg b/assets/icons/broken/transmission.svg index 26331cec..d0f91fbe 100644 --- a/assets/icons/broken/transmission.svg +++ b/assets/icons/broken/transmission.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/trash-bin-minimalistic-2.svg b/assets/icons/broken/trash-bin-minimalistic-2.svg index d05e433d..8b33be9a 100644 --- a/assets/icons/broken/trash-bin-minimalistic-2.svg +++ b/assets/icons/broken/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/trash-bin-minimalistic.svg b/assets/icons/broken/trash-bin-minimalistic.svg index bb40bb22..d65a7ee4 100644 --- a/assets/icons/broken/trash-bin-minimalistic.svg +++ b/assets/icons/broken/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/trash-bin-trash.svg b/assets/icons/broken/trash-bin-trash.svg index 76790635..2bf32380 100644 --- a/assets/icons/broken/trash-bin-trash.svg +++ b/assets/icons/broken/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/treadmill-round.svg b/assets/icons/broken/treadmill-round.svg index 5d342412..0e95646f 100644 --- a/assets/icons/broken/treadmill-round.svg +++ b/assets/icons/broken/treadmill-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/treadmill.svg b/assets/icons/broken/treadmill.svg index ee5e5eef..a5c81424 100644 --- a/assets/icons/broken/treadmill.svg +++ b/assets/icons/broken/treadmill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning-2.svg b/assets/icons/broken/tuning-2.svg index e808c4f5..963a621e 100644 --- a/assets/icons/broken/tuning-2.svg +++ b/assets/icons/broken/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning-3.svg b/assets/icons/broken/tuning-3.svg index cf2ec8b6..265e09d4 100644 --- a/assets/icons/broken/tuning-3.svg +++ b/assets/icons/broken/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning-4.svg b/assets/icons/broken/tuning-4.svg index 59e96cae..66e853d1 100644 --- a/assets/icons/broken/tuning-4.svg +++ b/assets/icons/broken/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning-square-2.svg b/assets/icons/broken/tuning-square-2.svg index 002bba4e..014dedc6 100644 --- a/assets/icons/broken/tuning-square-2.svg +++ b/assets/icons/broken/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning-square.svg b/assets/icons/broken/tuning-square.svg index 5e0d9d62..96e725b6 100644 --- a/assets/icons/broken/tuning-square.svg +++ b/assets/icons/broken/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tuning.svg b/assets/icons/broken/tuning.svg index 60c1fe0e..04dc613e 100644 --- a/assets/icons/broken/tuning.svg +++ b/assets/icons/broken/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/turntable-music-note.svg b/assets/icons/broken/turntable-music-note.svg index 9538002c..342de8c0 100644 --- a/assets/icons/broken/turntable-music-note.svg +++ b/assets/icons/broken/turntable-music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/tv.svg b/assets/icons/broken/tv.svg index 71112c87..30b2e48b 100644 --- a/assets/icons/broken/tv.svg +++ b/assets/icons/broken/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ufo-2.svg b/assets/icons/broken/ufo-2.svg index e13633a1..b60bb1e2 100644 --- a/assets/icons/broken/ufo-2.svg +++ b/assets/icons/broken/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ufo-3.svg b/assets/icons/broken/ufo-3.svg index 0a0b8368..8bb754f0 100644 --- a/assets/icons/broken/ufo-3.svg +++ b/assets/icons/broken/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/ufo.svg b/assets/icons/broken/ufo.svg index c2029253..25792871 100644 --- a/assets/icons/broken/ufo.svg +++ b/assets/icons/broken/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/umbrella.svg b/assets/icons/broken/umbrella.svg index e269f95c..c55294dd 100644 --- a/assets/icons/broken/umbrella.svg +++ b/assets/icons/broken/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-left-round-square.svg b/assets/icons/broken/undo-left-round-square.svg index 5bfa8603..3bff29dd 100644 --- a/assets/icons/broken/undo-left-round-square.svg +++ b/assets/icons/broken/undo-left-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-left-round.svg b/assets/icons/broken/undo-left-round.svg index 8207b6f8..a368a7e9 100644 --- a/assets/icons/broken/undo-left-round.svg +++ b/assets/icons/broken/undo-left-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-left-square.svg b/assets/icons/broken/undo-left-square.svg index 456f7005..ca9cd328 100644 --- a/assets/icons/broken/undo-left-square.svg +++ b/assets/icons/broken/undo-left-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-left.svg b/assets/icons/broken/undo-left.svg index 729477e9..34ab6b7d 100644 --- a/assets/icons/broken/undo-left.svg +++ b/assets/icons/broken/undo-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-right-round-square.svg b/assets/icons/broken/undo-right-round-square.svg index b3ccb990..695bfeff 100644 --- a/assets/icons/broken/undo-right-round-square.svg +++ b/assets/icons/broken/undo-right-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-right-round.svg b/assets/icons/broken/undo-right-round.svg index 8f03aa75..aeb537ed 100644 --- a/assets/icons/broken/undo-right-round.svg +++ b/assets/icons/broken/undo-right-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-right-square.svg b/assets/icons/broken/undo-right-square.svg index 521eb46a..507d7295 100644 --- a/assets/icons/broken/undo-right-square.svg +++ b/assets/icons/broken/undo-right-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/undo-right.svg b/assets/icons/broken/undo-right.svg index 397228b0..d9b35bc5 100644 --- a/assets/icons/broken/undo-right.svg +++ b/assets/icons/broken/undo-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/unlink-minimalistic.svg b/assets/icons/broken/unlink-minimalistic.svg new file mode 100644 index 00000000..3525fe8f --- /dev/null +++ b/assets/icons/broken/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/unlink.svg b/assets/icons/broken/unlink.svg new file mode 100644 index 00000000..42057bd9 --- /dev/null +++ b/assets/icons/broken/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/upload-minimalistic.svg b/assets/icons/broken/upload-minimalistic.svg index 6c666764..d3d3ff94 100644 --- a/assets/icons/broken/upload-minimalistic.svg +++ b/assets/icons/broken/upload-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/upload-square.svg b/assets/icons/broken/upload-square.svg index 05009c30..950ec884 100644 --- a/assets/icons/broken/upload-square.svg +++ b/assets/icons/broken/upload-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/upload-track-2.svg b/assets/icons/broken/upload-track-2.svg index a100c8e5..5406f997 100644 --- a/assets/icons/broken/upload-track-2.svg +++ b/assets/icons/broken/upload-track-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/upload-track.svg b/assets/icons/broken/upload-track.svg index 5683e209..ebd2c917 100644 --- a/assets/icons/broken/upload-track.svg +++ b/assets/icons/broken/upload-track.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/upload-twice-square.svg b/assets/icons/broken/upload-twice-square.svg index 4b8de5b9..047cf9c9 100644 --- a/assets/icons/broken/upload-twice-square.svg +++ b/assets/icons/broken/upload-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/upload.svg b/assets/icons/broken/upload.svg index dea55030..1ad88d67 100644 --- a/assets/icons/broken/upload.svg +++ b/assets/icons/broken/upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/usb-circle.svg b/assets/icons/broken/usb-circle.svg index 442df1dc..16a0291a 100644 --- a/assets/icons/broken/usb-circle.svg +++ b/assets/icons/broken/usb-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/usb-square.svg b/assets/icons/broken/usb-square.svg index 9887817c..9ab832e0 100644 --- a/assets/icons/broken/usb-square.svg +++ b/assets/icons/broken/usb-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/usb.svg b/assets/icons/broken/usb.svg index a995967e..53634b21 100644 --- a/assets/icons/broken/usb.svg +++ b/assets/icons/broken/usb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-block.svg b/assets/icons/broken/user-block.svg index 2a06f429..91fb5eb2 100644 --- a/assets/icons/broken/user-block.svg +++ b/assets/icons/broken/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-cross-rounded.svg b/assets/icons/broken/user-cross-rounded.svg index 99ff2dae..cdf3571f 100644 --- a/assets/icons/broken/user-cross-rounded.svg +++ b/assets/icons/broken/user-cross-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-cross.svg b/assets/icons/broken/user-cross.svg index e4e2bde6..1e4f5b38 100644 --- a/assets/icons/broken/user-cross.svg +++ b/assets/icons/broken/user-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-heart-rounded.svg b/assets/icons/broken/user-heart-rounded.svg index 05744725..1d6dcfad 100644 --- a/assets/icons/broken/user-heart-rounded.svg +++ b/assets/icons/broken/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-heart.svg b/assets/icons/broken/user-heart.svg index 3843ff6f..d36c7c08 100644 --- a/assets/icons/broken/user-heart.svg +++ b/assets/icons/broken/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-id.svg b/assets/icons/broken/user-id.svg index 7b7ffea8..f4f7ebae 100644 --- a/assets/icons/broken/user-id.svg +++ b/assets/icons/broken/user-id.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-minus-rounded.svg b/assets/icons/broken/user-minus-rounded.svg index a1edacb8..34a19a0a 100644 --- a/assets/icons/broken/user-minus-rounded.svg +++ b/assets/icons/broken/user-minus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-minus.svg b/assets/icons/broken/user-minus.svg index b38f9f25..ca6b7a25 100644 --- a/assets/icons/broken/user-minus.svg +++ b/assets/icons/broken/user-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-plus-rounded.svg b/assets/icons/broken/user-plus-rounded.svg index aa5f05d0..cf230c14 100644 --- a/assets/icons/broken/user-plus-rounded.svg +++ b/assets/icons/broken/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-plus.svg b/assets/icons/broken/user-plus.svg index 55aa0906..e6fd72f8 100644 --- a/assets/icons/broken/user-plus.svg +++ b/assets/icons/broken/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-speak-rounded.svg b/assets/icons/broken/user-speak-rounded.svg index e6c44e48..c8d6fc4d 100644 --- a/assets/icons/broken/user-speak-rounded.svg +++ b/assets/icons/broken/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/user-speak.svg b/assets/icons/broken/user-speak.svg index 80805c3c..1ec6c975 100644 --- a/assets/icons/broken/user-speak.svg +++ b/assets/icons/broken/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/users-group-rounded.svg b/assets/icons/broken/users-group-rounded.svg index d2e4af76..312d818e 100644 --- a/assets/icons/broken/users-group-rounded.svg +++ b/assets/icons/broken/users-group-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/users-group-two-rounded.svg b/assets/icons/broken/users-group-two-rounded.svg index 9f1d61a8..2dc6cef8 100644 --- a/assets/icons/broken/users-group-two-rounded.svg +++ b/assets/icons/broken/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/vanity.svg b/assets/icons/broken/vanity.svg new file mode 100644 index 00000000..701b1d72 --- /dev/null +++ b/assets/icons/broken/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-2.svg b/assets/icons/broken/video-frame-2.svg index 09e72545..cf2d1a83 100644 --- a/assets/icons/broken/video-frame-2.svg +++ b/assets/icons/broken/video-frame-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-cut-2.svg b/assets/icons/broken/video-frame-cut-2.svg index 8633ba30..b07de91a 100644 --- a/assets/icons/broken/video-frame-cut-2.svg +++ b/assets/icons/broken/video-frame-cut-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-cut.svg b/assets/icons/broken/video-frame-cut.svg index 850b9c3f..fe2d7cdb 100644 --- a/assets/icons/broken/video-frame-cut.svg +++ b/assets/icons/broken/video-frame-cut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-play-horizontal.svg b/assets/icons/broken/video-frame-play-horizontal.svg index 7441437c..2c27eeb8 100644 --- a/assets/icons/broken/video-frame-play-horizontal.svg +++ b/assets/icons/broken/video-frame-play-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-play-vertical.svg b/assets/icons/broken/video-frame-play-vertical.svg index 4d4ae355..be1b4de6 100644 --- a/assets/icons/broken/video-frame-play-vertical.svg +++ b/assets/icons/broken/video-frame-play-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame-replace.svg b/assets/icons/broken/video-frame-replace.svg index 5735e5a7..a0a361c4 100644 --- a/assets/icons/broken/video-frame-replace.svg +++ b/assets/icons/broken/video-frame-replace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-frame.svg b/assets/icons/broken/video-frame.svg index 92c95d55..41149fc4 100644 --- a/assets/icons/broken/video-frame.svg +++ b/assets/icons/broken/video-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/video-library.svg b/assets/icons/broken/video-library.svg index 3078714d..b46dc32b 100644 --- a/assets/icons/broken/video-library.svg +++ b/assets/icons/broken/video-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/videocamera-add.svg b/assets/icons/broken/videocamera-add.svg index 08fd2d57..b4866014 100644 --- a/assets/icons/broken/videocamera-add.svg +++ b/assets/icons/broken/videocamera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/videocamera-record.svg b/assets/icons/broken/videocamera-record.svg index 01096875..040638f6 100644 --- a/assets/icons/broken/videocamera-record.svg +++ b/assets/icons/broken/videocamera-record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/virus.svg b/assets/icons/broken/virus.svg index 08ed9188..c0ae1af6 100644 --- a/assets/icons/broken/virus.svg +++ b/assets/icons/broken/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volleyball-2.svg b/assets/icons/broken/volleyball-2.svg index b184b25c..e83157ad 100644 --- a/assets/icons/broken/volleyball-2.svg +++ b/assets/icons/broken/volleyball-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volleyball.svg b/assets/icons/broken/volleyball.svg index 42731067..dc92c3b9 100644 --- a/assets/icons/broken/volleyball.svg +++ b/assets/icons/broken/volleyball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volume-cross.svg b/assets/icons/broken/volume-cross.svg index 12a486ba..3d65e599 100644 --- a/assets/icons/broken/volume-cross.svg +++ b/assets/icons/broken/volume-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volume-knob.svg b/assets/icons/broken/volume-knob.svg index 4eadeed0..e36e650b 100644 --- a/assets/icons/broken/volume-knob.svg +++ b/assets/icons/broken/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volume-loud.svg b/assets/icons/broken/volume-loud.svg index 36088972..c9409e36 100644 --- a/assets/icons/broken/volume-loud.svg +++ b/assets/icons/broken/volume-loud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/volume-small.svg b/assets/icons/broken/volume-small.svg index 859ff2e5..909be4c3 100644 --- a/assets/icons/broken/volume-small.svg +++ b/assets/icons/broken/volume-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/walking-round.svg b/assets/icons/broken/walking-round.svg index 6f48adb0..c7e2ee43 100644 --- a/assets/icons/broken/walking-round.svg +++ b/assets/icons/broken/walking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/walking.svg b/assets/icons/broken/walking.svg index 1546783d..e2a44625 100644 --- a/assets/icons/broken/walking.svg +++ b/assets/icons/broken/walking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wallet-2.svg b/assets/icons/broken/wallet-2.svg index a5a27df0..31e9d465 100644 --- a/assets/icons/broken/wallet-2.svg +++ b/assets/icons/broken/wallet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wallet-money.svg b/assets/icons/broken/wallet-money.svg index 2e774f2c..6409269a 100644 --- a/assets/icons/broken/wallet-money.svg +++ b/assets/icons/broken/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wallet.svg b/assets/icons/broken/wallet.svg index 3bd3ba4f..33f793b9 100644 --- a/assets/icons/broken/wallet.svg +++ b/assets/icons/broken/wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wallpaper.svg b/assets/icons/broken/wallpaper.svg index 864eb67b..b76f4b79 100644 --- a/assets/icons/broken/wallpaper.svg +++ b/assets/icons/broken/wallpaper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/washing-machine-minimalistic.svg b/assets/icons/broken/washing-machine-minimalistic.svg index e2a91fad..c4b85075 100644 --- a/assets/icons/broken/washing-machine-minimalistic.svg +++ b/assets/icons/broken/washing-machine-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/washing-machine.svg b/assets/icons/broken/washing-machine.svg index 144269a8..42b184a9 100644 --- a/assets/icons/broken/washing-machine.svg +++ b/assets/icons/broken/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/watch-round.svg b/assets/icons/broken/watch-round.svg index e5149d7b..d2f9b140 100644 --- a/assets/icons/broken/watch-round.svg +++ b/assets/icons/broken/watch-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/watch-square-minimalistic-charge.svg b/assets/icons/broken/watch-square-minimalistic-charge.svg index 33d7e4fc..444f2751 100644 --- a/assets/icons/broken/watch-square-minimalistic-charge.svg +++ b/assets/icons/broken/watch-square-minimalistic-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/watch-square-minimalistic.svg b/assets/icons/broken/watch-square-minimalistic.svg index 4e76a7ff..0f85b6c7 100644 --- a/assets/icons/broken/watch-square-minimalistic.svg +++ b/assets/icons/broken/watch-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/watch-square.svg b/assets/icons/broken/watch-square.svg index 4527c100..e5d02dc6 100644 --- a/assets/icons/broken/watch-square.svg +++ b/assets/icons/broken/watch-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/water-sun.svg b/assets/icons/broken/water-sun.svg index 43295ed3..b59d651d 100644 --- a/assets/icons/broken/water-sun.svg +++ b/assets/icons/broken/water-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/water.svg b/assets/icons/broken/water.svg index f5c36989..44d40422 100644 --- a/assets/icons/broken/water.svg +++ b/assets/icons/broken/water.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/waterdrops.svg b/assets/icons/broken/waterdrops.svg index 0b7a8108..cdb1b32a 100644 --- a/assets/icons/broken/waterdrops.svg +++ b/assets/icons/broken/waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/weigher.svg b/assets/icons/broken/weigher.svg deleted file mode 100644 index 8b1edc49..00000000 --- a/assets/icons/broken/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/broken/wheel-angle.svg b/assets/icons/broken/wheel-angle.svg index 90d9cf36..909f049f 100644 --- a/assets/icons/broken/wheel-angle.svg +++ b/assets/icons/broken/wheel-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wheel.svg b/assets/icons/broken/wheel.svg index 2da35104..0fc8c5bc 100644 --- a/assets/icons/broken/wheel.svg +++ b/assets/icons/broken/wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wi-fi-router-minimalistic.svg b/assets/icons/broken/wi-fi-router-minimalistic.svg index a4c99773..2c93710a 100644 --- a/assets/icons/broken/wi-fi-router-minimalistic.svg +++ b/assets/icons/broken/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wi-fi-router-round.svg b/assets/icons/broken/wi-fi-router-round.svg index c62cb0f1..e5a990de 100644 --- a/assets/icons/broken/wi-fi-router-round.svg +++ b/assets/icons/broken/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wi-fi-router.svg b/assets/icons/broken/wi-fi-router.svg index 28d1abc7..5c59c313 100644 --- a/assets/icons/broken/wi-fi-router.svg +++ b/assets/icons/broken/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget-2.svg b/assets/icons/broken/widget-2.svg index 3ea6db9a..65e9bdd8 100644 --- a/assets/icons/broken/widget-2.svg +++ b/assets/icons/broken/widget-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget-3.svg b/assets/icons/broken/widget-3.svg index d0724da6..67b1ae8b 100644 --- a/assets/icons/broken/widget-3.svg +++ b/assets/icons/broken/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget-4.svg b/assets/icons/broken/widget-4.svg index 04fe6cfb..cf531d7b 100644 --- a/assets/icons/broken/widget-4.svg +++ b/assets/icons/broken/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget-6.svg b/assets/icons/broken/widget-6.svg index a6289a7e..f5aa6f55 100644 --- a/assets/icons/broken/widget-6.svg +++ b/assets/icons/broken/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget-add.svg b/assets/icons/broken/widget-add.svg index 289dc3c4..3f5755a6 100644 --- a/assets/icons/broken/widget-add.svg +++ b/assets/icons/broken/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/widget.svg b/assets/icons/broken/widget.svg index 0e5a769a..58c38814 100644 --- a/assets/icons/broken/widget.svg +++ b/assets/icons/broken/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/winrar.svg b/assets/icons/broken/win-rar.svg similarity index 68% rename from assets/icons/broken/winrar.svg rename to assets/icons/broken/win-rar.svg index a6e20c7e..f5db46cc 100644 --- a/assets/icons/broken/winrar.svg +++ b/assets/icons/broken/win-rar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wind.svg b/assets/icons/broken/wind.svg index be889f9e..100d09c3 100644 --- a/assets/icons/broken/wind.svg +++ b/assets/icons/broken/wind.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/window-frame.svg b/assets/icons/broken/window-frame.svg index da9d45a2..ed89a9e7 100644 --- a/assets/icons/broken/window-frame.svg +++ b/assets/icons/broken/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wineglass.svg b/assets/icons/broken/wineglass.svg index b6cf3f2f..32eea178 100644 --- a/assets/icons/broken/wineglass.svg +++ b/assets/icons/broken/wineglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/wireless-charge.svg b/assets/icons/broken/wireless-charge.svg index 2aa50f2b..131452b2 100644 --- a/assets/icons/broken/wireless-charge.svg +++ b/assets/icons/broken/wireless-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/women.svg b/assets/icons/broken/women.svg index 5dd5a89d..3792c6f6 100644 --- a/assets/icons/broken/women.svg +++ b/assets/icons/broken/women.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/xxx.svg b/assets/icons/broken/xxx.svg index 4bde3fed..50c11119 100644 --- a/assets/icons/broken/xxx.svg +++ b/assets/icons/broken/xxx.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/broken/zip-file.svg b/assets/icons/broken/zip-file.svg index af337f8e..a5598992 100644 --- a/assets/icons/broken/zip-file.svg +++ b/assets/icons/broken/zip-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/accessibility.svg b/assets/icons/line_duotone/accessibility.svg index 91db7703..1f5ce0f3 100644 --- a/assets/icons/line_duotone/accessibility.svg +++ b/assets/icons/line_duotone/accessibility.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/adhesive-plaster-2.svg b/assets/icons/line_duotone/adhesive-plaster-2.svg index 6e733bc5..7e4dc689 100644 --- a/assets/icons/line_duotone/adhesive-plaster-2.svg +++ b/assets/icons/line_duotone/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/adhesive-plaster.svg b/assets/icons/line_duotone/adhesive-plaster.svg index 71f1b2f7..d9f78494 100644 --- a/assets/icons/line_duotone/adhesive-plaster.svg +++ b/assets/icons/line_duotone/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-case-open.svg b/assets/icons/line_duotone/airbuds-case-open.svg index 147e6e07..68139735 100644 --- a/assets/icons/line_duotone/airbuds-case-open.svg +++ b/assets/icons/line_duotone/airbuds-case-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-charge.svg b/assets/icons/line_duotone/airbuds-charge.svg index aa1cf72e..726a009a 100644 --- a/assets/icons/line_duotone/airbuds-charge.svg +++ b/assets/icons/line_duotone/airbuds-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-check.svg b/assets/icons/line_duotone/airbuds-check.svg index c11725ea..7e9c0428 100644 --- a/assets/icons/line_duotone/airbuds-check.svg +++ b/assets/icons/line_duotone/airbuds-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-left.svg b/assets/icons/line_duotone/airbuds-left.svg index e35bcee3..52612cd9 100644 --- a/assets/icons/line_duotone/airbuds-left.svg +++ b/assets/icons/line_duotone/airbuds-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-remove.svg b/assets/icons/line_duotone/airbuds-remove.svg index 045f56e0..43bc88b0 100644 --- a/assets/icons/line_duotone/airbuds-remove.svg +++ b/assets/icons/line_duotone/airbuds-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds-right.svg b/assets/icons/line_duotone/airbuds-right.svg index e26bd4ee..822c2961 100644 --- a/assets/icons/line_duotone/airbuds-right.svg +++ b/assets/icons/line_duotone/airbuds-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/airbuds.svg b/assets/icons/line_duotone/airbuds.svg index 65528a3f..22f3db03 100644 --- a/assets/icons/line_duotone/airbuds.svg +++ b/assets/icons/line_duotone/airbuds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-add.svg b/assets/icons/line_duotone/alarm-add.svg index 738a8399..1d4666af 100644 --- a/assets/icons/line_duotone/alarm-add.svg +++ b/assets/icons/line_duotone/alarm-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-pause.svg b/assets/icons/line_duotone/alarm-pause.svg index 54ea4a70..153d1475 100644 --- a/assets/icons/line_duotone/alarm-pause.svg +++ b/assets/icons/line_duotone/alarm-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-play.svg b/assets/icons/line_duotone/alarm-play.svg index ef1164f9..b449b070 100644 --- a/assets/icons/line_duotone/alarm-play.svg +++ b/assets/icons/line_duotone/alarm-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-remove.svg b/assets/icons/line_duotone/alarm-remove.svg index 2a7c3299..be01df3e 100644 --- a/assets/icons/line_duotone/alarm-remove.svg +++ b/assets/icons/line_duotone/alarm-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-sleep.svg b/assets/icons/line_duotone/alarm-sleep.svg index 4c823991..69ee51e9 100644 --- a/assets/icons/line_duotone/alarm-sleep.svg +++ b/assets/icons/line_duotone/alarm-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm-turn-off.svg b/assets/icons/line_duotone/alarm-turn-off.svg index 205de77b..6e5996cc 100644 --- a/assets/icons/line_duotone/alarm-turn-off.svg +++ b/assets/icons/line_duotone/alarm-turn-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/alarm.svg b/assets/icons/line_duotone/alarm.svg index e9d89f7f..a98db818 100644 --- a/assets/icons/line_duotone/alarm.svg +++ b/assets/icons/line_duotone/alarm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-bottom.svg b/assets/icons/line_duotone/align-bottom.svg index 9582722e..72847010 100644 --- a/assets/icons/line_duotone/align-bottom.svg +++ b/assets/icons/line_duotone/align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-horizonta-spacing.svg b/assets/icons/line_duotone/align-horizonta-spacing.svg deleted file mode 100644 index 711f6b87..00000000 --- a/assets/icons/line_duotone/align-horizonta-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/align-horizontal-center.svg b/assets/icons/line_duotone/align-horizontal-center.svg index 7378a49d..ce04933a 100644 --- a/assets/icons/line_duotone/align-horizontal-center.svg +++ b/assets/icons/line_duotone/align-horizontal-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-horizontal-spacing.svg b/assets/icons/line_duotone/align-horizontal-spacing.svg new file mode 100644 index 00000000..ea37ec3a --- /dev/null +++ b/assets/icons/line_duotone/align-horizontal-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-left.svg b/assets/icons/line_duotone/align-left.svg index 56b065cc..70bc5bed 100644 --- a/assets/icons/line_duotone/align-left.svg +++ b/assets/icons/line_duotone/align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-right.svg b/assets/icons/line_duotone/align-right.svg index 54a8826f..3f93f9fc 100644 --- a/assets/icons/line_duotone/align-right.svg +++ b/assets/icons/line_duotone/align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-top.svg b/assets/icons/line_duotone/align-top.svg index 8798ff35..ed8fd854 100644 --- a/assets/icons/line_duotone/align-top.svg +++ b/assets/icons/line_duotone/align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-vertical-center.svg b/assets/icons/line_duotone/align-vertical-center.svg index c6ef9c15..8aa28bb4 100644 --- a/assets/icons/line_duotone/align-vertical-center.svg +++ b/assets/icons/line_duotone/align-vertical-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/align-vertical-spacing.svg b/assets/icons/line_duotone/align-vertical-spacing.svg index b41fae0d..1e4ae9bd 100644 --- a/assets/icons/line_duotone/align-vertical-spacing.svg +++ b/assets/icons/line_duotone/align-vertical-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/archive-down-minimlistic.svg b/assets/icons/line_duotone/archive-down-minimalistic.svg similarity index 83% rename from assets/icons/line_duotone/archive-down-minimlistic.svg rename to assets/icons/line_duotone/archive-down-minimalistic.svg index 2611431e..6999bce8 100644 --- a/assets/icons/line_duotone/archive-down-minimlistic.svg +++ b/assets/icons/line_duotone/archive-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/archive-down.svg b/assets/icons/line_duotone/archive-down.svg index ae4692ce..9a8a8f97 100644 --- a/assets/icons/line_duotone/archive-down.svg +++ b/assets/icons/line_duotone/archive-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/archive-up-minimlistic.svg b/assets/icons/line_duotone/archive-up-minimalistic.svg similarity index 83% rename from assets/icons/line_duotone/archive-up-minimlistic.svg rename to assets/icons/line_duotone/archive-up-minimalistic.svg index d293bf72..823c5389 100644 --- a/assets/icons/line_duotone/archive-up-minimlistic.svg +++ b/assets/icons/line_duotone/archive-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/archive-up.svg b/assets/icons/line_duotone/archive-up.svg index 9b0d5e04..b3f52f8e 100644 --- a/assets/icons/line_duotone/archive-up.svg +++ b/assets/icons/line_duotone/archive-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/armchair-2.svg b/assets/icons/line_duotone/armchair-2.svg index b2744ad9..7e3f7e07 100644 --- a/assets/icons/line_duotone/armchair-2.svg +++ b/assets/icons/line_duotone/armchair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-down.svg b/assets/icons/line_duotone/arrow-down.svg index 3c2b300a..4538383e 100644 --- a/assets/icons/line_duotone/arrow-down.svg +++ b/assets/icons/line_duotone/arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-left-down.svg b/assets/icons/line_duotone/arrow-left-down.svg index c06692c4..0a7b5388 100644 --- a/assets/icons/line_duotone/arrow-left-down.svg +++ b/assets/icons/line_duotone/arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-left-up.svg b/assets/icons/line_duotone/arrow-left-up.svg index 4dfe0697..f6f1eb32 100644 --- a/assets/icons/line_duotone/arrow-left-up.svg +++ b/assets/icons/line_duotone/arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-left.svg b/assets/icons/line_duotone/arrow-left.svg index 9008509a..5ca53c38 100644 --- a/assets/icons/line_duotone/arrow-left.svg +++ b/assets/icons/line_duotone/arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-right-down.svg b/assets/icons/line_duotone/arrow-right-down.svg index cab643ca..00eb0c82 100644 --- a/assets/icons/line_duotone/arrow-right-down.svg +++ b/assets/icons/line_duotone/arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-right-up.svg b/assets/icons/line_duotone/arrow-right-up.svg index 9d79d5b0..e17d9d80 100644 --- a/assets/icons/line_duotone/arrow-right-up.svg +++ b/assets/icons/line_duotone/arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-right.svg b/assets/icons/line_duotone/arrow-right.svg index 272997a2..f757005d 100644 --- a/assets/icons/line_duotone/arrow-right.svg +++ b/assets/icons/line_duotone/arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/arrow-up.svg b/assets/icons/line_duotone/arrow-up.svg index 1af0b168..3f5cd229 100644 --- a/assets/icons/line_duotone/arrow-up.svg +++ b/assets/icons/line_duotone/arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/asteroid.svg b/assets/icons/line_duotone/asteroid.svg index af5a101d..c9955e9b 100644 --- a/assets/icons/line_duotone/asteroid.svg +++ b/assets/icons/line_duotone/asteroid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/augmented-reality.svg b/assets/icons/line_duotone/augmented-reality.svg index 74f363f9..d590ffae 100644 --- a/assets/icons/line_duotone/augmented-reality.svg +++ b/assets/icons/line_duotone/augmented-reality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/backpack.svg b/assets/icons/line_duotone/backpack.svg index 66add5e3..d9665997 100644 --- a/assets/icons/line_duotone/backpack.svg +++ b/assets/icons/line_duotone/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bacteria.svg b/assets/icons/line_duotone/bacteria.svg index 207f9dc4..9e8a040e 100644 --- a/assets/icons/line_duotone/bacteria.svg +++ b/assets/icons/line_duotone/bacteria.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-2.svg b/assets/icons/line_duotone/bag-2.svg index 6b377f02..b94a9609 100644 --- a/assets/icons/line_duotone/bag-2.svg +++ b/assets/icons/line_duotone/bag-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-3.svg b/assets/icons/line_duotone/bag-3.svg index 2ac5dde6..18dd282d 100644 --- a/assets/icons/line_duotone/bag-3.svg +++ b/assets/icons/line_duotone/bag-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-4.svg b/assets/icons/line_duotone/bag-4.svg index aa7c0ea7..b00ebffc 100644 --- a/assets/icons/line_duotone/bag-4.svg +++ b/assets/icons/line_duotone/bag-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-5.svg b/assets/icons/line_duotone/bag-5.svg index 00cafb88..cb9d8d42 100644 --- a/assets/icons/line_duotone/bag-5.svg +++ b/assets/icons/line_duotone/bag-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-check.svg b/assets/icons/line_duotone/bag-check.svg index 6f09d8ab..8e6ddd1a 100644 --- a/assets/icons/line_duotone/bag-check.svg +++ b/assets/icons/line_duotone/bag-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-cross.svg b/assets/icons/line_duotone/bag-cross.svg index db0c8f96..8eff46d0 100644 --- a/assets/icons/line_duotone/bag-cross.svg +++ b/assets/icons/line_duotone/bag-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-heart.svg b/assets/icons/line_duotone/bag-heart.svg index 63823466..dce2fd5f 100644 --- a/assets/icons/line_duotone/bag-heart.svg +++ b/assets/icons/line_duotone/bag-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-music-2.svg b/assets/icons/line_duotone/bag-music-2.svg index ccba4c29..e3e28a88 100644 --- a/assets/icons/line_duotone/bag-music-2.svg +++ b/assets/icons/line_duotone/bag-music-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-music.svg b/assets/icons/line_duotone/bag-music.svg index c10c18f9..d4c26bf5 100644 --- a/assets/icons/line_duotone/bag-music.svg +++ b/assets/icons/line_duotone/bag-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag-smile.svg b/assets/icons/line_duotone/bag-smile.svg index 10cf23ea..18786839 100644 --- a/assets/icons/line_duotone/bag-smile.svg +++ b/assets/icons/line_duotone/bag-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bag.svg b/assets/icons/line_duotone/bag.svg index 232c147d..9619f1d4 100644 --- a/assets/icons/line_duotone/bag.svg +++ b/assets/icons/line_duotone/bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/balloon.svg b/assets/icons/line_duotone/balloon.svg index 5d0050d7..5d72b8b4 100644 --- a/assets/icons/line_duotone/balloon.svg +++ b/assets/icons/line_duotone/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/balls.svg b/assets/icons/line_duotone/balls.svg index 8e83e427..3a7ff969 100644 --- a/assets/icons/line_duotone/balls.svg +++ b/assets/icons/line_duotone/balls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/banknote-2.svg b/assets/icons/line_duotone/banknote-2.svg index f991559e..fe7df087 100644 --- a/assets/icons/line_duotone/banknote-2.svg +++ b/assets/icons/line_duotone/banknote-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/banknote.svg b/assets/icons/line_duotone/banknote.svg index 90be2406..4ae8148d 100644 --- a/assets/icons/line_duotone/banknote.svg +++ b/assets/icons/line_duotone/banknote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bar-chair.svg b/assets/icons/line_duotone/bar-chair.svg index 74e72e1c..701cbc66 100644 --- a/assets/icons/line_duotone/bar-chair.svg +++ b/assets/icons/line_duotone/bar-chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bath.svg b/assets/icons/line_duotone/bath.svg index 5128a159..0aed15e0 100644 --- a/assets/icons/line_duotone/bath.svg +++ b/assets/icons/line_duotone/bath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/battery-full-minimalistic.svg b/assets/icons/line_duotone/battery-full-minimalistic.svg index e6548ce7..3cf37017 100644 --- a/assets/icons/line_duotone/battery-full-minimalistic.svg +++ b/assets/icons/line_duotone/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/battery-half-minimalistic.svg b/assets/icons/line_duotone/battery-half-minimalistic.svg index d58adb44..daea583b 100644 --- a/assets/icons/line_duotone/battery-half-minimalistic.svg +++ b/assets/icons/line_duotone/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/battery-low-minimalistic.svg b/assets/icons/line_duotone/battery-low-minimalistic.svg index 0bfd2ee5..5f97abdc 100644 --- a/assets/icons/line_duotone/battery-low-minimalistic.svg +++ b/assets/icons/line_duotone/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bed.svg b/assets/icons/line_duotone/bed.svg index 80e3327e..0742ea3d 100644 --- a/assets/icons/line_duotone/bed.svg +++ b/assets/icons/line_duotone/bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bedside-table-2.svg b/assets/icons/line_duotone/bedside-table-2.svg index 0a919edb..577b3f01 100644 --- a/assets/icons/line_duotone/bedside-table-2.svg +++ b/assets/icons/line_duotone/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bedside-table-3.svg b/assets/icons/line_duotone/bedside-table-3.svg index eb0efbd9..feb81a84 100644 --- a/assets/icons/line_duotone/bedside-table-3.svg +++ b/assets/icons/line_duotone/bedside-table-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bedside-table-4.svg b/assets/icons/line_duotone/bedside-table-4.svg index d7147399..356c65c5 100644 --- a/assets/icons/line_duotone/bedside-table-4.svg +++ b/assets/icons/line_duotone/bedside-table-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bedside-table.svg b/assets/icons/line_duotone/bedside-table.svg index c479b62e..60c139fb 100644 --- a/assets/icons/line_duotone/bedside-table.svg +++ b/assets/icons/line_duotone/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bell-bing.svg b/assets/icons/line_duotone/bell-ring.svg similarity index 84% rename from assets/icons/linear/bell-bing.svg rename to assets/icons/line_duotone/bell-ring.svg index 3103fd3b..28176dac 100644 --- a/assets/icons/linear/bell-bing.svg +++ b/assets/icons/line_duotone/bell-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/benzene-ring.svg b/assets/icons/line_duotone/benzene-ring.svg index 5e2abcb3..e12f4a09 100644 --- a/assets/icons/line_duotone/benzene-ring.svg +++ b/assets/icons/line_duotone/benzene-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bicycling.svg b/assets/icons/line_duotone/bicycling.svg index fa77e8d6..2212b903 100644 --- a/assets/icons/line_duotone/bicycling.svg +++ b/assets/icons/line_duotone/bicycling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bill-2.svg b/assets/icons/line_duotone/bill-2.svg new file mode 100644 index 00000000..e1ce964d --- /dev/null +++ b/assets/icons/line_duotone/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/bill-cross.svg b/assets/icons/line_duotone/bill-cross.svg index 0a46f1ac..f8fb40f9 100644 --- a/assets/icons/line_duotone/bill-cross.svg +++ b/assets/icons/line_duotone/bill-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bill-list.svg b/assets/icons/line_duotone/bill-list.svg index 4b3f2062..5d516eff 100644 --- a/assets/icons/line_duotone/bill-list.svg +++ b/assets/icons/line_duotone/bill-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bill.svg b/assets/icons/line_duotone/bill.svg index 479e2367..95198ffa 100644 --- a/assets/icons/line_duotone/bill.svg +++ b/assets/icons/line_duotone/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bluetooth-wave.svg b/assets/icons/line_duotone/bluetooth-wave.svg index f32f6042..fc3f9b31 100644 --- a/assets/icons/line_duotone/bluetooth-wave.svg +++ b/assets/icons/line_duotone/bluetooth-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bluetooth.svg b/assets/icons/line_duotone/bluetooth.svg index 04f0fdeb..f642b102 100644 --- a/assets/icons/line_duotone/bluetooth.svg +++ b/assets/icons/line_duotone/bluetooth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/body-shape-minimalistic.svg b/assets/icons/line_duotone/body-shape-minimalistic.svg index 187d97b7..7d369045 100644 --- a/assets/icons/line_duotone/body-shape-minimalistic.svg +++ b/assets/icons/line_duotone/body-shape-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/body-shape.svg b/assets/icons/line_duotone/body-shape.svg index 508be8fc..b9c7dfae 100644 --- a/assets/icons/line_duotone/body-shape.svg +++ b/assets/icons/line_duotone/body-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bomb-emoji.svg b/assets/icons/line_duotone/bomb-emoji.svg index a86b3852..a456aaad 100644 --- a/assets/icons/line_duotone/bomb-emoji.svg +++ b/assets/icons/line_duotone/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bomb-minimalistic.svg b/assets/icons/line_duotone/bomb-minimalistic.svg index b97919b8..2fb4355d 100644 --- a/assets/icons/line_duotone/bomb-minimalistic.svg +++ b/assets/icons/line_duotone/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bone-broken.svg b/assets/icons/line_duotone/bone-broken.svg deleted file mode 100644 index 84ba5bcc..00000000 --- a/assets/icons/line_duotone/bone-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/bone-crack.svg b/assets/icons/line_duotone/bone-crack.svg index 53dd04fd..ca9f5066 100644 --- a/assets/icons/line_duotone/bone-crack.svg +++ b/assets/icons/line_duotone/bone-crack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bone-fracture.svg b/assets/icons/line_duotone/bone-fracture.svg new file mode 100644 index 00000000..30d2dd68 --- /dev/null +++ b/assets/icons/line_duotone/bone-fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/bone.svg b/assets/icons/line_duotone/bone.svg index afed518e..c72b920c 100644 --- a/assets/icons/line_duotone/bone.svg +++ b/assets/icons/line_duotone/bone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bones.svg b/assets/icons/line_duotone/bones.svg index 90cdb957..91952669 100644 --- a/assets/icons/line_duotone/bones.svg +++ b/assets/icons/line_duotone/bones.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bonfire.svg b/assets/icons/line_duotone/bonfire.svg index 4f155288..2e133fc3 100644 --- a/assets/icons/line_duotone/bonfire.svg +++ b/assets/icons/line_duotone/bonfire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/book-2.svg b/assets/icons/line_duotone/book-2.svg index 08b50017..5af1d1ea 100644 --- a/assets/icons/line_duotone/book-2.svg +++ b/assets/icons/line_duotone/book-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/book-bookmark-minimalistic.svg b/assets/icons/line_duotone/book-bookmark-minimalistic.svg index a26c2896..1a592c0c 100644 --- a/assets/icons/line_duotone/book-bookmark-minimalistic.svg +++ b/assets/icons/line_duotone/book-bookmark-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/book-bookmark.svg b/assets/icons/line_duotone/book-bookmark.svg index f8c7eb2d..6a235589 100644 --- a/assets/icons/line_duotone/book-bookmark.svg +++ b/assets/icons/line_duotone/book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/book-minimalistic.svg b/assets/icons/line_duotone/book-minimalistic.svg index b23cdeca..f243f92b 100644 --- a/assets/icons/line_duotone/book-minimalistic.svg +++ b/assets/icons/line_duotone/book-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/book.svg b/assets/icons/line_duotone/book.svg index ad3603ce..8c55d2dc 100644 --- a/assets/icons/line_duotone/book.svg +++ b/assets/icons/line_duotone/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/boombox.svg b/assets/icons/line_duotone/boombox.svg index 094fe8a4..d5e73555 100644 --- a/assets/icons/line_duotone/boombox.svg +++ b/assets/icons/line_duotone/boombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bottle.svg b/assets/icons/line_duotone/bottle.svg index 577df7ba..b6b4506f 100644 --- a/assets/icons/line_duotone/bottle.svg +++ b/assets/icons/line_duotone/bottle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/branching-paths-down.svg b/assets/icons/line_duotone/branching-paths-down.svg index 61fbcc0a..ceddb802 100644 --- a/assets/icons/line_duotone/branching-paths-down.svg +++ b/assets/icons/line_duotone/branching-paths-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/branching-paths-up.svg b/assets/icons/line_duotone/branching-paths-up.svg index 4e373c7a..282e21e9 100644 --- a/assets/icons/line_duotone/branching-paths-up.svg +++ b/assets/icons/line_duotone/branching-paths-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bug-minimalistic.svg b/assets/icons/line_duotone/bug-minimalistic.svg index b4d5818d..5d9202dc 100644 --- a/assets/icons/line_duotone/bug-minimalistic.svg +++ b/assets/icons/line_duotone/bug-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bug.svg b/assets/icons/line_duotone/bug.svg index 48e96151..488a82bc 100644 --- a/assets/icons/line_duotone/bug.svg +++ b/assets/icons/line_duotone/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/buildings-2.svg b/assets/icons/line_duotone/buildings-2.svg index c27d7021..081bb3c0 100644 --- a/assets/icons/line_duotone/buildings-2.svg +++ b/assets/icons/line_duotone/buildings-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/buildings-3.svg b/assets/icons/line_duotone/buildings-3.svg index 35de99ef..8271f6a7 100644 --- a/assets/icons/line_duotone/buildings-3.svg +++ b/assets/icons/line_duotone/buildings-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/buildings.svg b/assets/icons/line_duotone/buildings.svg index e7477cbd..5176985a 100644 --- a/assets/icons/line_duotone/buildings.svg +++ b/assets/icons/line_duotone/buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bus.svg b/assets/icons/line_duotone/bus.svg index 2f0980d9..96148c25 100644 --- a/assets/icons/line_duotone/bus.svg +++ b/assets/icons/line_duotone/bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calculator.svg b/assets/icons/line_duotone/calculator.svg index bfb62669..e46ef02d 100644 --- a/assets/icons/line_duotone/calculator.svg +++ b/assets/icons/line_duotone/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar-add.svg b/assets/icons/line_duotone/calendar-add.svg index 08853c06..4791259e 100644 --- a/assets/icons/line_duotone/calendar-add.svg +++ b/assets/icons/line_duotone/calendar-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar-date.svg b/assets/icons/line_duotone/calendar-date.svg index b531dde5..a6ab3177 100644 --- a/assets/icons/line_duotone/calendar-date.svg +++ b/assets/icons/line_duotone/calendar-date.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar-mark.svg b/assets/icons/line_duotone/calendar-mark.svg index 7374d2f5..20d748f0 100644 --- a/assets/icons/line_duotone/calendar-mark.svg +++ b/assets/icons/line_duotone/calendar-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar-minimalistic.svg b/assets/icons/line_duotone/calendar-minimalistic.svg index f0934a13..33b2f9f4 100644 --- a/assets/icons/line_duotone/calendar-minimalistic.svg +++ b/assets/icons/line_duotone/calendar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar-search.svg b/assets/icons/line_duotone/calendar-search.svg index 59d537f9..038ee062 100644 --- a/assets/icons/line_duotone/calendar-search.svg +++ b/assets/icons/line_duotone/calendar-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/calendar.svg b/assets/icons/line_duotone/calendar.svg index 7d498222..185004fd 100644 --- a/assets/icons/line_duotone/calendar.svg +++ b/assets/icons/line_duotone/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/call-cancel.svg b/assets/icons/line_duotone/call-cancel.svg index 5c57476a..1021f789 100644 --- a/assets/icons/line_duotone/call-cancel.svg +++ b/assets/icons/line_duotone/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/call-chat.svg b/assets/icons/line_duotone/call-chat.svg index 4000cde5..6b941221 100644 --- a/assets/icons/line_duotone/call-chat.svg +++ b/assets/icons/line_duotone/call-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/call-dropped-rounded.svg b/assets/icons/line_duotone/call-dropped-rounded.svg index 4307048c..a426e977 100644 --- a/assets/icons/line_duotone/call-dropped-rounded.svg +++ b/assets/icons/line_duotone/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/call-dropped.svg b/assets/icons/line_duotone/call-dropped.svg index e695fc39..80fbd5d8 100644 --- a/assets/icons/line_duotone/call-dropped.svg +++ b/assets/icons/line_duotone/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/call-medicine.svg b/assets/icons/line_duotone/call-medicine.svg index 1747fadf..c6495092 100644 --- a/assets/icons/line_duotone/call-medicine.svg +++ b/assets/icons/line_duotone/call-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/camera-add.svg b/assets/icons/line_duotone/camera-add.svg index f75a66bb..d61e0717 100644 --- a/assets/icons/line_duotone/camera-add.svg +++ b/assets/icons/line_duotone/camera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/camera-rotate.svg b/assets/icons/line_duotone/camera-rotate.svg index 175f8702..ff7ff6ca 100644 --- a/assets/icons/line_duotone/camera-rotate.svg +++ b/assets/icons/line_duotone/camera-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/accumulator.svg b/assets/icons/line_duotone/car-battery.svg similarity index 72% rename from assets/icons/linear/accumulator.svg rename to assets/icons/line_duotone/car-battery.svg index 1c4554f6..515299c1 100644 --- a/assets/icons/linear/accumulator.svg +++ b/assets/icons/line_duotone/car-battery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/card-2.svg b/assets/icons/line_duotone/card-2.svg index 3a3a0adf..240d795c 100644 --- a/assets/icons/line_duotone/card-2.svg +++ b/assets/icons/line_duotone/card-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/card-receive.svg b/assets/icons/line_duotone/card-receive.svg new file mode 100644 index 00000000..fc9c24da --- /dev/null +++ b/assets/icons/line_duotone/card-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/card-recive.svg b/assets/icons/line_duotone/card-recive.svg deleted file mode 100644 index 64ae7752..00000000 --- a/assets/icons/line_duotone/card-recive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/card-search.svg b/assets/icons/line_duotone/card-search.svg index 03681a91..8ec98f53 100644 --- a/assets/icons/line_duotone/card-search.svg +++ b/assets/icons/line_duotone/card-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/card-send.svg b/assets/icons/line_duotone/card-send.svg index e077fb51..9d0fe7d6 100644 --- a/assets/icons/line_duotone/card-send.svg +++ b/assets/icons/line_duotone/card-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/card-transfer.svg b/assets/icons/line_duotone/card-transfer.svg index 16d31470..c68d8b6a 100644 --- a/assets/icons/line_duotone/card-transfer.svg +++ b/assets/icons/line_duotone/card-transfer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/card.svg b/assets/icons/line_duotone/card.svg index 54ab33db..8e60bd00 100644 --- a/assets/icons/line_duotone/card.svg +++ b/assets/icons/line_duotone/card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-3.svg b/assets/icons/line_duotone/cart-3.svg index f1d24fd6..3d0738f5 100644 --- a/assets/icons/line_duotone/cart-3.svg +++ b/assets/icons/line_duotone/cart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-4.svg b/assets/icons/line_duotone/cart-4.svg new file mode 100644 index 00000000..2a68016c --- /dev/null +++ b/assets/icons/line_duotone/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-5.svg b/assets/icons/line_duotone/cart-5.svg index 9dc9d500..7ccfb079 100644 --- a/assets/icons/line_duotone/cart-5.svg +++ b/assets/icons/line_duotone/cart-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-check.svg b/assets/icons/line_duotone/cart-check.svg index 7ff9235d..91b29d30 100644 --- a/assets/icons/line_duotone/cart-check.svg +++ b/assets/icons/line_duotone/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-cross.svg b/assets/icons/line_duotone/cart-cross.svg index f405b218..8f51a755 100644 --- a/assets/icons/line_duotone/cart-cross.svg +++ b/assets/icons/line_duotone/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-large-2.svg b/assets/icons/line_duotone/cart-large-2.svg index 4bc4c7ec..2e90cf5b 100644 --- a/assets/icons/line_duotone/cart-large-2.svg +++ b/assets/icons/line_duotone/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-large-3.svg b/assets/icons/line_duotone/cart-large-3.svg index cc1c1cb6..7650e0d7 100644 --- a/assets/icons/line_duotone/cart-large-3.svg +++ b/assets/icons/line_duotone/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-large-4.svg b/assets/icons/line_duotone/cart-large-4.svg index 1775b660..df2aed24 100644 --- a/assets/icons/line_duotone/cart-large-4.svg +++ b/assets/icons/line_duotone/cart-large-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-large-minimalistic.svg b/assets/icons/line_duotone/cart-large-minimalistic.svg index a2f36f77..d004a2ad 100644 --- a/assets/icons/line_duotone/cart-large-minimalistic.svg +++ b/assets/icons/line_duotone/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-large.svg b/assets/icons/line_duotone/cart-large.svg index e1e85d77..0c151717 100644 --- a/assets/icons/line_duotone/cart-large.svg +++ b/assets/icons/line_duotone/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cart-plus.svg b/assets/icons/line_duotone/cart-plus.svg index b0e6f3b8..a56df644 100644 --- a/assets/icons/line_duotone/cart-plus.svg +++ b/assets/icons/line_duotone/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/case-minimalistic.svg b/assets/icons/line_duotone/case-minimalistic.svg index 95eb7bbb..e195b6ea 100644 --- a/assets/icons/line_duotone/case-minimalistic.svg +++ b/assets/icons/line_duotone/case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/case-round-minimalistic.svg b/assets/icons/line_duotone/case-round-minimalistic.svg index 4750391d..92eeb5c8 100644 --- a/assets/icons/line_duotone/case-round-minimalistic.svg +++ b/assets/icons/line_duotone/case-round-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cash-out.svg b/assets/icons/line_duotone/cash-out.svg index 800954eb..a7c094b7 100644 --- a/assets/icons/line_duotone/cash-out.svg +++ b/assets/icons/line_duotone/cash-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cassette-2.svg b/assets/icons/line_duotone/cassette-2.svg index c1f36eb7..9c7c4780 100644 --- a/assets/icons/line_duotone/cassette-2.svg +++ b/assets/icons/line_duotone/cassette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cassette.svg b/assets/icons/line_duotone/cassette.svg index 7c29e858..f22a72b9 100644 --- a/assets/icons/line_duotone/cassette.svg +++ b/assets/icons/line_duotone/cassette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cat.svg b/assets/icons/line_duotone/cat.svg index 76751ac0..a773ca60 100644 --- a/assets/icons/line_duotone/cat.svg +++ b/assets/icons/line_duotone/cat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chair-2.svg b/assets/icons/line_duotone/chair-2.svg index 3b91589b..a9982b4f 100644 --- a/assets/icons/line_duotone/chair-2.svg +++ b/assets/icons/line_duotone/chair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chart-2.svg b/assets/icons/line_duotone/chart-2.svg index 95a008e6..a535a1c8 100644 --- a/assets/icons/line_duotone/chart-2.svg +++ b/assets/icons/line_duotone/chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chart-square.svg b/assets/icons/line_duotone/chart-square.svg index c2004367..cb0905b5 100644 --- a/assets/icons/line_duotone/chart-square.svg +++ b/assets/icons/line_duotone/chart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-dots.svg b/assets/icons/line_duotone/chat-dots.svg index bd290cf5..e8522e65 100644 --- a/assets/icons/line_duotone/chat-dots.svg +++ b/assets/icons/line_duotone/chat-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-line.svg b/assets/icons/line_duotone/chat-line.svg index d08085ab..e0bda4ef 100644 --- a/assets/icons/line_duotone/chat-line.svg +++ b/assets/icons/line_duotone/chat-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-round-call.svg b/assets/icons/line_duotone/chat-round-call.svg index e5e8f213..bd725fcc 100644 --- a/assets/icons/line_duotone/chat-round-call.svg +++ b/assets/icons/line_duotone/chat-round-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-round-dots.svg b/assets/icons/line_duotone/chat-round-dots.svg index 5f2602bc..a54b892c 100644 --- a/assets/icons/line_duotone/chat-round-dots.svg +++ b/assets/icons/line_duotone/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-round-like.svg b/assets/icons/line_duotone/chat-round-like.svg index f8b6431e..a7986d46 100644 --- a/assets/icons/line_duotone/chat-round-like.svg +++ b/assets/icons/line_duotone/chat-round-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-round-line.svg b/assets/icons/line_duotone/chat-round-line.svg index a40ef689..2411c011 100644 --- a/assets/icons/line_duotone/chat-round-line.svg +++ b/assets/icons/line_duotone/chat-round-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-2.svg b/assets/icons/line_duotone/chat-square-2.svg index 2fa63efb..bccfad77 100644 --- a/assets/icons/line_duotone/chat-square-2.svg +++ b/assets/icons/line_duotone/chat-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-arrow.svg b/assets/icons/line_duotone/chat-square-arrow.svg index f950c753..56d6635c 100644 --- a/assets/icons/line_duotone/chat-square-arrow.svg +++ b/assets/icons/line_duotone/chat-square-arrow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-call.svg b/assets/icons/line_duotone/chat-square-call.svg index 5ab983b0..73dba713 100644 --- a/assets/icons/line_duotone/chat-square-call.svg +++ b/assets/icons/line_duotone/chat-square-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-check.svg b/assets/icons/line_duotone/chat-square-check.svg index ef272d6c..b05bb447 100644 --- a/assets/icons/line_duotone/chat-square-check.svg +++ b/assets/icons/line_duotone/chat-square-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-code.svg b/assets/icons/line_duotone/chat-square-code.svg index 7cce5154..4ee351eb 100644 --- a/assets/icons/line_duotone/chat-square-code.svg +++ b/assets/icons/line_duotone/chat-square-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square-like.svg b/assets/icons/line_duotone/chat-square-like.svg index 926c99ee..3c288d04 100644 --- a/assets/icons/line_duotone/chat-square-like.svg +++ b/assets/icons/line_duotone/chat-square-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-square.svg b/assets/icons/line_duotone/chat-square.svg index ddd65a78..a92d072c 100644 --- a/assets/icons/line_duotone/chat-square.svg +++ b/assets/icons/line_duotone/chat-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chat-unread.svg b/assets/icons/line_duotone/chat-unread.svg index 18263234..c53a6c59 100644 --- a/assets/icons/line_duotone/chat-unread.svg +++ b/assets/icons/line_duotone/chat-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/checklist-minimalistic.svg b/assets/icons/line_duotone/checklist-minimalistic.svg index d8a2d888..284c697a 100644 --- a/assets/icons/line_duotone/checklist-minimalistic.svg +++ b/assets/icons/line_duotone/checklist-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chef-hat-heart.svg b/assets/icons/line_duotone/chef-hat-heart.svg index ce4eeed8..2870580b 100644 --- a/assets/icons/line_duotone/chef-hat-heart.svg +++ b/assets/icons/line_duotone/chef-hat-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chef-hat-minimalistic.svg b/assets/icons/line_duotone/chef-hat-minimalistic.svg index 8d291163..1bb19059 100644 --- a/assets/icons/line_duotone/chef-hat-minimalistic.svg +++ b/assets/icons/line_duotone/chef-hat-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/chef-hat.svg b/assets/icons/line_duotone/chef-hat.svg index c812ea1f..2a7ce238 100644 --- a/assets/icons/line_duotone/chef-hat.svg +++ b/assets/icons/line_duotone/chef-hat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/circle-bottom-down.svg b/assets/icons/line_duotone/circle-bottom-down.svg index ba4d4239..e6d00893 100644 --- a/assets/icons/line_duotone/circle-bottom-down.svg +++ b/assets/icons/line_duotone/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/circle-bottom-up.svg b/assets/icons/line_duotone/circle-bottom-up.svg index a8a86e30..80bd74f6 100644 --- a/assets/icons/line_duotone/circle-bottom-up.svg +++ b/assets/icons/line_duotone/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/circle-top-down.svg b/assets/icons/line_duotone/circle-top-down.svg index 551d2a0c..bd5f86ed 100644 --- a/assets/icons/line_duotone/circle-top-down.svg +++ b/assets/icons/line_duotone/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/circle-top-up.svg b/assets/icons/line_duotone/circle-top-up.svg index 195f590e..ac2ba472 100644 --- a/assets/icons/line_duotone/circle-top-up.svg +++ b/assets/icons/line_duotone/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/city.svg b/assets/icons/line_duotone/city.svg index 66d3c575..abb9a0fb 100644 --- a/assets/icons/line_duotone/city.svg +++ b/assets/icons/line_duotone/city.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clapperboard-edit.svg b/assets/icons/line_duotone/clapperboard-edit.svg index fc3fbd9c..96ccb8f8 100644 --- a/assets/icons/line_duotone/clapperboard-edit.svg +++ b/assets/icons/line_duotone/clapperboard-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clapperboard-open-play.svg b/assets/icons/line_duotone/clapperboard-open-play.svg index 07c7cfe1..78a56d3e 100644 --- a/assets/icons/line_duotone/clapperboard-open-play.svg +++ b/assets/icons/line_duotone/clapperboard-open-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clapperboard-open.svg b/assets/icons/line_duotone/clapperboard-open.svg index 3803a568..b2e0de7a 100644 --- a/assets/icons/line_duotone/clapperboard-open.svg +++ b/assets/icons/line_duotone/clapperboard-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clapperboard-play.svg b/assets/icons/line_duotone/clapperboard-play.svg index 2104f703..a5c5172f 100644 --- a/assets/icons/line_duotone/clapperboard-play.svg +++ b/assets/icons/line_duotone/clapperboard-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clapperboard-text.svg b/assets/icons/line_duotone/clapperboard-text.svg index 6dd8e14d..28d579bc 100644 --- a/assets/icons/line_duotone/clapperboard-text.svg +++ b/assets/icons/line_duotone/clapperboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clipboard-heart.svg b/assets/icons/line_duotone/clipboard-heart.svg index 3757852d..c6d22d3a 100644 --- a/assets/icons/line_duotone/clipboard-heart.svg +++ b/assets/icons/line_duotone/clipboard-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clipboard-list.svg b/assets/icons/line_duotone/clipboard-list.svg index f99a595d..86665da7 100644 --- a/assets/icons/line_duotone/clipboard-list.svg +++ b/assets/icons/line_duotone/clipboard-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clipboard.svg b/assets/icons/line_duotone/clipboard.svg index e661dc71..60bd6ce9 100644 --- a/assets/icons/line_duotone/clipboard.svg +++ b/assets/icons/line_duotone/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/closet-2.svg b/assets/icons/line_duotone/closet-2.svg index 64b417d2..19d60c87 100644 --- a/assets/icons/line_duotone/closet-2.svg +++ b/assets/icons/line_duotone/closet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/closet.svg b/assets/icons/line_duotone/closet.svg index bac874c5..06d58083 100644 --- a/assets/icons/line_duotone/closet.svg +++ b/assets/icons/line_duotone/closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-bolt-minimalistic.svg b/assets/icons/line_duotone/cloud-bolt-minimalistic.svg index 9bb0daf7..6701b45c 100644 --- a/assets/icons/line_duotone/cloud-bolt-minimalistic.svg +++ b/assets/icons/line_duotone/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-bolt.svg b/assets/icons/line_duotone/cloud-bolt.svg index 1dd87089..581bfdde 100644 --- a/assets/icons/line_duotone/cloud-bolt.svg +++ b/assets/icons/line_duotone/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-check.svg b/assets/icons/line_duotone/cloud-check.svg index 10450dee..5cbe4daf 100644 --- a/assets/icons/line_duotone/cloud-check.svg +++ b/assets/icons/line_duotone/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-cross.svg b/assets/icons/line_duotone/cloud-cross.svg index 45aa6e14..4282541d 100644 --- a/assets/icons/line_duotone/cloud-cross.svg +++ b/assets/icons/line_duotone/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-download.svg b/assets/icons/line_duotone/cloud-download.svg index 8e396991..76328d93 100644 --- a/assets/icons/line_duotone/cloud-download.svg +++ b/assets/icons/line_duotone/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-file.svg b/assets/icons/line_duotone/cloud-file.svg index 059102b0..d8668336 100644 --- a/assets/icons/line_duotone/cloud-file.svg +++ b/assets/icons/line_duotone/cloud-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-minus.svg b/assets/icons/line_duotone/cloud-minus.svg index bc66abe5..5f6e50c4 100644 --- a/assets/icons/line_duotone/cloud-minus.svg +++ b/assets/icons/line_duotone/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-plus.svg b/assets/icons/line_duotone/cloud-plus.svg index a046cb6f..50c492aa 100644 --- a/assets/icons/line_duotone/cloud-plus.svg +++ b/assets/icons/line_duotone/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-rain.svg b/assets/icons/line_duotone/cloud-rain.svg index 892cb0d4..0a8c73dc 100644 --- a/assets/icons/line_duotone/cloud-rain.svg +++ b/assets/icons/line_duotone/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-snowfall-minimalistic.svg b/assets/icons/line_duotone/cloud-snowfall-minimalistic.svg index 9c718155..59ed86be 100644 --- a/assets/icons/line_duotone/cloud-snowfall-minimalistic.svg +++ b/assets/icons/line_duotone/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-snowfall.svg b/assets/icons/line_duotone/cloud-snowfall.svg index 45a8e33e..2556882f 100644 --- a/assets/icons/line_duotone/cloud-snowfall.svg +++ b/assets/icons/line_duotone/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-storage.svg b/assets/icons/line_duotone/cloud-storage.svg index dc295b0f..01d8fae1 100644 --- a/assets/icons/line_duotone/cloud-storage.svg +++ b/assets/icons/line_duotone/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-storm.svg b/assets/icons/line_duotone/cloud-storm.svg index 3ee9d7de..d07df520 100644 --- a/assets/icons/line_duotone/cloud-storm.svg +++ b/assets/icons/line_duotone/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-sun-2.svg b/assets/icons/line_duotone/cloud-sun-2.svg index c8bb85e3..2b4df9e5 100644 --- a/assets/icons/line_duotone/cloud-sun-2.svg +++ b/assets/icons/line_duotone/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-sun.svg b/assets/icons/line_duotone/cloud-sun.svg index 79a88513..52708e50 100644 --- a/assets/icons/line_duotone/cloud-sun.svg +++ b/assets/icons/line_duotone/cloud-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-upload.svg b/assets/icons/line_duotone/cloud-upload.svg index 199c9d57..cf71fc7d 100644 --- a/assets/icons/line_duotone/cloud-upload.svg +++ b/assets/icons/line_duotone/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-waterdrop.svg b/assets/icons/line_duotone/cloud-waterdrop.svg index 805c8af6..057703a7 100644 --- a/assets/icons/line_duotone/cloud-waterdrop.svg +++ b/assets/icons/line_duotone/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloud-waterdrops.svg b/assets/icons/line_duotone/cloud-waterdrops.svg index 3a1095c0..d207d5e1 100644 --- a/assets/icons/line_duotone/cloud-waterdrops.svg +++ b/assets/icons/line_duotone/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/clouds.svg b/assets/icons/line_duotone/clouds.svg index 3b041fc0..26f0fa9d 100644 --- a/assets/icons/line_duotone/clouds.svg +++ b/assets/icons/line_duotone/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cloudy-moon.svg b/assets/icons/line_duotone/cloudy-moon.svg index e7af37a6..d73997c4 100644 --- a/assets/icons/line_duotone/cloudy-moon.svg +++ b/assets/icons/line_duotone/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/code-circle.svg b/assets/icons/line_duotone/code-circle.svg index 70f5200f..266b2aa2 100644 --- a/assets/icons/line_duotone/code-circle.svg +++ b/assets/icons/line_duotone/code-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/code-file.svg b/assets/icons/line_duotone/code-file.svg index 360527f0..2f49763b 100644 --- a/assets/icons/line_duotone/code-file.svg +++ b/assets/icons/line_duotone/code-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/code-scan.svg b/assets/icons/line_duotone/code-scan.svg index 1d46ca94..b263bf5e 100644 --- a/assets/icons/line_duotone/code-scan.svg +++ b/assets/icons/line_duotone/code-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/code-square.svg b/assets/icons/line_duotone/code-square.svg index aa294ccc..e2b3e598 100644 --- a/assets/icons/line_duotone/code-square.svg +++ b/assets/icons/line_duotone/code-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/colour-tuneing.svg b/assets/icons/line_duotone/colour-tuning.svg similarity index 100% rename from assets/icons/line_duotone/colour-tuneing.svg rename to assets/icons/line_duotone/colour-tuning.svg diff --git a/assets/icons/line_duotone/command.svg b/assets/icons/line_duotone/command.svg index f2531113..b997a175 100644 --- a/assets/icons/line_duotone/command.svg +++ b/assets/icons/line_duotone/command.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/condicioner-2.svg b/assets/icons/line_duotone/conditioner-2.svg similarity index 71% rename from assets/icons/linear/condicioner-2.svg rename to assets/icons/line_duotone/conditioner-2.svg index bdacb904..979eee19 100644 --- a/assets/icons/linear/condicioner-2.svg +++ b/assets/icons/line_duotone/conditioner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/condicioner.svg b/assets/icons/line_duotone/conditioner.svg similarity index 65% rename from assets/icons/line_duotone/condicioner.svg rename to assets/icons/line_duotone/conditioner.svg index 8b7e902b..398f015a 100644 --- a/assets/icons/line_duotone/condicioner.svg +++ b/assets/icons/line_duotone/conditioner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/confetti-minimalistic.svg b/assets/icons/line_duotone/confetti-minimalistic.svg index 06e9da2e..16cb2245 100644 --- a/assets/icons/line_duotone/confetti-minimalistic.svg +++ b/assets/icons/line_duotone/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/confetti.svg b/assets/icons/line_duotone/confetti.svg index 3839d525..08e2478a 100644 --- a/assets/icons/line_duotone/confetti.svg +++ b/assets/icons/line_duotone/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/confounded-circle.svg b/assets/icons/line_duotone/confounded-circle.svg index 49a227bd..4983ff0b 100644 --- a/assets/icons/line_duotone/confounded-circle.svg +++ b/assets/icons/line_duotone/confounded-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/confounded-square.svg b/assets/icons/line_duotone/confounded-square.svg index 9f7be7e9..7afb7de9 100644 --- a/assets/icons/line_duotone/confounded-square.svg +++ b/assets/icons/line_duotone/confounded-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/corkscrew.svg b/assets/icons/line_duotone/corkscrew.svg index 90a5b8b7..863434a5 100644 --- a/assets/icons/line_duotone/corkscrew.svg +++ b/assets/icons/line_duotone/corkscrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cosmetic.svg b/assets/icons/line_duotone/cosmetic.svg index e811c41e..bbc813fb 100644 --- a/assets/icons/line_duotone/cosmetic.svg +++ b/assets/icons/line_duotone/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cpu-bolt.svg b/assets/icons/line_duotone/cpu-bolt.svg index 613e1bbf..84f96414 100644 --- a/assets/icons/line_duotone/cpu-bolt.svg +++ b/assets/icons/line_duotone/cpu-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cpu.svg b/assets/icons/line_duotone/cpu.svg index a8e59b38..fbfc4842 100644 --- a/assets/icons/line_duotone/cpu.svg +++ b/assets/icons/line_duotone/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/creative-commons.svg b/assets/icons/line_duotone/creative-commons.svg index b0c71ea7..8b5a3b06 100644 --- a/assets/icons/line_duotone/creative-commons.svg +++ b/assets/icons/line_duotone/creative-commons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/crown.svg b/assets/icons/line_duotone/crown.svg index a579aaf4..e8a0ce4c 100644 --- a/assets/icons/line_duotone/crown.svg +++ b/assets/icons/line_duotone/crown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup-first.svg b/assets/icons/line_duotone/cup-first.svg index c598f430..d89c119c 100644 --- a/assets/icons/line_duotone/cup-first.svg +++ b/assets/icons/line_duotone/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup-hot.svg b/assets/icons/line_duotone/cup-hot.svg index 1b071718..3a37b7bc 100644 --- a/assets/icons/line_duotone/cup-hot.svg +++ b/assets/icons/line_duotone/cup-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup-music.svg b/assets/icons/line_duotone/cup-music.svg index 59b4404f..46826b54 100644 --- a/assets/icons/line_duotone/cup-music.svg +++ b/assets/icons/line_duotone/cup-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup-paper.svg b/assets/icons/line_duotone/cup-paper.svg index 9e8c4524..2ed82f52 100644 --- a/assets/icons/line_duotone/cup-paper.svg +++ b/assets/icons/line_duotone/cup-paper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup-star.svg b/assets/icons/line_duotone/cup-star.svg index 98c759e2..9eda3b82 100644 --- a/assets/icons/line_duotone/cup-star.svg +++ b/assets/icons/line_duotone/cup-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/cup.svg b/assets/icons/line_duotone/cup.svg index 3ba28001..6016fb09 100644 --- a/assets/icons/line_duotone/cup.svg +++ b/assets/icons/line_duotone/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/danger-circle.svg b/assets/icons/line_duotone/danger-circle.svg index 2cbff04e..34d1cbec 100644 --- a/assets/icons/line_duotone/danger-circle.svg +++ b/assets/icons/line_duotone/danger-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/danger-square.svg b/assets/icons/line_duotone/danger-square.svg index 2f539e85..6d0eef71 100644 --- a/assets/icons/line_duotone/danger-square.svg +++ b/assets/icons/line_duotone/danger-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/danger-triangle.svg b/assets/icons/line_duotone/danger-triangle.svg index b51e5e49..154aa72e 100644 --- a/assets/icons/line_duotone/danger-triangle.svg +++ b/assets/icons/line_duotone/danger-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/danger.svg b/assets/icons/line_duotone/danger.svg index 20f09f9c..293895f0 100644 --- a/assets/icons/line_duotone/danger.svg +++ b/assets/icons/line_duotone/danger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/database.svg b/assets/icons/line_duotone/database.svg index d075387c..cbce4743 100644 --- a/assets/icons/line_duotone/database.svg +++ b/assets/icons/line_duotone/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/delivery.svg b/assets/icons/line_duotone/delivery.svg index 461abd9f..008d0b4f 100644 --- a/assets/icons/line_duotone/delivery.svg +++ b/assets/icons/line_duotone/delivery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dialog-2.svg b/assets/icons/line_duotone/dialog-2.svg index 23e57599..3c356c0f 100644 --- a/assets/icons/line_duotone/dialog-2.svg +++ b/assets/icons/line_duotone/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dialog.svg b/assets/icons/line_duotone/dialog.svg index a29f0ff8..0fae15a4 100644 --- a/assets/icons/line_duotone/dialog.svg +++ b/assets/icons/line_duotone/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/diploma-verified.svg b/assets/icons/line_duotone/diploma-verified.svg index 996bba3c..b3cad409 100644 --- a/assets/icons/line_duotone/diploma-verified.svg +++ b/assets/icons/line_duotone/diploma-verified.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/diploma.svg b/assets/icons/line_duotone/diploma.svg index 14f1f20b..8de18b5b 100644 --- a/assets/icons/line_duotone/diploma.svg +++ b/assets/icons/line_duotone/diploma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dislike.svg b/assets/icons/line_duotone/dislike.svg index 1c6e8307..3d92709d 100644 --- a/assets/icons/line_duotone/dislike.svg +++ b/assets/icons/line_duotone/dislike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dna.svg b/assets/icons/line_duotone/dna.svg index f6d61a84..210ed1aa 100644 --- a/assets/icons/line_duotone/dna.svg +++ b/assets/icons/line_duotone/dna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/document-2.svg b/assets/icons/line_duotone/document-2.svg new file mode 100644 index 00000000..bfbfad94 --- /dev/null +++ b/assets/icons/line_duotone/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/document-add.svg b/assets/icons/line_duotone/document-add.svg index 3f2976ef..f0a67579 100644 --- a/assets/icons/line_duotone/document-add.svg +++ b/assets/icons/line_duotone/document-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/document-medicine.svg b/assets/icons/line_duotone/document-medicine.svg index adc6cb1b..f18dd46c 100644 --- a/assets/icons/line_duotone/document-medicine.svg +++ b/assets/icons/line_duotone/document-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/document-text.svg b/assets/icons/line_duotone/document-text.svg index d019c7f9..644b6aae 100644 --- a/assets/icons/line_duotone/document-text.svg +++ b/assets/icons/line_duotone/document-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/document.svg b/assets/icons/line_duotone/document.svg index 9ce5d5e0..f2b0d577 100644 --- a/assets/icons/line_duotone/document.svg +++ b/assets/icons/line_duotone/document.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/documents-minimalistic.svg b/assets/icons/line_duotone/documents-minimalistic.svg index 85d146cf..66af4449 100644 --- a/assets/icons/line_duotone/documents-minimalistic.svg +++ b/assets/icons/line_duotone/documents-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/documents.svg b/assets/icons/line_duotone/documents.svg index e892d942..992d5bd1 100644 --- a/assets/icons/line_duotone/documents.svg +++ b/assets/icons/line_duotone/documents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dollar-minimalistic.svg b/assets/icons/line_duotone/dollar-minimalistic.svg index b0c9a410..f2446e56 100644 --- a/assets/icons/line_duotone/dollar-minimalistic.svg +++ b/assets/icons/line_duotone/dollar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dollar.svg b/assets/icons/line_duotone/dollar.svg index 41b30e70..4cad45b1 100644 --- a/assets/icons/line_duotone/dollar.svg +++ b/assets/icons/line_duotone/dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/donut-bitten.svg b/assets/icons/line_duotone/donut-bitten.svg index 6b56c39e..26b3a3b0 100644 --- a/assets/icons/line_duotone/donut-bitten.svg +++ b/assets/icons/line_duotone/donut-bitten.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/donut.svg b/assets/icons/line_duotone/donut.svg index ea736a98..58e329a7 100644 --- a/assets/icons/line_duotone/donut.svg +++ b/assets/icons/line_duotone/donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/download-minimalistic.svg b/assets/icons/line_duotone/download-minimalistic.svg index ef91892b..3f908dbf 100644 --- a/assets/icons/line_duotone/download-minimalistic.svg +++ b/assets/icons/line_duotone/download-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/download-square.svg b/assets/icons/line_duotone/download-square.svg index 2fd56a6d..a2c9b774 100644 --- a/assets/icons/line_duotone/download-square.svg +++ b/assets/icons/line_duotone/download-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/download-twice-square.svg b/assets/icons/line_duotone/download-twice-square.svg index 4860f656..4a21fd89 100644 --- a/assets/icons/line_duotone/download-twice-square.svg +++ b/assets/icons/line_duotone/download-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/download.svg b/assets/icons/line_duotone/download.svg index e154590a..02d4b250 100644 --- a/assets/icons/line_duotone/download.svg +++ b/assets/icons/line_duotone/download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dropper-2.svg b/assets/icons/line_duotone/dropper-2.svg index 0670a16f..0b73132d 100644 --- a/assets/icons/line_duotone/dropper-2.svg +++ b/assets/icons/line_duotone/dropper-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dropper-3.svg b/assets/icons/line_duotone/dropper-3.svg index 1d0ae6f5..ad071a9e 100644 --- a/assets/icons/line_duotone/dropper-3.svg +++ b/assets/icons/line_duotone/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dropper-minimalistic-2.svg b/assets/icons/line_duotone/dropper-minimalistic-2.svg index 097fbd6f..91a0daad 100644 --- a/assets/icons/line_duotone/dropper-minimalistic-2.svg +++ b/assets/icons/line_duotone/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dropper-minimalistic.svg b/assets/icons/line_duotone/dropper-minimalistic.svg index 3ffabe81..062ae139 100644 --- a/assets/icons/line_duotone/dropper-minimalistic.svg +++ b/assets/icons/line_duotone/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dropper.svg b/assets/icons/line_duotone/dropper.svg index 260aceda..c72dd55a 100644 --- a/assets/icons/line_duotone/dropper.svg +++ b/assets/icons/line_duotone/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbell-large-minimalistic.svg b/assets/icons/line_duotone/dumbbell-large-minimalistic.svg index 0e75dd5b..7ba7597c 100644 --- a/assets/icons/line_duotone/dumbbell-large-minimalistic.svg +++ b/assets/icons/line_duotone/dumbbell-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbell-large.svg b/assets/icons/line_duotone/dumbbell-large.svg index 9caf65ac..ba53f274 100644 --- a/assets/icons/line_duotone/dumbbell-large.svg +++ b/assets/icons/line_duotone/dumbbell-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbell-small.svg b/assets/icons/line_duotone/dumbbell-small.svg index db4c0df1..74e27c71 100644 --- a/assets/icons/line_duotone/dumbbell-small.svg +++ b/assets/icons/line_duotone/dumbbell-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbell.svg b/assets/icons/line_duotone/dumbbell.svg index 4e5928dc..dea55f1d 100644 --- a/assets/icons/line_duotone/dumbbell.svg +++ b/assets/icons/line_duotone/dumbbell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbells-2.svg b/assets/icons/line_duotone/dumbbells-2.svg index 0a6cdbe1..0725fe79 100644 --- a/assets/icons/line_duotone/dumbbells-2.svg +++ b/assets/icons/line_duotone/dumbbells-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/dumbbells.svg b/assets/icons/line_duotone/dumbbells.svg index 3a946fbe..c479f495 100644 --- a/assets/icons/line_duotone/dumbbells.svg +++ b/assets/icons/line_duotone/dumbbells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/earth.svg b/assets/icons/line_duotone/earth.svg index 63dc850a..c93bad57 100644 --- a/assets/icons/line_duotone/earth.svg +++ b/assets/icons/line_duotone/earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/electric-refueling.svg b/assets/icons/line_duotone/electric-refueling.svg index ded8d1a9..4ca2b5d6 100644 --- a/assets/icons/line_duotone/electric-refueling.svg +++ b/assets/icons/line_duotone/electric-refueling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/emoji-funny-circle.svg b/assets/icons/line_duotone/emoji-funny-circle.svg index 17ce90c9..b1effd94 100644 --- a/assets/icons/line_duotone/emoji-funny-circle.svg +++ b/assets/icons/line_duotone/emoji-funny-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/emoji-funny-square.svg b/assets/icons/line_duotone/emoji-funny-square.svg index bb18f19e..90cdce57 100644 --- a/assets/icons/line_duotone/emoji-funny-square.svg +++ b/assets/icons/line_duotone/emoji-funny-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/end-call-rounded.svg b/assets/icons/line_duotone/end-call-rounded.svg index 8f918912..b4b0d140 100644 --- a/assets/icons/line_duotone/end-call-rounded.svg +++ b/assets/icons/line_duotone/end-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/end-call.svg b/assets/icons/line_duotone/end-call.svg index 87ee7f71..6507d936 100644 --- a/assets/icons/line_duotone/end-call.svg +++ b/assets/icons/line_duotone/end-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/eraser-circle.svg b/assets/icons/line_duotone/eraser-circle.svg index a77cd573..276f0435 100644 --- a/assets/icons/line_duotone/eraser-circle.svg +++ b/assets/icons/line_duotone/eraser-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/eraser-square.svg b/assets/icons/line_duotone/eraser-square.svg index 86974d3b..07f92373 100644 --- a/assets/icons/line_duotone/eraser-square.svg +++ b/assets/icons/line_duotone/eraser-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/eraser.svg b/assets/icons/line_duotone/eraser.svg index 6b0fd5de..60956964 100644 --- a/assets/icons/line_duotone/eraser.svg +++ b/assets/icons/line_duotone/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/euro.svg b/assets/icons/line_duotone/euro.svg index 7fed9aee..d4e4ee41 100644 --- a/assets/icons/line_duotone/euro.svg +++ b/assets/icons/line_duotone/euro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/export.svg b/assets/icons/line_duotone/export.svg index c555d33e..415f040f 100644 --- a/assets/icons/line_duotone/export.svg +++ b/assets/icons/line_duotone/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/expressionless-circle.svg b/assets/icons/line_duotone/expressionless-circle.svg index 1196e03b..f30e8add 100644 --- a/assets/icons/line_duotone/expressionless-circle.svg +++ b/assets/icons/line_duotone/expressionless-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/expressionless-square.svg b/assets/icons/line_duotone/expressionless-square.svg index e45c3c69..b2232a1f 100644 --- a/assets/icons/line_duotone/expressionless-square.svg +++ b/assets/icons/line_duotone/expressionless-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/eye-closed.svg b/assets/icons/line_duotone/eye-closed.svg index 28753300..2af19a37 100644 --- a/assets/icons/line_duotone/eye-closed.svg +++ b/assets/icons/line_duotone/eye-closed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/eye-scan.svg b/assets/icons/line_duotone/eye-scan.svg index e1b92222..e47a73e6 100644 --- a/assets/icons/line_duotone/eye-scan.svg +++ b/assets/icons/line_duotone/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/face-scan-circle.svg b/assets/icons/line_duotone/face-scan-circle.svg index 4e491e4d..127124ab 100644 --- a/assets/icons/line_duotone/face-scan-circle.svg +++ b/assets/icons/line_duotone/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/face-scan-square.svg b/assets/icons/line_duotone/face-scan-square.svg index 396d248f..c4263bef 100644 --- a/assets/icons/line_duotone/face-scan-square.svg +++ b/assets/icons/line_duotone/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/facemask-circle.svg b/assets/icons/line_duotone/facemask-circle.svg index f706fcd0..c12c8ac3 100644 --- a/assets/icons/line_duotone/facemask-circle.svg +++ b/assets/icons/line_duotone/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/facemask-square.svg b/assets/icons/line_duotone/facemask-square.svg index f4c21821..398ab43a 100644 --- a/assets/icons/line_duotone/facemask-square.svg +++ b/assets/icons/line_duotone/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ferris-wheel.svg b/assets/icons/line_duotone/ferris-wheel.svg index e981cf33..4a3a4ebf 100644 --- a/assets/icons/line_duotone/ferris-wheel.svg +++ b/assets/icons/line_duotone/ferris-wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/figma-file.svg b/assets/icons/line_duotone/figma-file.svg index 99e1144f..8b871615 100644 --- a/assets/icons/line_duotone/figma-file.svg +++ b/assets/icons/line_duotone/figma-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/figma.svg b/assets/icons/line_duotone/figma.svg index e1a82058..08098f6a 100644 --- a/assets/icons/line_duotone/figma.svg +++ b/assets/icons/line_duotone/figma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-check.svg b/assets/icons/line_duotone/file-check.svg index 63e46e7c..234192dd 100644 --- a/assets/icons/line_duotone/file-check.svg +++ b/assets/icons/line_duotone/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-corrupted.svg b/assets/icons/line_duotone/file-corrupted.svg index 1c2fb9e1..90cd17af 100644 --- a/assets/icons/line_duotone/file-corrupted.svg +++ b/assets/icons/line_duotone/file-corrupted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-download.svg b/assets/icons/line_duotone/file-download.svg index 331971e2..627d8144 100644 --- a/assets/icons/line_duotone/file-download.svg +++ b/assets/icons/line_duotone/file-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-favorite.svg b/assets/icons/line_duotone/file-favorite.svg new file mode 100644 index 00000000..a546c21d --- /dev/null +++ b/assets/icons/line_duotone/file-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-favourite.svg b/assets/icons/line_duotone/file-favourite.svg deleted file mode 100644 index fa6a1320..00000000 --- a/assets/icons/line_duotone/file-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/file-left.svg b/assets/icons/line_duotone/file-left.svg index a4a6f166..3f31099a 100644 --- a/assets/icons/line_duotone/file-left.svg +++ b/assets/icons/line_duotone/file-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-remove.svg b/assets/icons/line_duotone/file-remove.svg index 6fd9f5f7..13b1f72f 100644 --- a/assets/icons/line_duotone/file-remove.svg +++ b/assets/icons/line_duotone/file-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-right.svg b/assets/icons/line_duotone/file-right.svg index c3eeaafc..caa1c079 100644 --- a/assets/icons/line_duotone/file-right.svg +++ b/assets/icons/line_duotone/file-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-send.svg b/assets/icons/line_duotone/file-send.svg index 8f332640..d9235b02 100644 --- a/assets/icons/line_duotone/file-send.svg +++ b/assets/icons/line_duotone/file-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-smile.svg b/assets/icons/line_duotone/file-smile.svg index ae94b71e..58795138 100644 --- a/assets/icons/line_duotone/file-smile.svg +++ b/assets/icons/line_duotone/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file-text.svg b/assets/icons/line_duotone/file-text.svg index 3ddaf78c..73e90391 100644 --- a/assets/icons/line_duotone/file-text.svg +++ b/assets/icons/line_duotone/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/file.svg b/assets/icons/line_duotone/file.svg index 2ca9d232..399c4e36 100644 --- a/assets/icons/line_duotone/file.svg +++ b/assets/icons/line_duotone/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/flash-drive.svg b/assets/icons/line_duotone/flash-drive.svg index 00d7f0fc..95ef1371 100644 --- a/assets/icons/line_duotone/flash-drive.svg +++ b/assets/icons/line_duotone/flash-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/flashlight-on.svg b/assets/icons/line_duotone/flashlight-on.svg index b3f7d2f3..25874736 100644 --- a/assets/icons/line_duotone/flashlight-on.svg +++ b/assets/icons/line_duotone/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/flashlight.svg b/assets/icons/line_duotone/flashlight.svg index 15612cb6..0cd086ba 100644 --- a/assets/icons/line_duotone/flashlight.svg +++ b/assets/icons/line_duotone/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/flip-horizontal.svg b/assets/icons/line_duotone/flip-horizontal.svg index 77b0e847..b8061574 100644 --- a/assets/icons/line_duotone/flip-horizontal.svg +++ b/assets/icons/line_duotone/flip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/flip-vertical.svg b/assets/icons/line_duotone/flip-vertical.svg index 9bbb86f5..be45c317 100644 --- a/assets/icons/line_duotone/flip-vertical.svg +++ b/assets/icons/line_duotone/flip-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/floor-lamp-minimalistic.svg b/assets/icons/line_duotone/floor-lamp-minimalistic.svg index cd5a798b..796a138b 100644 --- a/assets/icons/line_duotone/floor-lamp-minimalistic.svg +++ b/assets/icons/line_duotone/floor-lamp-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/floor-lamp.svg b/assets/icons/line_duotone/floor-lamp.svg index f760bb2e..e4bab498 100644 --- a/assets/icons/line_duotone/floor-lamp.svg +++ b/assets/icons/line_duotone/floor-lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/fog.svg b/assets/icons/line_duotone/fog.svg index b2ad0457..62db689d 100644 --- a/assets/icons/line_duotone/fog.svg +++ b/assets/icons/line_duotone/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/folder-cloud.svg b/assets/icons/line_duotone/folder-cloud.svg index 8447c293..5046fe9e 100644 --- a/assets/icons/line_duotone/folder-cloud.svg +++ b/assets/icons/line_duotone/folder-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/folder-favourite-bookmark.svg b/assets/icons/line_duotone/folder-favorite-bookmark.svg similarity index 100% rename from assets/icons/line_duotone/folder-favourite-bookmark.svg rename to assets/icons/line_duotone/folder-favorite-bookmark.svg diff --git a/assets/icons/line_duotone/folder-favourite-star.svg b/assets/icons/line_duotone/folder-favorite-star.svg similarity index 100% rename from assets/icons/line_duotone/folder-favourite-star.svg rename to assets/icons/line_duotone/folder-favorite-star.svg diff --git a/assets/icons/line_duotone/folder-path-connect.svg b/assets/icons/line_duotone/folder-path-connect.svg index 32261cc8..e5f6e95e 100644 --- a/assets/icons/line_duotone/folder-path-connect.svg +++ b/assets/icons/line_duotone/folder-path-connect.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/football.svg b/assets/icons/line_duotone/football.svg index 7539424d..ead11a4f 100644 --- a/assets/icons/line_duotone/football.svg +++ b/assets/icons/line_duotone/football.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/forward-right.svg b/assets/icons/line_duotone/forward-right.svg new file mode 100644 index 00000000..a5f9f694 --- /dev/null +++ b/assets/icons/line_duotone/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/4k.svg b/assets/icons/line_duotone/four-k.svg similarity index 82% rename from assets/icons/line_duotone/4k.svg rename to assets/icons/line_duotone/four-k.svg index 8dd2e2a9..65b22a2e 100644 --- a/assets/icons/line_duotone/4k.svg +++ b/assets/icons/line_duotone/four-k.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/fridge.svg b/assets/icons/line_duotone/fridge.svg index 37664b88..243c7823 100644 --- a/assets/icons/line_duotone/fridge.svg +++ b/assets/icons/line_duotone/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/fuel.svg b/assets/icons/line_duotone/fuel.svg index fd8d28b5..8413022e 100644 --- a/assets/icons/line_duotone/fuel.svg +++ b/assets/icons/line_duotone/fuel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/full-screen-circle.svg b/assets/icons/line_duotone/full-screen-circle.svg index ec1dd9ca..94063656 100644 --- a/assets/icons/line_duotone/full-screen-circle.svg +++ b/assets/icons/line_duotone/full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/full-screen-square.svg b/assets/icons/line_duotone/full-screen-square.svg index 031511c9..169ccc9d 100644 --- a/assets/icons/line_duotone/full-screen-square.svg +++ b/assets/icons/line_duotone/full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gallery-download.svg b/assets/icons/line_duotone/gallery-download.svg index 059c9d0b..02be1c46 100644 --- a/assets/icons/line_duotone/gallery-download.svg +++ b/assets/icons/line_duotone/gallery-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gallery-edit.svg b/assets/icons/line_duotone/gallery-edit.svg index 45ec2074..01ee9bb5 100644 --- a/assets/icons/line_duotone/gallery-edit.svg +++ b/assets/icons/line_duotone/gallery-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gallery-favorite.svg b/assets/icons/line_duotone/gallery-favorite.svg new file mode 100644 index 00000000..723763d8 --- /dev/null +++ b/assets/icons/line_duotone/gallery-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/gallery-favourite.svg b/assets/icons/line_duotone/gallery-favourite.svg deleted file mode 100644 index 1833e364..00000000 --- a/assets/icons/line_duotone/gallery-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/gallery-send.svg b/assets/icons/line_duotone/gallery-send.svg index 9f82cbbd..8fc2e8bb 100644 --- a/assets/icons/line_duotone/gallery-send.svg +++ b/assets/icons/line_duotone/gallery-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gameboy.svg b/assets/icons/line_duotone/gameboy.svg index cc0cb61c..bd2598f3 100644 --- a/assets/icons/line_duotone/gameboy.svg +++ b/assets/icons/line_duotone/gameboy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gamepad-charge.svg b/assets/icons/line_duotone/gamepad-charge.svg index 9351d536..03f81e37 100644 --- a/assets/icons/line_duotone/gamepad-charge.svg +++ b/assets/icons/line_duotone/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gamepad-minimalistic.svg b/assets/icons/line_duotone/gamepad-minimalistic.svg index 44727e29..624c08de 100644 --- a/assets/icons/line_duotone/gamepad-minimalistic.svg +++ b/assets/icons/line_duotone/gamepad-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gamepad-no-charge.svg b/assets/icons/line_duotone/gamepad-no-charge.svg index 2250ccf2..4b15e26e 100644 --- a/assets/icons/line_duotone/gamepad-no-charge.svg +++ b/assets/icons/line_duotone/gamepad-no-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gamepad-old.svg b/assets/icons/line_duotone/gamepad-old.svg index 4ce00c10..14ee42eb 100644 --- a/assets/icons/line_duotone/gamepad-old.svg +++ b/assets/icons/line_duotone/gamepad-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gamepad.svg b/assets/icons/line_duotone/gamepad.svg index af9df189..7bb48454 100644 --- a/assets/icons/line_duotone/gamepad.svg +++ b/assets/icons/line_duotone/gamepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/garage.svg b/assets/icons/line_duotone/garage.svg index a997e3ba..2d334a09 100644 --- a/assets/icons/line_duotone/garage.svg +++ b/assets/icons/line_duotone/garage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gas-station.svg b/assets/icons/line_duotone/gas-station.svg index 098839b2..92099af9 100644 --- a/assets/icons/line_duotone/gas-station.svg +++ b/assets/icons/line_duotone/gas-station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ghost-smile.svg b/assets/icons/line_duotone/ghost-smile.svg index 5dd6d0ce..b37b36c8 100644 --- a/assets/icons/line_duotone/ghost-smile.svg +++ b/assets/icons/line_duotone/ghost-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ghost.svg b/assets/icons/line_duotone/ghost.svg index 0bca2d1b..f27790f6 100644 --- a/assets/icons/line_duotone/ghost.svg +++ b/assets/icons/line_duotone/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gift.svg b/assets/icons/line_duotone/gift.svg index aa53d254..62f089dc 100644 --- a/assets/icons/line_duotone/gift.svg +++ b/assets/icons/line_duotone/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/glasses.svg b/assets/icons/line_duotone/glasses.svg index 3c56f052..7125baa7 100644 --- a/assets/icons/line_duotone/glasses.svg +++ b/assets/icons/line_duotone/glasses.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/globus.svg b/assets/icons/line_duotone/globe.svg similarity index 100% rename from assets/icons/line_duotone/globus.svg rename to assets/icons/line_duotone/globe.svg diff --git a/assets/icons/line_duotone/golf.svg b/assets/icons/line_duotone/golf.svg index 4e268913..0e67cea2 100644 --- a/assets/icons/line_duotone/golf.svg +++ b/assets/icons/line_duotone/golf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/gps.svg b/assets/icons/line_duotone/gps.svg index e18d9008..75f88456 100644 --- a/assets/icons/line_duotone/gps.svg +++ b/assets/icons/line_duotone/gps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/graph-down-new.svg b/assets/icons/line_duotone/graph-down-new.svg index 92bfd580..bea9c835 100644 --- a/assets/icons/line_duotone/graph-down-new.svg +++ b/assets/icons/line_duotone/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/graph-down.svg b/assets/icons/line_duotone/graph-down.svg index 325de96f..3e535430 100644 --- a/assets/icons/line_duotone/graph-down.svg +++ b/assets/icons/line_duotone/graph-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/graph-new-up.svg b/assets/icons/line_duotone/graph-new-up.svg index 98d968eb..394bb9cf 100644 --- a/assets/icons/line_duotone/graph-new-up.svg +++ b/assets/icons/line_duotone/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/graph-up.svg b/assets/icons/line_duotone/graph-up.svg index 384dcbc9..efce2ccf 100644 --- a/assets/icons/line_duotone/graph-up.svg +++ b/assets/icons/line_duotone/graph-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hand-heart.svg b/assets/icons/line_duotone/hand-heart.svg index 8fa2d81d..53935592 100644 --- a/assets/icons/line_duotone/hand-heart.svg +++ b/assets/icons/line_duotone/hand-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hand-money.svg b/assets/icons/line_duotone/hand-money.svg index f7b4f63a..0f6d2ba0 100644 --- a/assets/icons/line_duotone/hand-money.svg +++ b/assets/icons/line_duotone/hand-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hand-pills.svg b/assets/icons/line_duotone/hand-pills.svg index a4043bc7..6f45eef3 100644 --- a/assets/icons/line_duotone/hand-pills.svg +++ b/assets/icons/line_duotone/hand-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hand-shake.svg b/assets/icons/line_duotone/hand-shake.svg index 935c79fc..85bdcb9e 100644 --- a/assets/icons/line_duotone/hand-shake.svg +++ b/assets/icons/line_duotone/hand-shake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hand-stars.svg b/assets/icons/line_duotone/hand-stars.svg index 69e53a3b..347d2107 100644 --- a/assets/icons/line_duotone/hand-stars.svg +++ b/assets/icons/line_duotone/hand-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hashtag-chat.svg b/assets/icons/line_duotone/hashtag-chat.svg index 2e67e3cb..734866d9 100644 --- a/assets/icons/line_duotone/hashtag-chat.svg +++ b/assets/icons/line_duotone/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hashtag-circle.svg b/assets/icons/line_duotone/hashtag-circle.svg index 66ea9b1f..a38c2c2c 100644 --- a/assets/icons/line_duotone/hashtag-circle.svg +++ b/assets/icons/line_duotone/hashtag-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hashtag-square.svg b/assets/icons/line_duotone/hashtag-square.svg index 6bf69f86..932108c0 100644 --- a/assets/icons/line_duotone/hashtag-square.svg +++ b/assets/icons/line_duotone/hashtag-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hashtag.svg b/assets/icons/line_duotone/hashtag.svg index 08aab4bb..cfd3fa93 100644 --- a/assets/icons/line_duotone/hashtag.svg +++ b/assets/icons/line_duotone/hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/headphones-round-sound.svg b/assets/icons/line_duotone/headphones-round-sound.svg index 0671664a..5598b11a 100644 --- a/assets/icons/line_duotone/headphones-round-sound.svg +++ b/assets/icons/line_duotone/headphones-round-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/headphones-round.svg b/assets/icons/line_duotone/headphones-round.svg index e65e9d81..fd5e37fe 100644 --- a/assets/icons/line_duotone/headphones-round.svg +++ b/assets/icons/line_duotone/headphones-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/headphones-square-sound.svg b/assets/icons/line_duotone/headphones-square-sound.svg index 1365dadc..da52f431 100644 --- a/assets/icons/line_duotone/headphones-square-sound.svg +++ b/assets/icons/line_duotone/headphones-square-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/headphones-square.svg b/assets/icons/line_duotone/headphones-square.svg index fd90079d..202fdde9 100644 --- a/assets/icons/line_duotone/headphones-square.svg +++ b/assets/icons/line_duotone/headphones-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/health.svg b/assets/icons/line_duotone/health.svg index d3c3c7d6..5af04c80 100644 --- a/assets/icons/line_duotone/health.svg +++ b/assets/icons/line_duotone/health.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-angle.svg b/assets/icons/line_duotone/heart-angle.svg index ae3ac45c..a170862e 100644 --- a/assets/icons/line_duotone/heart-angle.svg +++ b/assets/icons/line_duotone/heart-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-broken.svg b/assets/icons/line_duotone/heart-crack.svg similarity index 100% rename from assets/icons/line_duotone/heart-broken.svg rename to assets/icons/line_duotone/heart-crack.svg diff --git a/assets/icons/line_duotone/heart-lock.svg b/assets/icons/line_duotone/heart-lock.svg index ee4f6a37..2c3a0773 100644 --- a/assets/icons/line_duotone/heart-lock.svg +++ b/assets/icons/line_duotone/heart-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-pulse-2.svg b/assets/icons/line_duotone/heart-pulse-2.svg index 764fa570..cdf95f02 100644 --- a/assets/icons/line_duotone/heart-pulse-2.svg +++ b/assets/icons/line_duotone/heart-pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-pulse.svg b/assets/icons/line_duotone/heart-pulse.svg index d02cc73d..376b5745 100644 --- a/assets/icons/line_duotone/heart-pulse.svg +++ b/assets/icons/line_duotone/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-shine.svg b/assets/icons/line_duotone/heart-shine.svg index f888ce2a..ba424463 100644 --- a/assets/icons/line_duotone/heart-shine.svg +++ b/assets/icons/line_duotone/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/heart-unlock.svg b/assets/icons/line_duotone/heart-unlock.svg index 2978b491..67873e02 100644 --- a/assets/icons/line_duotone/heart-unlock.svg +++ b/assets/icons/line_duotone/heart-unlock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hearts.svg b/assets/icons/line_duotone/hearts.svg index d25ac4ea..840ba68a 100644 --- a/assets/icons/line_duotone/hearts.svg +++ b/assets/icons/line_duotone/hearts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/help.svg b/assets/icons/line_duotone/help.svg index 23e5bbdd..793bdb93 100644 --- a/assets/icons/line_duotone/help.svg +++ b/assets/icons/line_duotone/help.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/high-definition.svg b/assets/icons/line_duotone/high-definition.svg index 41b78e7e..ca4fecfa 100644 --- a/assets/icons/line_duotone/high-definition.svg +++ b/assets/icons/line_duotone/high-definition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hiking-minimalistic.svg b/assets/icons/line_duotone/hiking-minimalistic.svg index 2f8fb4d5..79092e1c 100644 --- a/assets/icons/line_duotone/hiking-minimalistic.svg +++ b/assets/icons/line_duotone/hiking-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hiking-round.svg b/assets/icons/line_duotone/hiking-round.svg index 8b5d9110..ef214f42 100644 --- a/assets/icons/line_duotone/hiking-round.svg +++ b/assets/icons/line_duotone/hiking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hiking.svg b/assets/icons/line_duotone/hiking.svg index 5fc4bd5d..58be0449 100644 --- a/assets/icons/line_duotone/hiking.svg +++ b/assets/icons/line_duotone/hiking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/history.svg b/assets/icons/line_duotone/history.svg index 2b3c50fc..884feee7 100644 --- a/assets/icons/line_duotone/history.svg +++ b/assets/icons/line_duotone/history.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/home-wifi-angle.svg b/assets/icons/line_duotone/home-wi-fi-angle.svg similarity index 100% rename from assets/icons/line_duotone/home-wifi-angle.svg rename to assets/icons/line_duotone/home-wi-fi-angle.svg diff --git a/assets/icons/line_duotone/home-wifi.svg b/assets/icons/line_duotone/home-wi-fi.svg similarity index 100% rename from assets/icons/line_duotone/home-wifi.svg rename to assets/icons/line_duotone/home-wi-fi.svg diff --git a/assets/icons/line_duotone/home.svg b/assets/icons/line_duotone/home.svg index 684838ee..547a9b14 100644 --- a/assets/icons/line_duotone/home.svg +++ b/assets/icons/line_duotone/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hospital.svg b/assets/icons/line_duotone/hospital.svg index d309129c..d8067efd 100644 --- a/assets/icons/line_duotone/hospital.svg +++ b/assets/icons/line_duotone/hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/hourglass-line.svg b/assets/icons/line_duotone/hourglass-line.svg index 58934aaf..ed2814ff 100644 --- a/assets/icons/line_duotone/hourglass-line.svg +++ b/assets/icons/line_duotone/hourglass-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/house.svg b/assets/icons/line_duotone/house.svg new file mode 100644 index 00000000..a1e6c4ca --- /dev/null +++ b/assets/icons/line_duotone/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/iphone.svg b/assets/icons/line_duotone/i-phone.svg similarity index 54% rename from assets/icons/linear/iphone.svg rename to assets/icons/line_duotone/i-phone.svg index 2cf24eba..337fef00 100644 --- a/assets/icons/linear/iphone.svg +++ b/assets/icons/line_duotone/i-phone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/import.svg b/assets/icons/line_duotone/import.svg index e074d881..25a7aa7b 100644 --- a/assets/icons/line_duotone/import.svg +++ b/assets/icons/line_duotone/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/inbox-archive.svg b/assets/icons/line_duotone/inbox-archive.svg index a3407e5b..ed159a7c 100644 --- a/assets/icons/line_duotone/inbox-archive.svg +++ b/assets/icons/line_duotone/inbox-archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/inbox-in.svg b/assets/icons/line_duotone/inbox-in.svg index cea17535..81f5d9d9 100644 --- a/assets/icons/line_duotone/inbox-in.svg +++ b/assets/icons/line_duotone/inbox-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/inbox-line.svg b/assets/icons/line_duotone/inbox-line.svg index fdb57664..a137ea23 100644 --- a/assets/icons/line_duotone/inbox-line.svg +++ b/assets/icons/line_duotone/inbox-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/inbox-out.svg b/assets/icons/line_duotone/inbox-out.svg index f47ccdb8..c94e27a6 100644 --- a/assets/icons/line_duotone/inbox-out.svg +++ b/assets/icons/line_duotone/inbox-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/incoming-call-rounded.svg b/assets/icons/line_duotone/incoming-call-rounded.svg index 32e0e426..dd6b11af 100644 --- a/assets/icons/line_duotone/incoming-call-rounded.svg +++ b/assets/icons/line_duotone/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/incoming-call.svg b/assets/icons/line_duotone/incoming-call.svg index 03b21e2d..37a4797f 100644 --- a/assets/icons/line_duotone/incoming-call.svg +++ b/assets/icons/line_duotone/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/infinity.svg b/assets/icons/line_duotone/infinite.svg similarity index 100% rename from assets/icons/line_duotone/infinity.svg rename to assets/icons/line_duotone/infinite.svg diff --git a/assets/icons/line_duotone/info-circle.svg b/assets/icons/line_duotone/info-circle.svg index b5eda836..d6d95039 100644 --- a/assets/icons/line_duotone/info-circle.svg +++ b/assets/icons/line_duotone/info-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/info-square.svg b/assets/icons/line_duotone/info-square.svg index be8085c5..761e78e1 100644 --- a/assets/icons/line_duotone/info-square.svg +++ b/assets/icons/line_duotone/info-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/jar-of-pills-2.svg b/assets/icons/line_duotone/jar-of-pills-2.svg index 21d0b068..31289183 100644 --- a/assets/icons/line_duotone/jar-of-pills-2.svg +++ b/assets/icons/line_duotone/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/jar-of-pills.svg b/assets/icons/line_duotone/jar-of-pills.svg index 23eaca8b..297c8641 100644 --- a/assets/icons/line_duotone/jar-of-pills.svg +++ b/assets/icons/line_duotone/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/key-minimalistic-2.svg b/assets/icons/line_duotone/key-minimalistic-2.svg index 23956415..8abe495e 100644 --- a/assets/icons/line_duotone/key-minimalistic-2.svg +++ b/assets/icons/line_duotone/key-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/key-minimalistic-square-2.svg b/assets/icons/line_duotone/key-minimalistic-square-2.svg index 3686e9db..b4e3cc6a 100644 --- a/assets/icons/line_duotone/key-minimalistic-square-2.svg +++ b/assets/icons/line_duotone/key-minimalistic-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/key-minimalistic-square.svg b/assets/icons/line_duotone/key-minimalistic-square.svg index 86720337..6a12b7d7 100644 --- a/assets/icons/line_duotone/key-minimalistic-square.svg +++ b/assets/icons/line_duotone/key-minimalistic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/key-minimalistic.svg b/assets/icons/line_duotone/key-minimalistic.svg index 1bd349f4..7b87e302 100644 --- a/assets/icons/line_duotone/key-minimalistic.svg +++ b/assets/icons/line_duotone/key-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/keyboard.svg b/assets/icons/line_duotone/keyboard.svg index 1cc8e234..bd72b6ac 100644 --- a/assets/icons/line_duotone/keyboard.svg +++ b/assets/icons/line_duotone/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/kick-scooter.svg b/assets/icons/line_duotone/kick-scooter.svg index 2991a165..48973740 100644 --- a/assets/icons/line_duotone/kick-scooter.svg +++ b/assets/icons/line_duotone/kick-scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/laptop-minimalistic.svg b/assets/icons/line_duotone/laptop-minimalistic.svg index 4df1c1be..8a90017a 100644 --- a/assets/icons/line_duotone/laptop-minimalistic.svg +++ b/assets/icons/line_duotone/laptop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/laptop.svg b/assets/icons/line_duotone/laptop.svg index 43ed6519..01fe430f 100644 --- a/assets/icons/line_duotone/laptop.svg +++ b/assets/icons/line_duotone/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/layers-minimalistic.svg b/assets/icons/line_duotone/layers-minimalistic.svg index f38fa8a4..ddb8d494 100644 --- a/assets/icons/line_duotone/layers-minimalistic.svg +++ b/assets/icons/line_duotone/layers-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/letter-opened.svg b/assets/icons/line_duotone/letter-opened.svg index 43eea65f..55670fea 100644 --- a/assets/icons/line_duotone/letter-opened.svg +++ b/assets/icons/line_duotone/letter-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/like.svg b/assets/icons/line_duotone/like.svg index d8cbf752..659c73ae 100644 --- a/assets/icons/line_duotone/like.svg +++ b/assets/icons/line_duotone/like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/link-broken-minimalistic.svg b/assets/icons/line_duotone/link-broken-minimalistic.svg deleted file mode 100644 index 2e7e7496..00000000 --- a/assets/icons/line_duotone/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/link-broken.svg b/assets/icons/line_duotone/link-broken.svg deleted file mode 100644 index 77cb2f96..00000000 --- a/assets/icons/line_duotone/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/link-minimalistic.svg b/assets/icons/line_duotone/link-minimalistic.svg index f5ff5965..ed34f043 100644 --- a/assets/icons/line_duotone/link-minimalistic.svg +++ b/assets/icons/line_duotone/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-arrow-down-minimalistic.svg b/assets/icons/line_duotone/list-arrow-down-minimalistic.svg index c9714149..a967adad 100644 --- a/assets/icons/line_duotone/list-arrow-down-minimalistic.svg +++ b/assets/icons/line_duotone/list-arrow-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-arrow-down.svg b/assets/icons/line_duotone/list-arrow-down.svg index c39e9d58..89f0feaf 100644 --- a/assets/icons/line_duotone/list-arrow-down.svg +++ b/assets/icons/line_duotone/list-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-arrow-up-minimalistic.svg b/assets/icons/line_duotone/list-arrow-up-minimalistic.svg index 636aa805..416ed559 100644 --- a/assets/icons/line_duotone/list-arrow-up-minimalistic.svg +++ b/assets/icons/line_duotone/list-arrow-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-arrow-up.svg b/assets/icons/line_duotone/list-arrow-up.svg index 85f13c0b..f7703849 100644 --- a/assets/icons/line_duotone/list-arrow-up.svg +++ b/assets/icons/line_duotone/list-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-check-minimalistic.svg b/assets/icons/line_duotone/list-check-minimalistic.svg index a3d75674..b6a05bd3 100644 --- a/assets/icons/line_duotone/list-check-minimalistic.svg +++ b/assets/icons/line_duotone/list-check-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-check.svg b/assets/icons/line_duotone/list-check.svg index 08ab6991..517c4946 100644 --- a/assets/icons/line_duotone/list-check.svg +++ b/assets/icons/line_duotone/list-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-cross-minimalistic.svg b/assets/icons/line_duotone/list-cross-minimalistic.svg index 5e55d456..f997d34c 100644 --- a/assets/icons/line_duotone/list-cross-minimalistic.svg +++ b/assets/icons/line_duotone/list-cross-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-cross.svg b/assets/icons/line_duotone/list-cross.svg index ba445d66..b87a3bce 100644 --- a/assets/icons/line_duotone/list-cross.svg +++ b/assets/icons/line_duotone/list-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-down-minimalistic.svg b/assets/icons/line_duotone/list-down-minimalistic.svg index 7d3a267d..bb7b835b 100644 --- a/assets/icons/line_duotone/list-down-minimalistic.svg +++ b/assets/icons/line_duotone/list-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-down.svg b/assets/icons/line_duotone/list-down.svg index f2f4a8dc..66af0326 100644 --- a/assets/icons/line_duotone/list-down.svg +++ b/assets/icons/line_duotone/list-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-heart-minimalistic.svg b/assets/icons/line_duotone/list-heart-minimalistic.svg index 3eca56cf..ba6b02b0 100644 --- a/assets/icons/line_duotone/list-heart-minimalistic.svg +++ b/assets/icons/line_duotone/list-heart-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-heart.svg b/assets/icons/line_duotone/list-heart.svg index 21ab6131..76d9df93 100644 --- a/assets/icons/line_duotone/list-heart.svg +++ b/assets/icons/line_duotone/list-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-up-minimalistic.svg b/assets/icons/line_duotone/list-up-minimalistic.svg index 4f0ab2d6..41147908 100644 --- a/assets/icons/line_duotone/list-up-minimalistic.svg +++ b/assets/icons/line_duotone/list-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-up.svg b/assets/icons/line_duotone/list-up.svg index 4ad074cc..f7858fe3 100644 --- a/assets/icons/line_duotone/list-up.svg +++ b/assets/icons/line_duotone/list-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/list-vertical.svg b/assets/icons/line_duotone/list-vertical.svg new file mode 100644 index 00000000..701374a6 --- /dev/null +++ b/assets/icons/line_duotone/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/list.svg b/assets/icons/line_duotone/list.svg index 379facc8..c6c48571 100644 --- a/assets/icons/line_duotone/list.svg +++ b/assets/icons/line_duotone/list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/lock-keyhole-minimalistic-unlocked.svg b/assets/icons/line_duotone/lock-keyhole-minimalistic-unlocked.svg index 9435f50b..2b9dd44d 100644 --- a/assets/icons/line_duotone/lock-keyhole-minimalistic-unlocked.svg +++ b/assets/icons/line_duotone/lock-keyhole-minimalistic-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/lock-keyhole-minimalistic.svg b/assets/icons/line_duotone/lock-keyhole-minimalistic.svg index fddabc2f..c21745bf 100644 --- a/assets/icons/line_duotone/lock-keyhole-minimalistic.svg +++ b/assets/icons/line_duotone/lock-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/lock-password-unlocked.svg b/assets/icons/line_duotone/lock-password-unlocked.svg index fc905234..ff545a65 100644 --- a/assets/icons/line_duotone/lock-password-unlocked.svg +++ b/assets/icons/line_duotone/lock-password-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/lock-password.svg b/assets/icons/line_duotone/lock-password.svg index dee9568a..b6ad410e 100644 --- a/assets/icons/line_duotone/lock-password.svg +++ b/assets/icons/line_duotone/lock-password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/login-2.svg b/assets/icons/line_duotone/login-2.svg index 39a98dce..4e702de0 100644 --- a/assets/icons/line_duotone/login-2.svg +++ b/assets/icons/line_duotone/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/login-3.svg b/assets/icons/line_duotone/login-3.svg index bee06cd8..93ae82be 100644 --- a/assets/icons/line_duotone/login-3.svg +++ b/assets/icons/line_duotone/login-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/login.svg b/assets/icons/line_duotone/login.svg index 246b7e4a..302c87b8 100644 --- a/assets/icons/line_duotone/login.svg +++ b/assets/icons/line_duotone/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/logout-2.svg b/assets/icons/line_duotone/logout-2.svg new file mode 100644 index 00000000..95d09c16 --- /dev/null +++ b/assets/icons/line_duotone/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/logout-3.svg b/assets/icons/line_duotone/logout-3.svg index 43cb3bf2..02841db6 100644 --- a/assets/icons/line_duotone/logout-3.svg +++ b/assets/icons/line_duotone/logout-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/logout.svg b/assets/icons/line_duotone/logout.svg new file mode 100644 index 00000000..56cbe778 --- /dev/null +++ b/assets/icons/line_duotone/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/magic-stick-2.svg b/assets/icons/line_duotone/magic-wand-2.svg similarity index 73% rename from assets/icons/linear/magic-stick-2.svg rename to assets/icons/line_duotone/magic-wand-2.svg index aa82136b..75fdcd8f 100644 --- a/assets/icons/linear/magic-stick-2.svg +++ b/assets/icons/line_duotone/magic-wand-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/magic-stick-3.svg b/assets/icons/line_duotone/magic-wand-3.svg similarity index 68% rename from assets/icons/line_duotone/magic-stick-3.svg rename to assets/icons/line_duotone/magic-wand-3.svg index 31459d29..d6ee11d7 100644 --- a/assets/icons/line_duotone/magic-stick-3.svg +++ b/assets/icons/line_duotone/magic-wand-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magic-stick.svg b/assets/icons/line_duotone/magic-wand.svg similarity index 79% rename from assets/icons/linear/magic-stick.svg rename to assets/icons/line_duotone/magic-wand.svg index 1019afdd..6a89f80e 100644 --- a/assets/icons/linear/magic-stick.svg +++ b/assets/icons/line_duotone/magic-wand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/magnet-wave.svg b/assets/icons/line_duotone/magnet-wave.svg index 0419a1b3..a40c987a 100644 --- a/assets/icons/line_duotone/magnet-wave.svg +++ b/assets/icons/line_duotone/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifer-bug.svg b/assets/icons/line_duotone/magnifer-bug.svg deleted file mode 100644 index ef485e47..00000000 --- a/assets/icons/line_duotone/magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifer-zoom-in.svg b/assets/icons/line_duotone/magnifer-zoom-in.svg deleted file mode 100644 index a293387f..00000000 --- a/assets/icons/line_duotone/magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifer-zoom-out.svg b/assets/icons/line_duotone/magnifer-zoom-out.svg deleted file mode 100644 index 668abba3..00000000 --- a/assets/icons/line_duotone/magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifer.svg b/assets/icons/line_duotone/magnifer.svg deleted file mode 100644 index df017050..00000000 --- a/assets/icons/line_duotone/magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifier-bug.svg b/assets/icons/line_duotone/magnifier-bug.svg new file mode 100644 index 00000000..09cefadc --- /dev/null +++ b/assets/icons/line_duotone/magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifier-zoom-in.svg b/assets/icons/line_duotone/magnifier-zoom-in.svg new file mode 100644 index 00000000..c55cbd42 --- /dev/null +++ b/assets/icons/line_duotone/magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifier-zoom-out.svg b/assets/icons/line_duotone/magnifier-zoom-out.svg new file mode 100644 index 00000000..233ab123 --- /dev/null +++ b/assets/icons/line_duotone/magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/magnifier.svg b/assets/icons/line_duotone/magnifier.svg new file mode 100644 index 00000000..6376c8f7 --- /dev/null +++ b/assets/icons/line_duotone/magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/mailbox.svg b/assets/icons/line_duotone/mailbox.svg index 85aeb81b..b2896f74 100644 --- a/assets/icons/line_duotone/mailbox.svg +++ b/assets/icons/line_duotone/mailbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/map-point-favorite.svg b/assets/icons/line_duotone/map-point-favorite.svg new file mode 100644 index 00000000..98f67098 --- /dev/null +++ b/assets/icons/line_duotone/map-point-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/map-point-favourite.svg b/assets/icons/line_duotone/map-point-favourite.svg deleted file mode 100644 index 9457de54..00000000 --- a/assets/icons/line_duotone/map-point-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/map-point-hospital.svg b/assets/icons/line_duotone/map-point-hospital.svg index abe0ec20..d06b84cb 100644 --- a/assets/icons/line_duotone/map-point-hospital.svg +++ b/assets/icons/line_duotone/map-point-hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/map-point-rotate.svg b/assets/icons/line_duotone/map-point-rotate.svg index d271d6d9..1a58228c 100644 --- a/assets/icons/line_duotone/map-point-rotate.svg +++ b/assets/icons/line_duotone/map-point-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/map.svg b/assets/icons/line_duotone/map.svg index 39827b3b..5c658e9f 100644 --- a/assets/icons/line_duotone/map.svg +++ b/assets/icons/line_duotone/map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/mask-happly.svg b/assets/icons/line_duotone/mask-happy.svg similarity index 75% rename from assets/icons/line_duotone/mask-happly.svg rename to assets/icons/line_duotone/mask-happy.svg index c9259a91..83d57e50 100644 --- a/assets/icons/line_duotone/mask-happly.svg +++ b/assets/icons/line_duotone/mask-happy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/mask-sad.svg b/assets/icons/line_duotone/mask-sad.svg index 5101798c..cc733bc9 100644 --- a/assets/icons/line_duotone/mask-sad.svg +++ b/assets/icons/line_duotone/mask-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/masks.svg b/assets/icons/line_duotone/masks.svg index 75d6702d..8220b2af 100644 --- a/assets/icons/line_duotone/masks.svg +++ b/assets/icons/line_duotone/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/maximize-square-2.svg b/assets/icons/line_duotone/maximize-square-2.svg index 6f44920c..9a52c533 100644 --- a/assets/icons/line_duotone/maximize-square-2.svg +++ b/assets/icons/line_duotone/maximize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/maximize-square-3.svg b/assets/icons/line_duotone/maximize-square-3.svg index 74d671c2..c736c54f 100644 --- a/assets/icons/line_duotone/maximize-square-3.svg +++ b/assets/icons/line_duotone/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/maximize-square-minimalistic.svg b/assets/icons/line_duotone/maximize-square-minimalistic.svg index 97fe8564..67b7f917 100644 --- a/assets/icons/line_duotone/maximize-square-minimalistic.svg +++ b/assets/icons/line_duotone/maximize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/maximize-square.svg b/assets/icons/line_duotone/maximize-square.svg index d7b5510d..95a1ee9c 100644 --- a/assets/icons/line_duotone/maximize-square.svg +++ b/assets/icons/line_duotone/maximize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/maximize.svg b/assets/icons/line_duotone/maximize.svg index bfac96d1..e8e11f7a 100644 --- a/assets/icons/line_duotone/maximize.svg +++ b/assets/icons/line_duotone/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/medal-ribbons-star.svg b/assets/icons/line_duotone/medal-ribbons-star.svg index c16988c6..623e1ce9 100644 --- a/assets/icons/line_duotone/medal-ribbons-star.svg +++ b/assets/icons/line_duotone/medal-ribbons-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/medal-star-circle.svg b/assets/icons/line_duotone/medal-star-circle.svg index 7f626c2e..b3c6a980 100644 --- a/assets/icons/line_duotone/medal-star-circle.svg +++ b/assets/icons/line_duotone/medal-star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/medal-star-square.svg b/assets/icons/line_duotone/medal-star-square.svg index 9cdb2065..fc1638e3 100644 --- a/assets/icons/line_duotone/medal-star-square.svg +++ b/assets/icons/line_duotone/medal-star-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/men.svg b/assets/icons/line_duotone/men.svg index ec96bdbe..f16695c1 100644 --- a/assets/icons/line_duotone/men.svg +++ b/assets/icons/line_duotone/men.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/menu-dots-circle.svg b/assets/icons/line_duotone/menu-dots-circle.svg index 17e810c9..229f97f4 100644 --- a/assets/icons/line_duotone/menu-dots-circle.svg +++ b/assets/icons/line_duotone/menu-dots-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/menu-dots-square.svg b/assets/icons/line_duotone/menu-dots-square.svg index dd9c6458..08b924eb 100644 --- a/assets/icons/line_duotone/menu-dots-square.svg +++ b/assets/icons/line_duotone/menu-dots-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/microphone-2.svg b/assets/icons/line_duotone/microphone-2.svg index 783e4dd4..97fced14 100644 --- a/assets/icons/line_duotone/microphone-2.svg +++ b/assets/icons/line_duotone/microphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/microphone-3.svg b/assets/icons/line_duotone/microphone-3.svg index 9b50bc02..6a016061 100644 --- a/assets/icons/line_duotone/microphone-3.svg +++ b/assets/icons/line_duotone/microphone-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/microphone-large.svg b/assets/icons/line_duotone/microphone-large.svg index a7bc6831..63edd580 100644 --- a/assets/icons/line_duotone/microphone-large.svg +++ b/assets/icons/line_duotone/microphone-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/microphone.svg b/assets/icons/line_duotone/microphone.svg index ded88629..95b137d4 100644 --- a/assets/icons/line_duotone/microphone.svg +++ b/assets/icons/line_duotone/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifer-bug.svg b/assets/icons/line_duotone/minimalistic-magnifer-bug.svg deleted file mode 100644 index ebc78101..00000000 --- a/assets/icons/line_duotone/minimalistic-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifer-zoom-in.svg b/assets/icons/line_duotone/minimalistic-magnifer-zoom-in.svg deleted file mode 100644 index ebf14f62..00000000 --- a/assets/icons/line_duotone/minimalistic-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifer-zoom-out.svg b/assets/icons/line_duotone/minimalistic-magnifer-zoom-out.svg deleted file mode 100644 index 44c54fda..00000000 --- a/assets/icons/line_duotone/minimalistic-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifer.svg b/assets/icons/line_duotone/minimalistic-magnifer.svg deleted file mode 100644 index 1d265d86..00000000 --- a/assets/icons/line_duotone/minimalistic-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifier-bug.svg b/assets/icons/line_duotone/minimalistic-magnifier-bug.svg new file mode 100644 index 00000000..edbd67d1 --- /dev/null +++ b/assets/icons/line_duotone/minimalistic-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifier-zoom-in.svg b/assets/icons/line_duotone/minimalistic-magnifier-zoom-in.svg new file mode 100644 index 00000000..3abc3b5d --- /dev/null +++ b/assets/icons/line_duotone/minimalistic-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifier-zoom-out.svg b/assets/icons/line_duotone/minimalistic-magnifier-zoom-out.svg new file mode 100644 index 00000000..bc28a3e1 --- /dev/null +++ b/assets/icons/line_duotone/minimalistic-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimalistic-magnifier.svg b/assets/icons/line_duotone/minimalistic-magnifier.svg new file mode 100644 index 00000000..eb2dc8aa --- /dev/null +++ b/assets/icons/line_duotone/minimalistic-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimize-square-2.svg b/assets/icons/line_duotone/minimize-square-2.svg index dae577b6..20ed69b7 100644 --- a/assets/icons/line_duotone/minimize-square-2.svg +++ b/assets/icons/line_duotone/minimize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimize-square-3.svg b/assets/icons/line_duotone/minimize-square-3.svg index 62b8154a..23df6542 100644 --- a/assets/icons/line_duotone/minimize-square-3.svg +++ b/assets/icons/line_duotone/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimize-square-minimalistic.svg b/assets/icons/line_duotone/minimize-square-minimalistic.svg index 87a94348..66f0cced 100644 --- a/assets/icons/line_duotone/minimize-square-minimalistic.svg +++ b/assets/icons/line_duotone/minimize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimize-square.svg b/assets/icons/line_duotone/minimize-square.svg index 2ea78222..dd4ea566 100644 --- a/assets/icons/line_duotone/minimize-square.svg +++ b/assets/icons/line_duotone/minimize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/minimize.svg b/assets/icons/line_duotone/minimize.svg index cd929a91..96ea4047 100644 --- a/assets/icons/line_duotone/minimize.svg +++ b/assets/icons/line_duotone/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/mirror-2.svg b/assets/icons/line_duotone/mirror-2.svg new file mode 100644 index 00000000..0841888e --- /dev/null +++ b/assets/icons/line_duotone/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/mirror.svg b/assets/icons/line_duotone/mirror.svg index 4a2131a7..a216b6cb 100644 --- a/assets/icons/line_duotone/mirror.svg +++ b/assets/icons/line_duotone/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wad-of-money.svg b/assets/icons/line_duotone/money-roll.svg similarity index 65% rename from assets/icons/linear/wad-of-money.svg rename to assets/icons/line_duotone/money-roll.svg index 96b7be9b..b9ad28fa 100644 --- a/assets/icons/linear/wad-of-money.svg +++ b/assets/icons/line_duotone/money-roll.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/monitor-camera.svg b/assets/icons/line_duotone/monitor-camera.svg index 926095f0..07f6a2de 100644 --- a/assets/icons/line_duotone/monitor-camera.svg +++ b/assets/icons/line_duotone/monitor-camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/monitor-smartphone.svg b/assets/icons/line_duotone/monitor-smartphone.svg index d3a1ee7a..678cd585 100644 --- a/assets/icons/line_duotone/monitor-smartphone.svg +++ b/assets/icons/line_duotone/monitor-smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/monitor.svg b/assets/icons/line_duotone/monitor.svg index 0173774d..ef550aaa 100644 --- a/assets/icons/line_duotone/monitor.svg +++ b/assets/icons/line_duotone/monitor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/moon-fog.svg b/assets/icons/line_duotone/moon-fog.svg index ab7b524d..6f09b4ba 100644 --- a/assets/icons/line_duotone/moon-fog.svg +++ b/assets/icons/line_duotone/moon-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/moon-sleep.svg b/assets/icons/line_duotone/moon-sleep.svg index da06930a..8d252619 100644 --- a/assets/icons/line_duotone/moon-sleep.svg +++ b/assets/icons/line_duotone/moon-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/moon-stars.svg b/assets/icons/line_duotone/moon-stars.svg index 823987c5..30e68512 100644 --- a/assets/icons/line_duotone/moon-stars.svg +++ b/assets/icons/line_duotone/moon-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/moon.svg b/assets/icons/line_duotone/moon.svg index 8414c7b0..e779656a 100644 --- a/assets/icons/line_duotone/moon.svg +++ b/assets/icons/line_duotone/moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/mouse-circle.svg b/assets/icons/line_duotone/mouse-circle.svg index df502183..15352ff1 100644 --- a/assets/icons/line_duotone/mouse-circle.svg +++ b/assets/icons/line_duotone/mouse-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/move-to-folder.svg b/assets/icons/line_duotone/move-to-folder.svg index 28dd0a3f..d25d2d9c 100644 --- a/assets/icons/line_duotone/move-to-folder.svg +++ b/assets/icons/line_duotone/move-to-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/mug.svg b/assets/icons/line_duotone/mug.svg new file mode 100644 index 00000000..12c78c46 --- /dev/null +++ b/assets/icons/line_duotone/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/music-library.svg b/assets/icons/line_duotone/music-library.svg index df0703c0..40a63704 100644 --- a/assets/icons/line_duotone/music-library.svg +++ b/assets/icons/line_duotone/music-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/music-note-slider-2.svg b/assets/icons/line_duotone/music-note-slider-2.svg index 2f700cf4..00681868 100644 --- a/assets/icons/line_duotone/music-note-slider-2.svg +++ b/assets/icons/line_duotone/music-note-slider-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/music-note.svg b/assets/icons/line_duotone/music-note.svg index b4ef5113..0ad0df8f 100644 --- a/assets/icons/line_duotone/music-note.svg +++ b/assets/icons/line_duotone/music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/music-notes.svg b/assets/icons/line_duotone/music-notes.svg index 920c8e5e..a6a25771 100644 --- a/assets/icons/line_duotone/music-notes.svg +++ b/assets/icons/line_duotone/music-notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notebook-2.svg b/assets/icons/line_duotone/notebook-2.svg new file mode 100644 index 00000000..2dca0843 --- /dev/null +++ b/assets/icons/line_duotone/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/notebook-bookmark.svg b/assets/icons/line_duotone/notebook-bookmark.svg index 9b65df44..48f4f96b 100644 --- a/assets/icons/line_duotone/notebook-bookmark.svg +++ b/assets/icons/line_duotone/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notebook-minimalistic.svg b/assets/icons/line_duotone/notebook-minimalistic.svg index 4a085e3a..e729a65a 100644 --- a/assets/icons/line_duotone/notebook-minimalistic.svg +++ b/assets/icons/line_duotone/notebook-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notebook-square.svg b/assets/icons/line_duotone/notebook-square.svg index ea9386f7..73cac1b8 100644 --- a/assets/icons/line_duotone/notebook-square.svg +++ b/assets/icons/line_duotone/notebook-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notebook.svg b/assets/icons/line_duotone/notebook.svg index 5c7424cb..3b76b1ef 100644 --- a/assets/icons/line_duotone/notebook.svg +++ b/assets/icons/line_duotone/notebook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notification-lines-remove.svg b/assets/icons/line_duotone/notification-lines-remove.svg index 5357f6a8..fb79c829 100644 --- a/assets/icons/line_duotone/notification-lines-remove.svg +++ b/assets/icons/line_duotone/notification-lines-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/notification-unread-lines.svg b/assets/icons/line_duotone/notification-unread-lines.svg index 9a5193dc..2ff3f8c1 100644 --- a/assets/icons/line_duotone/notification-unread-lines.svg +++ b/assets/icons/line_duotone/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/object-scan.svg b/assets/icons/line_duotone/object-scan.svg index 37b7f336..7cdceb31 100644 --- a/assets/icons/line_duotone/object-scan.svg +++ b/assets/icons/line_duotone/object-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/outgoing-call-rounded.svg b/assets/icons/line_duotone/outgoing-call-rounded.svg index be3bd2f3..09dfa6ab 100644 --- a/assets/icons/line_duotone/outgoing-call-rounded.svg +++ b/assets/icons/line_duotone/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/outgoing-call.svg b/assets/icons/line_duotone/outgoing-call.svg index 690d7fa9..79a96a9b 100644 --- a/assets/icons/line_duotone/outgoing-call.svg +++ b/assets/icons/line_duotone/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/paint-roller.svg b/assets/icons/line_duotone/paint-roller.svg index 0c8e57d2..05e42511 100644 --- a/assets/icons/line_duotone/paint-roller.svg +++ b/assets/icons/line_duotone/paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pallete-2.svg b/assets/icons/line_duotone/palette-2.svg similarity index 78% rename from assets/icons/line_duotone/pallete-2.svg rename to assets/icons/line_duotone/palette-2.svg index 7f63fcb1..05accbcd 100644 --- a/assets/icons/line_duotone/pallete-2.svg +++ b/assets/icons/line_duotone/palette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/palette-round.svg b/assets/icons/line_duotone/palette-round.svg index 535978f2..a37d051d 100644 --- a/assets/icons/line_duotone/palette-round.svg +++ b/assets/icons/line_duotone/palette-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/panorama.svg b/assets/icons/line_duotone/panorama.svg index 3106cb78..97488e4f 100644 --- a/assets/icons/line_duotone/panorama.svg +++ b/assets/icons/line_duotone/panorama.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/paperclip-2.svg b/assets/icons/line_duotone/paperclip-2.svg index fa7863ad..e97d292a 100644 --- a/assets/icons/line_duotone/paperclip-2.svg +++ b/assets/icons/line_duotone/paperclip-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/paperclip.svg b/assets/icons/line_duotone/paperclip.svg index 14a2c8ec..a9e4c863 100644 --- a/assets/icons/line_duotone/paperclip.svg +++ b/assets/icons/line_duotone/paperclip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/paragraph-spacing.svg b/assets/icons/line_duotone/paragraph-spacing.svg index b9bb4a67..c5e2d91b 100644 --- a/assets/icons/line_duotone/paragraph-spacing.svg +++ b/assets/icons/line_duotone/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/passport-minimalistic.svg b/assets/icons/line_duotone/passport-minimalistic.svg index b3696bcb..2006289b 100644 --- a/assets/icons/line_duotone/passport-minimalistic.svg +++ b/assets/icons/line_duotone/passport-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/passport.svg b/assets/icons/line_duotone/passport.svg index 20e6e1d7..ce25bec1 100644 --- a/assets/icons/line_duotone/passport.svg +++ b/assets/icons/line_duotone/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/password-minimalistic-input.svg b/assets/icons/line_duotone/password-minimalistic-input.svg index 7efa0e9c..54900b45 100644 --- a/assets/icons/line_duotone/password-minimalistic-input.svg +++ b/assets/icons/line_duotone/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/password-minimalistic.svg b/assets/icons/line_duotone/password-minimalistic.svg index 64ef8dce..a56008e5 100644 --- a/assets/icons/line_duotone/password-minimalistic.svg +++ b/assets/icons/line_duotone/password-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/password.svg b/assets/icons/line_duotone/password.svg index be0ac66e..128eeeb8 100644 --- a/assets/icons/line_duotone/password.svg +++ b/assets/icons/line_duotone/password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pause-circle.svg b/assets/icons/line_duotone/pause-circle.svg index 31e7b952..26270374 100644 --- a/assets/icons/line_duotone/pause-circle.svg +++ b/assets/icons/line_duotone/pause-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/paw.svg b/assets/icons/line_duotone/paw.svg index e58fb26f..8d13299c 100644 --- a/assets/icons/line_duotone/paw.svg +++ b/assets/icons/line_duotone/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/people-nearby.svg b/assets/icons/line_duotone/people-nearby.svg index 6862d8e8..c1f7516b 100644 --- a/assets/icons/line_duotone/people-nearby.svg +++ b/assets/icons/line_duotone/people-nearby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/perfume.svg b/assets/icons/line_duotone/perfume.svg index ceaf56d0..76dd3755 100644 --- a/assets/icons/line_duotone/perfume.svg +++ b/assets/icons/line_duotone/perfume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/phone-calling-rounded.svg b/assets/icons/line_duotone/phone-calling-rounded.svg index d35950c9..2f7a64c9 100644 --- a/assets/icons/line_duotone/phone-calling-rounded.svg +++ b/assets/icons/line_duotone/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/phone-calling.svg b/assets/icons/line_duotone/phone-calling.svg index 8442fd08..2ca52492 100644 --- a/assets/icons/line_duotone/phone-calling.svg +++ b/assets/icons/line_duotone/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pills-2.svg b/assets/icons/line_duotone/pills-2.svg index 6d3b7b2a..e55a669a 100644 --- a/assets/icons/line_duotone/pills-2.svg +++ b/assets/icons/line_duotone/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pills-3.svg b/assets/icons/line_duotone/pills-3.svg index c0c4321a..4d3f7166 100644 --- a/assets/icons/line_duotone/pills-3.svg +++ b/assets/icons/line_duotone/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pin-circle.svg b/assets/icons/line_duotone/pin-circle.svg index b91bcce0..e385796f 100644 --- a/assets/icons/line_duotone/pin-circle.svg +++ b/assets/icons/line_duotone/pin-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pin-list.svg b/assets/icons/line_duotone/pin-list.svg index 1e5f792e..bf3c3d21 100644 --- a/assets/icons/line_duotone/pin-list.svg +++ b/assets/icons/line_duotone/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pin.svg b/assets/icons/line_duotone/pin.svg index 47215d2b..898dccc1 100644 --- a/assets/icons/line_duotone/pin.svg +++ b/assets/icons/line_duotone/pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/pipette.svg b/assets/icons/line_duotone/pipette.svg index e231a25c..f59977a9 100644 --- a/assets/icons/line_duotone/pipette.svg +++ b/assets/icons/line_duotone/pipette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/plaaylist-minimalistic.svg b/assets/icons/line_duotone/plaaylist-minimalistic.svg deleted file mode 100644 index 024067f9..00000000 --- a/assets/icons/line_duotone/plaaylist-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/plain-2.svg b/assets/icons/line_duotone/plane-2.svg similarity index 100% rename from assets/icons/line_duotone/plain-2.svg rename to assets/icons/line_duotone/plane-2.svg diff --git a/assets/icons/line_duotone/plain-3.svg b/assets/icons/line_duotone/plane-3.svg similarity index 100% rename from assets/icons/line_duotone/plain-3.svg rename to assets/icons/line_duotone/plane-3.svg diff --git a/assets/icons/linear/plain.svg b/assets/icons/line_duotone/plane.svg similarity index 63% rename from assets/icons/linear/plain.svg rename to assets/icons/line_duotone/plane.svg index 671bdf86..e2057d7d 100644 --- a/assets/icons/linear/plain.svg +++ b/assets/icons/line_duotone/plane.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/planet-3.svg b/assets/icons/line_duotone/planet-3.svg index 686ea990..9dfbdc00 100644 --- a/assets/icons/line_duotone/planet-3.svg +++ b/assets/icons/line_duotone/planet-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/planet-4.svg b/assets/icons/line_duotone/planet-4.svg index fe98f862..24dd0060 100644 --- a/assets/icons/line_duotone/planet-4.svg +++ b/assets/icons/line_duotone/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/plate.svg b/assets/icons/line_duotone/plate.svg index 99297d07..24f2de9b 100644 --- a/assets/icons/line_duotone/plate.svg +++ b/assets/icons/line_duotone/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/play-stream.svg b/assets/icons/line_duotone/play-stream.svg index 456eee5b..e150ee21 100644 --- a/assets/icons/line_duotone/play-stream.svg +++ b/assets/icons/line_duotone/play-stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/playlist-2.svg b/assets/icons/line_duotone/playlist-2.svg index 5020703e..191fb202 100644 --- a/assets/icons/line_duotone/playlist-2.svg +++ b/assets/icons/line_duotone/playlist-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/playlist-minimalistic-2.svg b/assets/icons/line_duotone/playlist-minimalistic-2.svg index 173b4888..e084d2f4 100644 --- a/assets/icons/line_duotone/playlist-minimalistic-2.svg +++ b/assets/icons/line_duotone/playlist-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/playlist-minimalistic-3.svg b/assets/icons/line_duotone/playlist-minimalistic-3.svg index 7cf6e5a6..799da81c 100644 --- a/assets/icons/line_duotone/playlist-minimalistic-3.svg +++ b/assets/icons/line_duotone/playlist-minimalistic-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/playlist-minimalistic.svg b/assets/icons/line_duotone/playlist-minimalistic.svg new file mode 100644 index 00000000..53847fde --- /dev/null +++ b/assets/icons/line_duotone/playlist-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/playlist.svg b/assets/icons/line_duotone/playlist.svg index 76e6f0fc..40263af0 100644 --- a/assets/icons/line_duotone/playlist.svg +++ b/assets/icons/line_duotone/playlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/plug-circle.svg b/assets/icons/line_duotone/plug-circle.svg index 4567c179..ac303925 100644 --- a/assets/icons/line_duotone/plug-circle.svg +++ b/assets/icons/line_duotone/plug-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/plus-minus.svg b/assets/icons/line_duotone/plus-minus.svg index b6cd6db2..e02afb34 100644 --- a/assets/icons/line_duotone/plus-minus.svg +++ b/assets/icons/line_duotone/plus-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/podcast.svg b/assets/icons/line_duotone/podcast.svg index 2ff15ec7..151f8c15 100644 --- a/assets/icons/line_duotone/podcast.svg +++ b/assets/icons/line_duotone/podcast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/point-on-map-perspective.svg b/assets/icons/line_duotone/point-on-map-perspective.svg index 6b722ce4..9836a221 100644 --- a/assets/icons/line_duotone/point-on-map-perspective.svg +++ b/assets/icons/line_duotone/point-on-map-perspective.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/posts-carousel-horizontal.svg b/assets/icons/line_duotone/posts-carousel-horizontal.svg index 055a6e99..0ff368ae 100644 --- a/assets/icons/line_duotone/posts-carousel-horizontal.svg +++ b/assets/icons/line_duotone/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/posts-carousel-vertical.svg b/assets/icons/line_duotone/posts-carousel-vertical.svg index 4e69779c..caaed322 100644 --- a/assets/icons/line_duotone/posts-carousel-vertical.svg +++ b/assets/icons/line_duotone/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/presentation-graph.svg b/assets/icons/line_duotone/presentation-graph.svg index 1fdab854..98892464 100644 --- a/assets/icons/line_duotone/presentation-graph.svg +++ b/assets/icons/line_duotone/presentation-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/printer-2.svg b/assets/icons/line_duotone/printer-2.svg index 230af5da..04640b37 100644 --- a/assets/icons/line_duotone/printer-2.svg +++ b/assets/icons/line_duotone/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/printer.svg b/assets/icons/line_duotone/printer.svg index 6d055ac2..c24c83e6 100644 --- a/assets/icons/line_duotone/printer.svg +++ b/assets/icons/line_duotone/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/programming.svg b/assets/icons/line_duotone/programming.svg index 1649981b..490717ef 100644 --- a/assets/icons/line_duotone/programming.svg +++ b/assets/icons/line_duotone/programming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/projector.svg b/assets/icons/line_duotone/projector.svg index 0eff643f..4524df1b 100644 --- a/assets/icons/line_duotone/projector.svg +++ b/assets/icons/line_duotone/projector.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/qr-code.svg b/assets/icons/line_duotone/qr-code.svg index ecec799b..31b9b26d 100644 --- a/assets/icons/line_duotone/qr-code.svg +++ b/assets/icons/line_duotone/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/question-circle.svg b/assets/icons/line_duotone/question-circle.svg index 532f1040..d0292f14 100644 --- a/assets/icons/line_duotone/question-circle.svg +++ b/assets/icons/line_duotone/question-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/question-square.svg b/assets/icons/line_duotone/question-square.svg index f20cc0ab..d9ca6961 100644 --- a/assets/icons/line_duotone/question-square.svg +++ b/assets/icons/line_duotone/question-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/quit-full-screen-circle.svg b/assets/icons/line_duotone/quit-full-screen-circle.svg index b64f29a1..40cb25fe 100644 --- a/assets/icons/line_duotone/quit-full-screen-circle.svg +++ b/assets/icons/line_duotone/quit-full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/quit-full-screen-square.svg b/assets/icons/line_duotone/quit-full-screen-square.svg index c3e1d613..008795d0 100644 --- a/assets/icons/line_duotone/quit-full-screen-square.svg +++ b/assets/icons/line_duotone/quit-full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/quit-pip.svg b/assets/icons/line_duotone/quit-pip.svg index 89fc660a..3238c97d 100644 --- a/assets/icons/line_duotone/quit-pip.svg +++ b/assets/icons/line_duotone/quit-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/radar-2.svg b/assets/icons/line_duotone/radar-2.svg index a3409eb7..9cef4b68 100644 --- a/assets/icons/line_duotone/radar-2.svg +++ b/assets/icons/line_duotone/radar-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/radial-blur.svg b/assets/icons/line_duotone/radial-blur.svg index 094ca2c7..c04e7bdd 100644 --- a/assets/icons/line_duotone/radial-blur.svg +++ b/assets/icons/line_duotone/radial-blur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/radio-minimalistic.svg b/assets/icons/line_duotone/radio-minimalistic.svg index 6db2a40c..dad6ac04 100644 --- a/assets/icons/line_duotone/radio-minimalistic.svg +++ b/assets/icons/line_duotone/radio-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/radio.svg b/assets/icons/line_duotone/radio.svg index 1101b86c..e282371a 100644 --- a/assets/icons/line_duotone/radio.svg +++ b/assets/icons/line_duotone/radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ranking.svg b/assets/icons/line_duotone/ranking.svg index 0cb8ef0b..3d5a42ac 100644 --- a/assets/icons/line_duotone/ranking.svg +++ b/assets/icons/line_duotone/ranking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/receive-square.svg b/assets/icons/line_duotone/receive-square.svg new file mode 100644 index 00000000..dbe05493 --- /dev/null +++ b/assets/icons/line_duotone/receive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/receive-twice-square.svg b/assets/icons/line_duotone/receive-twice-square.svg new file mode 100644 index 00000000..14b54d2f --- /dev/null +++ b/assets/icons/line_duotone/receive-twice-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/recive-square.svg b/assets/icons/line_duotone/recive-square.svg deleted file mode 100644 index 4e263119..00000000 --- a/assets/icons/line_duotone/recive-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/recive-twice-square.svg b/assets/icons/line_duotone/recive-twice-square.svg deleted file mode 100644 index 174a8146..00000000 --- a/assets/icons/line_duotone/recive-twice-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/record-audio-circle.svg b/assets/icons/line_duotone/record-audio-circle.svg new file mode 100644 index 00000000..d512c5c1 --- /dev/null +++ b/assets/icons/line_duotone/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/record-minimalistic.svg b/assets/icons/line_duotone/record-minimalistic.svg index 4476529a..610a49b4 100644 --- a/assets/icons/line_duotone/record-minimalistic.svg +++ b/assets/icons/line_duotone/record-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/record-square.svg b/assets/icons/line_duotone/record-square.svg index 94d53226..ae8b81bf 100644 --- a/assets/icons/line_duotone/record-square.svg +++ b/assets/icons/line_duotone/record-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/reel-2.svg b/assets/icons/line_duotone/reel-2.svg index 24aee237..d35236e4 100644 --- a/assets/icons/line_duotone/reel-2.svg +++ b/assets/icons/line_duotone/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/reel.svg b/assets/icons/line_duotone/reel.svg index e87863e3..81d43b8c 100644 --- a/assets/icons/line_duotone/reel.svg +++ b/assets/icons/line_duotone/reel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/refresh-circle.svg b/assets/icons/line_duotone/refresh-circle.svg index e85f02a2..63374bfc 100644 --- a/assets/icons/line_duotone/refresh-circle.svg +++ b/assets/icons/line_duotone/refresh-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/refresh-square.svg b/assets/icons/line_duotone/refresh-square.svg index 97d83e71..9d0f2ca6 100644 --- a/assets/icons/line_duotone/refresh-square.svg +++ b/assets/icons/line_duotone/refresh-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/refresh.svg b/assets/icons/line_duotone/refresh.svg index a863f413..f3e3fadf 100644 --- a/assets/icons/line_duotone/refresh.svg +++ b/assets/icons/line_duotone/refresh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/remote-controller-2.svg b/assets/icons/line_duotone/remote-controller-2.svg index 48500631..1d37e32f 100644 --- a/assets/icons/line_duotone/remote-controller-2.svg +++ b/assets/icons/line_duotone/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/remote-controller-minimalistic.svg b/assets/icons/line_duotone/remote-controller-minimalistic.svg index 347c8e81..993c3818 100644 --- a/assets/icons/line_duotone/remote-controller-minimalistic.svg +++ b/assets/icons/line_duotone/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/remote-controller.svg b/assets/icons/line_duotone/remote-controller.svg index 50cc3698..bc56d0df 100644 --- a/assets/icons/line_duotone/remote-controller.svg +++ b/assets/icons/line_duotone/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/reorder-2.svg b/assets/icons/line_duotone/reorder-2.svg new file mode 100644 index 00000000..6af6d498 --- /dev/null +++ b/assets/icons/line_duotone/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/reorder.svg b/assets/icons/line_duotone/reorder.svg index b05bbd40..962e2d37 100644 --- a/assets/icons/line_duotone/reorder.svg +++ b/assets/icons/line_duotone/reorder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/repeat-one-minimalistic.svg b/assets/icons/line_duotone/repeat-one-minimalistic.svg index 994b3aef..32941783 100644 --- a/assets/icons/line_duotone/repeat-one-minimalistic.svg +++ b/assets/icons/line_duotone/repeat-one-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/repeat-one.svg b/assets/icons/line_duotone/repeat-one.svg index 7af55173..679a9a02 100644 --- a/assets/icons/line_duotone/repeat-one.svg +++ b/assets/icons/line_duotone/repeat-one.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/repeat.svg b/assets/icons/line_duotone/repeat.svg index a56cbced..b82f1b25 100644 --- a/assets/icons/line_duotone/repeat.svg +++ b/assets/icons/line_duotone/repeat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/restart-circle.svg b/assets/icons/line_duotone/restart-circle.svg index 6a0ddbbb..9859a806 100644 --- a/assets/icons/line_duotone/restart-circle.svg +++ b/assets/icons/line_duotone/restart-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/restart-square.svg b/assets/icons/line_duotone/restart-square.svg index e7f997b0..4306d3b2 100644 --- a/assets/icons/line_duotone/restart-square.svg +++ b/assets/icons/line_duotone/restart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/restart.svg b/assets/icons/line_duotone/restart.svg index 83ae1b3f..68894184 100644 --- a/assets/icons/line_duotone/restart.svg +++ b/assets/icons/line_duotone/restart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/revote.svg b/assets/icons/line_duotone/revote.svg index 70caef19..f7b89441 100644 --- a/assets/icons/line_duotone/revote.svg +++ b/assets/icons/line_duotone/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/rocket-2.svg b/assets/icons/line_duotone/rocket-2.svg index 3d538db0..9d5b5a0b 100644 --- a/assets/icons/line_duotone/rocket-2.svg +++ b/assets/icons/line_duotone/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/rocket.svg b/assets/icons/line_duotone/rocket.svg index 4603ef0f..f911f347 100644 --- a/assets/icons/line_duotone/rocket.svg +++ b/assets/icons/line_duotone/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-down.svg b/assets/icons/line_duotone/round-arrow-down.svg index 80df8b70..95125f74 100644 --- a/assets/icons/line_duotone/round-arrow-down.svg +++ b/assets/icons/line_duotone/round-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-left-down.svg b/assets/icons/line_duotone/round-arrow-left-down.svg index b85ecba1..1ca87ca7 100644 --- a/assets/icons/line_duotone/round-arrow-left-down.svg +++ b/assets/icons/line_duotone/round-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-left-up.svg b/assets/icons/line_duotone/round-arrow-left-up.svg index e2c65254..1c064493 100644 --- a/assets/icons/line_duotone/round-arrow-left-up.svg +++ b/assets/icons/line_duotone/round-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-left.svg b/assets/icons/line_duotone/round-arrow-left.svg index 3dc99406..ae8c6597 100644 --- a/assets/icons/line_duotone/round-arrow-left.svg +++ b/assets/icons/line_duotone/round-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-right-down.svg b/assets/icons/line_duotone/round-arrow-right-down.svg index d1a747ea..59281d25 100644 --- a/assets/icons/line_duotone/round-arrow-right-down.svg +++ b/assets/icons/line_duotone/round-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-right-up.svg b/assets/icons/line_duotone/round-arrow-right-up.svg index e2558b73..ce97a868 100644 --- a/assets/icons/line_duotone/round-arrow-right-up.svg +++ b/assets/icons/line_duotone/round-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-right.svg b/assets/icons/line_duotone/round-arrow-right.svg index af496820..a3512fb0 100644 --- a/assets/icons/line_duotone/round-arrow-right.svg +++ b/assets/icons/line_duotone/round-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-arrow-up.svg b/assets/icons/line_duotone/round-arrow-up.svg index a2722616..36c23bad 100644 --- a/assets/icons/line_duotone/round-arrow-up.svg +++ b/assets/icons/line_duotone/round-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-double-alt-arrow-down.svg b/assets/icons/line_duotone/round-double-alt-arrow-down.svg index 764d862d..58b99bd8 100644 --- a/assets/icons/line_duotone/round-double-alt-arrow-down.svg +++ b/assets/icons/line_duotone/round-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-double-alt-arrow-left.svg b/assets/icons/line_duotone/round-double-alt-arrow-left.svg index efe140eb..770d8658 100644 --- a/assets/icons/line_duotone/round-double-alt-arrow-left.svg +++ b/assets/icons/line_duotone/round-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-double-alt-arrow-right.svg b/assets/icons/line_duotone/round-double-alt-arrow-right.svg index 2c6782d8..3b6f1b60 100644 --- a/assets/icons/line_duotone/round-double-alt-arrow-right.svg +++ b/assets/icons/line_duotone/round-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-double-alt-arrow-up.svg b/assets/icons/line_duotone/round-double-alt-arrow-up.svg index 9716f544..184a9149 100644 --- a/assets/icons/line_duotone/round-double-alt-arrow-up.svg +++ b/assets/icons/line_duotone/round-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-graph.svg b/assets/icons/line_duotone/round-graph.svg index cd26055c..b22807f5 100644 --- a/assets/icons/line_duotone/round-graph.svg +++ b/assets/icons/line_duotone/round-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-sort-horizontal.svg b/assets/icons/line_duotone/round-sort-horizontal.svg index a4b997dc..6bb07588 100644 --- a/assets/icons/line_duotone/round-sort-horizontal.svg +++ b/assets/icons/line_duotone/round-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-sort-vertical.svg b/assets/icons/line_duotone/round-sort-vertical.svg index e2ceb147..a0c659f5 100644 --- a/assets/icons/line_duotone/round-sort-vertical.svg +++ b/assets/icons/line_duotone/round-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-transfer-diagonal.svg b/assets/icons/line_duotone/round-transfer-diagonal.svg index ae10e4ed..bf979518 100644 --- a/assets/icons/line_duotone/round-transfer-diagonal.svg +++ b/assets/icons/line_duotone/round-transfer-diagonal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-transfer-horizontal.svg b/assets/icons/line_duotone/round-transfer-horizontal.svg index b777105d..3f4086d6 100644 --- a/assets/icons/line_duotone/round-transfer-horizontal.svg +++ b/assets/icons/line_duotone/round-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/round-transfer-vertical.svg b/assets/icons/line_duotone/round-transfer-vertical.svg index 99e0f491..54a9b7b5 100644 --- a/assets/icons/line_duotone/round-transfer-vertical.svg +++ b/assets/icons/line_duotone/round-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifer-bug.svg b/assets/icons/line_duotone/rounded-magnifer-bug.svg deleted file mode 100644 index 3e56c32d..00000000 --- a/assets/icons/line_duotone/rounded-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifer-zoom-in.svg b/assets/icons/line_duotone/rounded-magnifer-zoom-in.svg deleted file mode 100644 index fa99b4cb..00000000 --- a/assets/icons/line_duotone/rounded-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifer-zoom-out.svg b/assets/icons/line_duotone/rounded-magnifer-zoom-out.svg deleted file mode 100644 index c613ef71..00000000 --- a/assets/icons/line_duotone/rounded-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifer.svg b/assets/icons/line_duotone/rounded-magnifer.svg deleted file mode 100644 index a6825920..00000000 --- a/assets/icons/line_duotone/rounded-magnifer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifier-bug.svg b/assets/icons/line_duotone/rounded-magnifier-bug.svg new file mode 100644 index 00000000..f6ec806a --- /dev/null +++ b/assets/icons/line_duotone/rounded-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifier-zoom-in.svg b/assets/icons/line_duotone/rounded-magnifier-zoom-in.svg new file mode 100644 index 00000000..451305b4 --- /dev/null +++ b/assets/icons/line_duotone/rounded-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifier-zoom-out.svg b/assets/icons/line_duotone/rounded-magnifier-zoom-out.svg new file mode 100644 index 00000000..ff72a232 --- /dev/null +++ b/assets/icons/line_duotone/rounded-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/rounded-magnifier.svg b/assets/icons/line_duotone/rounded-magnifier.svg new file mode 100644 index 00000000..b9374cba --- /dev/null +++ b/assets/icons/line_duotone/rounded-magnifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/route.svg b/assets/icons/line_duotone/route.svg index 2306eb0c..75dd8596 100644 --- a/assets/icons/line_duotone/route.svg +++ b/assets/icons/line_duotone/route.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/routing-2.svg b/assets/icons/line_duotone/routing-2.svg index e644e5ad..835b66ad 100644 --- a/assets/icons/line_duotone/routing-2.svg +++ b/assets/icons/line_duotone/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/routing-3.svg b/assets/icons/line_duotone/routing-3.svg index b52e4756..22b09927 100644 --- a/assets/icons/line_duotone/routing-3.svg +++ b/assets/icons/line_duotone/routing-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/routing.svg b/assets/icons/line_duotone/routing.svg index d040f461..18cc39b4 100644 --- a/assets/icons/line_duotone/routing.svg +++ b/assets/icons/line_duotone/routing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ruble.svg b/assets/icons/line_duotone/ruble.svg index d174a793..4ac5e628 100644 --- a/assets/icons/line_duotone/ruble.svg +++ b/assets/icons/line_duotone/ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/rugby.svg b/assets/icons/line_duotone/rugby.svg index 90e08a4b..65f2e7eb 100644 --- a/assets/icons/line_duotone/rugby.svg +++ b/assets/icons/line_duotone/rugby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ruler-angular.svg b/assets/icons/line_duotone/ruler-angular.svg index fe7f250d..403f76f0 100644 --- a/assets/icons/line_duotone/ruler-angular.svg +++ b/assets/icons/line_duotone/ruler-angular.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ruler-cross-pen.svg b/assets/icons/line_duotone/ruler-cross-pen.svg index 93d6744f..86ed6645 100644 --- a/assets/icons/line_duotone/ruler-cross-pen.svg +++ b/assets/icons/line_duotone/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ruler-pen.svg b/assets/icons/line_duotone/ruler-pen.svg index dddd40ba..27182873 100644 --- a/assets/icons/line_duotone/ruler-pen.svg +++ b/assets/icons/line_duotone/ruler-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ruler.svg b/assets/icons/line_duotone/ruler.svg index 3a8855a3..a1a8384d 100644 --- a/assets/icons/line_duotone/ruler.svg +++ b/assets/icons/line_duotone/ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/running-2.svg b/assets/icons/line_duotone/running-2.svg index 697a8569..3c3e1358 100644 --- a/assets/icons/line_duotone/running-2.svg +++ b/assets/icons/line_duotone/running-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/running-round.svg b/assets/icons/line_duotone/running-round.svg index 2a308589..7a48f3d7 100644 --- a/assets/icons/line_duotone/running-round.svg +++ b/assets/icons/line_duotone/running-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/running.svg b/assets/icons/line_duotone/running.svg index 4f8d8b1b..5e88baf2 100644 --- a/assets/icons/line_duotone/running.svg +++ b/assets/icons/line_duotone/running.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sad-circle.svg b/assets/icons/line_duotone/sad-circle.svg index eb2a66b1..e6c6765c 100644 --- a/assets/icons/line_duotone/sad-circle.svg +++ b/assets/icons/line_duotone/sad-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sad-square.svg b/assets/icons/line_duotone/sad-square.svg index d8c45dff..41131e5f 100644 --- a/assets/icons/line_duotone/sad-square.svg +++ b/assets/icons/line_duotone/sad-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/safe-2.svg b/assets/icons/line_duotone/safe-2.svg index 08d379f6..15371bea 100644 --- a/assets/icons/line_duotone/safe-2.svg +++ b/assets/icons/line_duotone/safe-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/safe-circle.svg b/assets/icons/line_duotone/safe-circle.svg index b969020a..5f31e780 100644 --- a/assets/icons/line_duotone/safe-circle.svg +++ b/assets/icons/line_duotone/safe-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/safe-square.svg b/assets/icons/line_duotone/safe-square.svg index 650a9ba3..0f5850c9 100644 --- a/assets/icons/line_duotone/safe-square.svg +++ b/assets/icons/line_duotone/safe-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sale-square.svg b/assets/icons/line_duotone/sale-square.svg index 89ca7d80..8275a745 100644 --- a/assets/icons/line_duotone/sale-square.svg +++ b/assets/icons/line_duotone/sale-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sale.svg b/assets/icons/line_duotone/sale.svg index b560f1a0..59fa725c 100644 --- a/assets/icons/line_duotone/sale.svg +++ b/assets/icons/line_duotone/sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/satellite.svg b/assets/icons/line_duotone/satellite.svg index 01bbb4aa..822847bd 100644 --- a/assets/icons/line_duotone/satellite.svg +++ b/assets/icons/line_duotone/satellite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/scale.svg b/assets/icons/line_duotone/scale.svg index a7bc15b9..932b5130 100644 --- a/assets/icons/line_duotone/scale.svg +++ b/assets/icons/line_duotone/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/scaling.svg b/assets/icons/line_duotone/scaling.svg new file mode 100644 index 00000000..95d16de5 --- /dev/null +++ b/assets/icons/line_duotone/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/scanner-2.svg b/assets/icons/line_duotone/scanner-2.svg index 94584a61..07d1cbd8 100644 --- a/assets/icons/line_duotone/scanner-2.svg +++ b/assets/icons/line_duotone/scanner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/scanner.svg b/assets/icons/line_duotone/scanner.svg index cf4252bb..8976a366 100644 --- a/assets/icons/line_duotone/scanner.svg +++ b/assets/icons/line_duotone/scanner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/scissors-square.svg b/assets/icons/line_duotone/scissors-square.svg index 305616c0..2707a166 100644 --- a/assets/icons/line_duotone/scissors-square.svg +++ b/assets/icons/line_duotone/scissors-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/screen-share.svg b/assets/icons/line_duotone/screen-share.svg index 54954ee1..538644bf 100644 --- a/assets/icons/line_duotone/screen-share.svg +++ b/assets/icons/line_duotone/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/screencast.svg b/assets/icons/line_duotone/screencast.svg index a06ccc18..2cb13a52 100644 --- a/assets/icons/line_duotone/screencast.svg +++ b/assets/icons/line_duotone/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/send-square.svg b/assets/icons/line_duotone/send-square.svg index 0d671a3b..b4355fb7 100644 --- a/assets/icons/line_duotone/send-square.svg +++ b/assets/icons/line_duotone/send-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/send-twice-square.svg b/assets/icons/line_duotone/send-twice-square.svg index c225e5f7..088c0286 100644 --- a/assets/icons/line_duotone/send-twice-square.svg +++ b/assets/icons/line_duotone/send-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-2.svg b/assets/icons/line_duotone/server-2.svg index dc8af519..d1dbc2bc 100644 --- a/assets/icons/line_duotone/server-2.svg +++ b/assets/icons/line_duotone/server-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-minimalistic.svg b/assets/icons/line_duotone/server-minimalistic.svg index a73d2514..aa687dff 100644 --- a/assets/icons/line_duotone/server-minimalistic.svg +++ b/assets/icons/line_duotone/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-path.svg b/assets/icons/line_duotone/server-path.svg index 349bbd0b..f36768ba 100644 --- a/assets/icons/line_duotone/server-path.svg +++ b/assets/icons/line_duotone/server-path.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-square-cloud.svg b/assets/icons/line_duotone/server-square-cloud.svg index 108bb77a..3053644b 100644 --- a/assets/icons/line_duotone/server-square-cloud.svg +++ b/assets/icons/line_duotone/server-square-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-square-update.svg b/assets/icons/line_duotone/server-square-update.svg index ff5a6d39..fec357b5 100644 --- a/assets/icons/line_duotone/server-square-update.svg +++ b/assets/icons/line_duotone/server-square-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server-square.svg b/assets/icons/line_duotone/server-square.svg index d37375c4..8271350b 100644 --- a/assets/icons/line_duotone/server-square.svg +++ b/assets/icons/line_duotone/server-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/server.svg b/assets/icons/line_duotone/server.svg index d9a9fdbe..2a5da12f 100644 --- a/assets/icons/line_duotone/server.svg +++ b/assets/icons/line_duotone/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/share-circle.svg b/assets/icons/line_duotone/share-circle.svg index 9a44f837..f282f9f5 100644 --- a/assets/icons/line_duotone/share-circle.svg +++ b/assets/icons/line_duotone/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/share.svg b/assets/icons/line_duotone/share.svg index e243c892..065aa6b4 100644 --- a/assets/icons/line_duotone/share.svg +++ b/assets/icons/line_duotone/share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shield-warning.svg b/assets/icons/line_duotone/shield-warning.svg index 10c1e75b..5db9a292 100644 --- a/assets/icons/line_duotone/shield-warning.svg +++ b/assets/icons/line_duotone/shield-warning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shield.svg b/assets/icons/line_duotone/shield.svg index 2bb638b4..1fb7ef72 100644 --- a/assets/icons/line_duotone/shield.svg +++ b/assets/icons/line_duotone/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shock-absorber.svg b/assets/icons/line_duotone/shock-absorber.svg index c224fddf..d53171d6 100644 --- a/assets/icons/line_duotone/shock-absorber.svg +++ b/assets/icons/line_duotone/shock-absorber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shop-2.svg b/assets/icons/line_duotone/shop-2.svg index 0b431ea2..0c1462a2 100644 --- a/assets/icons/line_duotone/shop-2.svg +++ b/assets/icons/line_duotone/shop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shop-minimalistic.svg b/assets/icons/line_duotone/shop-minimalistic.svg index 6215a3ff..51381bfe 100644 --- a/assets/icons/line_duotone/shop-minimalistic.svg +++ b/assets/icons/line_duotone/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shop.svg b/assets/icons/line_duotone/shop.svg index e845191a..dc320d23 100644 --- a/assets/icons/line_duotone/shop.svg +++ b/assets/icons/line_duotone/shop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/shuffle.svg b/assets/icons/line_duotone/shuffle.svg index fa646c0c..48bd2059 100644 --- a/assets/icons/line_duotone/shuffle.svg +++ b/assets/icons/line_duotone/shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/siderbar.svg b/assets/icons/line_duotone/sidebar.svg similarity index 68% rename from assets/icons/linear/siderbar.svg rename to assets/icons/line_duotone/sidebar.svg index e7e39eea..8f7c80e2 100644 --- a/assets/icons/linear/siderbar.svg +++ b/assets/icons/line_duotone/sidebar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/signpost-2.svg b/assets/icons/line_duotone/signpost-2.svg index ecb7b475..b12edc12 100644 --- a/assets/icons/line_duotone/signpost-2.svg +++ b/assets/icons/line_duotone/signpost-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/signpost.svg b/assets/icons/line_duotone/signpost.svg index 2effb8ad..cb41e3bd 100644 --- a/assets/icons/line_duotone/signpost.svg +++ b/assets/icons/line_duotone/signpost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sim-cards.svg b/assets/icons/line_duotone/sim-cards.svg index b2b8f6a2..85389e0f 100644 --- a/assets/icons/line_duotone/sim-cards.svg +++ b/assets/icons/line_duotone/sim-cards.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/siren-rounded.svg b/assets/icons/line_duotone/siren-rounded.svg index bce46332..a5ca83a7 100644 --- a/assets/icons/line_duotone/siren-rounded.svg +++ b/assets/icons/line_duotone/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/siren.svg b/assets/icons/line_duotone/siren.svg index 2ba5b734..fb717af9 100644 --- a/assets/icons/line_duotone/siren.svg +++ b/assets/icons/line_duotone/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/skateboarding-round.svg b/assets/icons/line_duotone/skateboarding-round.svg index 8c0ff054..865cff08 100644 --- a/assets/icons/line_duotone/skateboarding-round.svg +++ b/assets/icons/line_duotone/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/skateboarding.svg b/assets/icons/line_duotone/skateboarding.svg index 29746470..f92c8ee0 100644 --- a/assets/icons/line_duotone/skateboarding.svg +++ b/assets/icons/line_duotone/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/skirt.svg b/assets/icons/line_duotone/skirt.svg index 7d41e90c..fe0a6a90 100644 --- a/assets/icons/line_duotone/skirt.svg +++ b/assets/icons/line_duotone/skirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sledgehammer.svg b/assets/icons/line_duotone/sledgehammer.svg index a7f6365b..6c232209 100644 --- a/assets/icons/line_duotone/sledgehammer.svg +++ b/assets/icons/line_duotone/sledgehammer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sleeping-circle.svg b/assets/icons/line_duotone/sleeping-circle.svg index b5202c25..07e13be2 100644 --- a/assets/icons/line_duotone/sleeping-circle.svg +++ b/assets/icons/line_duotone/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sleeping-square.svg b/assets/icons/line_duotone/sleeping-square.svg index e0924abc..d0bf8ec2 100644 --- a/assets/icons/line_duotone/sleeping-square.svg +++ b/assets/icons/line_duotone/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sleeping.svg b/assets/icons/line_duotone/sleeping.svg index 9a047554..77213153 100644 --- a/assets/icons/line_duotone/sleeping.svg +++ b/assets/icons/line_duotone/sleeping.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/slider-horizontal.svg b/assets/icons/line_duotone/slider-horizontal.svg index 406738aa..ffb0dc2a 100644 --- a/assets/icons/line_duotone/slider-horizontal.svg +++ b/assets/icons/line_duotone/slider-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/slider-minimalistic-horizontal.svg b/assets/icons/line_duotone/slider-minimalistic-horizontal.svg index f7dbdd85..c7fcde7e 100644 --- a/assets/icons/line_duotone/slider-minimalistic-horizontal.svg +++ b/assets/icons/line_duotone/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/slider-vertical-minimalistic.svg b/assets/icons/line_duotone/slider-vertical-minimalistic.svg index f7edcaf4..5272b3d7 100644 --- a/assets/icons/line_duotone/slider-vertical-minimalistic.svg +++ b/assets/icons/line_duotone/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/slider-vertical.svg b/assets/icons/line_duotone/slider-vertical.svg index f560bb65..bedf9a2d 100644 --- a/assets/icons/line_duotone/slider-vertical.svg +++ b/assets/icons/line_duotone/slider-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-home-angle.svg b/assets/icons/line_duotone/smart-home-angle.svg index 9650686d..2d25487b 100644 --- a/assets/icons/line_duotone/smart-home-angle.svg +++ b/assets/icons/line_duotone/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-home.svg b/assets/icons/line_duotone/smart-home.svg index 9aee2f72..37c48c2b 100644 --- a/assets/icons/line_duotone/smart-home.svg +++ b/assets/icons/line_duotone/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-speaker-2.svg b/assets/icons/line_duotone/smart-speaker-2.svg index d81bc888..30ba9258 100644 --- a/assets/icons/line_duotone/smart-speaker-2.svg +++ b/assets/icons/line_duotone/smart-speaker-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-speaker.svg b/assets/icons/line_duotone/smart-speaker.svg index 880e25f7..34fea665 100644 --- a/assets/icons/line_duotone/smart-speaker.svg +++ b/assets/icons/line_duotone/smart-speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-vacuum-cleaner-2.svg b/assets/icons/line_duotone/smart-vacuum-cleaner-2.svg index 8151dbb0..70d676a6 100644 --- a/assets/icons/line_duotone/smart-vacuum-cleaner-2.svg +++ b/assets/icons/line_duotone/smart-vacuum-cleaner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smart-vacuum-cleaner.svg b/assets/icons/line_duotone/smart-vacuum-cleaner.svg index 3720fe5c..6cd3c946 100644 --- a/assets/icons/line_duotone/smart-vacuum-cleaner.svg +++ b/assets/icons/line_duotone/smart-vacuum-cleaner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smartphone-rotate-2.svg b/assets/icons/line_duotone/smartphone-rotate-2.svg index 5a2425b2..47a75eae 100644 --- a/assets/icons/line_duotone/smartphone-rotate-2.svg +++ b/assets/icons/line_duotone/smartphone-rotate-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smartphone-rotate-angle.svg b/assets/icons/line_duotone/smartphone-rotate-angle.svg index 5a51c854..f322b003 100644 --- a/assets/icons/line_duotone/smartphone-rotate-angle.svg +++ b/assets/icons/line_duotone/smartphone-rotate-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smartphone-rotate-orientation.svg b/assets/icons/line_duotone/smartphone-rotate-orientation.svg index b9bf9656..2fec96b0 100644 --- a/assets/icons/line_duotone/smartphone-rotate-orientation.svg +++ b/assets/icons/line_duotone/smartphone-rotate-orientation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smartphone-update.svg b/assets/icons/line_duotone/smartphone-update.svg index c3692402..91e9b27f 100644 --- a/assets/icons/line_duotone/smartphone-update.svg +++ b/assets/icons/line_duotone/smartphone-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smartphone-vibration.svg b/assets/icons/line_duotone/smartphone-vibration.svg index 7c1f7d85..2c9d1406 100644 --- a/assets/icons/line_duotone/smartphone-vibration.svg +++ b/assets/icons/line_duotone/smartphone-vibration.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smile-circle.svg b/assets/icons/line_duotone/smile-circle.svg index 7e01a775..a86d2107 100644 --- a/assets/icons/line_duotone/smile-circle.svg +++ b/assets/icons/line_duotone/smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/smile-square.svg b/assets/icons/line_duotone/smile-square.svg index 8fe6e683..4d40f283 100644 --- a/assets/icons/line_duotone/smile-square.svg +++ b/assets/icons/line_duotone/smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/socket.svg b/assets/icons/line_duotone/socket.svg index e92e6a92..973f3b09 100644 --- a/assets/icons/line_duotone/socket.svg +++ b/assets/icons/line_duotone/socket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sofa-2.svg b/assets/icons/line_duotone/sofa-2.svg index 7d46baa5..578c869f 100644 --- a/assets/icons/line_duotone/sofa-2.svg +++ b/assets/icons/line_duotone/sofa-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-alphabetically.svg b/assets/icons/line_duotone/sort-alphabetically.svg new file mode 100644 index 00000000..16c671e5 --- /dev/null +++ b/assets/icons/line_duotone/sort-alphabetically.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-by-alphabet.svg b/assets/icons/line_duotone/sort-by-alphabet.svg deleted file mode 100644 index 2cf3025d..00000000 --- a/assets/icons/line_duotone/sort-by-alphabet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-by-time.svg b/assets/icons/line_duotone/sort-by-time.svg index 521fd0df..5826fda0 100644 --- a/assets/icons/line_duotone/sort-by-time.svg +++ b/assets/icons/line_duotone/sort-by-time.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-from-bottom-to-top.svg b/assets/icons/line_duotone/sort-from-bottom-to-top.svg index a3b51fe7..53a449df 100644 --- a/assets/icons/line_duotone/sort-from-bottom-to-top.svg +++ b/assets/icons/line_duotone/sort-from-bottom-to-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-from-top-to-bottom.svg b/assets/icons/line_duotone/sort-from-top-to-bottom.svg index 104b0816..5445e49b 100644 --- a/assets/icons/line_duotone/sort-from-top-to-bottom.svg +++ b/assets/icons/line_duotone/sort-from-top-to-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-horizontal.svg b/assets/icons/line_duotone/sort-horizontal.svg index e03f20ce..342763f9 100644 --- a/assets/icons/line_duotone/sort-horizontal.svg +++ b/assets/icons/line_duotone/sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sort-vertical.svg b/assets/icons/line_duotone/sort-vertical.svg index 226e06dc..18410e92 100644 --- a/assets/icons/line_duotone/sort-vertical.svg +++ b/assets/icons/line_duotone/sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/soundwave-circle.svg b/assets/icons/line_duotone/soundwave-circle.svg index 80e743b4..02f6138b 100644 --- a/assets/icons/line_duotone/soundwave-circle.svg +++ b/assets/icons/line_duotone/soundwave-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/soundwave-square.svg b/assets/icons/line_duotone/soundwave-square.svg index 5007d17e..3628615f 100644 --- a/assets/icons/line_duotone/soundwave-square.svg +++ b/assets/icons/line_duotone/soundwave-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/soundwave.svg b/assets/icons/line_duotone/soundwave.svg index 94c97db2..8398c4a8 100644 --- a/assets/icons/line_duotone/soundwave.svg +++ b/assets/icons/line_duotone/soundwave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/speaker.svg b/assets/icons/line_duotone/speaker.svg index ed1289e1..321b75ce 100644 --- a/assets/icons/line_duotone/speaker.svg +++ b/assets/icons/line_duotone/speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/special-effects.svg b/assets/icons/line_duotone/special-effects.svg index 327c8638..16be1d15 100644 --- a/assets/icons/line_duotone/special-effects.svg +++ b/assets/icons/line_duotone/special-effects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/spedometer-low.svg b/assets/icons/line_duotone/spedometer-low.svg deleted file mode 100644 index 35f2ea02..00000000 --- a/assets/icons/line_duotone/spedometer-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/spedometer-max.svg b/assets/icons/line_duotone/spedometer-max.svg deleted file mode 100644 index 281c1369..00000000 --- a/assets/icons/line_duotone/spedometer-max.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/spedometer-middle.svg b/assets/icons/line_duotone/spedometer-middle.svg deleted file mode 100644 index 537a9bb3..00000000 --- a/assets/icons/line_duotone/spedometer-middle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/speedometer-low.svg b/assets/icons/line_duotone/speedometer-low.svg new file mode 100644 index 00000000..87cd5453 --- /dev/null +++ b/assets/icons/line_duotone/speedometer-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/speedometer-max.svg b/assets/icons/line_duotone/speedometer-max.svg new file mode 100644 index 00000000..823a892f --- /dev/null +++ b/assets/icons/line_duotone/speedometer-max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/speedometer-middle.svg b/assets/icons/line_duotone/speedometer-middle.svg new file mode 100644 index 00000000..936a4a98 --- /dev/null +++ b/assets/icons/line_duotone/speedometer-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-academic-cap.svg b/assets/icons/line_duotone/square-academic-cap.svg index 52d5485f..3e6d1f2e 100644 --- a/assets/icons/line_duotone/square-academic-cap.svg +++ b/assets/icons/line_duotone/square-academic-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-down.svg b/assets/icons/line_duotone/square-arrow-down.svg index 8d7e25d1..a8f9b9ce 100644 --- a/assets/icons/line_duotone/square-arrow-down.svg +++ b/assets/icons/line_duotone/square-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-left-down.svg b/assets/icons/line_duotone/square-arrow-left-down.svg index bbb51cf0..c12ea8a1 100644 --- a/assets/icons/line_duotone/square-arrow-left-down.svg +++ b/assets/icons/line_duotone/square-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-left-up.svg b/assets/icons/line_duotone/square-arrow-left-up.svg index c10d6cb8..e381a814 100644 --- a/assets/icons/line_duotone/square-arrow-left-up.svg +++ b/assets/icons/line_duotone/square-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-left.svg b/assets/icons/line_duotone/square-arrow-left.svg index e9b7180f..b567970e 100644 --- a/assets/icons/line_duotone/square-arrow-left.svg +++ b/assets/icons/line_duotone/square-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-right-down.svg b/assets/icons/line_duotone/square-arrow-right-down.svg index 53c40f94..6bf3ea11 100644 --- a/assets/icons/line_duotone/square-arrow-right-down.svg +++ b/assets/icons/line_duotone/square-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-right-up.svg b/assets/icons/line_duotone/square-arrow-right-up.svg index a805c5a9..9731460d 100644 --- a/assets/icons/line_duotone/square-arrow-right-up.svg +++ b/assets/icons/line_duotone/square-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-right.svg b/assets/icons/line_duotone/square-arrow-right.svg index 8c9f583a..c7cbe237 100644 --- a/assets/icons/line_duotone/square-arrow-right.svg +++ b/assets/icons/line_duotone/square-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-arrow-up.svg b/assets/icons/line_duotone/square-arrow-up.svg index b4ef5f3b..3a173140 100644 --- a/assets/icons/line_duotone/square-arrow-up.svg +++ b/assets/icons/line_duotone/square-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-bottom-down.svg b/assets/icons/line_duotone/square-bottom-down.svg index 0ac87220..142b9961 100644 --- a/assets/icons/line_duotone/square-bottom-down.svg +++ b/assets/icons/line_duotone/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-bottom-up.svg b/assets/icons/line_duotone/square-bottom-up.svg index 9b045b61..3abccbcd 100644 --- a/assets/icons/line_duotone/square-bottom-up.svg +++ b/assets/icons/line_duotone/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-double-alt-arrow-down.svg b/assets/icons/line_duotone/square-double-alt-arrow-down.svg index 492d314b..929360a0 100644 --- a/assets/icons/line_duotone/square-double-alt-arrow-down.svg +++ b/assets/icons/line_duotone/square-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-double-alt-arrow-left.svg b/assets/icons/line_duotone/square-double-alt-arrow-left.svg index 666f2147..5b618fa2 100644 --- a/assets/icons/line_duotone/square-double-alt-arrow-left.svg +++ b/assets/icons/line_duotone/square-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-double-alt-arrow-right.svg b/assets/icons/line_duotone/square-double-alt-arrow-right.svg index 7cda8010..e840fefb 100644 --- a/assets/icons/line_duotone/square-double-alt-arrow-right.svg +++ b/assets/icons/line_duotone/square-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-double-alt-arrow-up.svg b/assets/icons/line_duotone/square-double-alt-arrow-up.svg index 35fe85bc..55eff22d 100644 --- a/assets/icons/line_duotone/square-double-alt-arrow-up.svg +++ b/assets/icons/line_duotone/square-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-share-line.svg b/assets/icons/line_duotone/square-share-line.svg index c73adf6a..cd9f2476 100644 --- a/assets/icons/line_duotone/square-share-line.svg +++ b/assets/icons/line_duotone/square-share-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-sort-horizontal.svg b/assets/icons/line_duotone/square-sort-horizontal.svg index 61117f9a..c67ff4e5 100644 --- a/assets/icons/line_duotone/square-sort-horizontal.svg +++ b/assets/icons/line_duotone/square-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-sort-vertical.svg b/assets/icons/line_duotone/square-sort-vertical.svg index dbc63ead..c523e947 100644 --- a/assets/icons/line_duotone/square-sort-vertical.svg +++ b/assets/icons/line_duotone/square-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-top-down.svg b/assets/icons/line_duotone/square-top-down.svg index cad7ed29..8bfa40f3 100644 --- a/assets/icons/line_duotone/square-top-down.svg +++ b/assets/icons/line_duotone/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-top-up.svg b/assets/icons/line_duotone/square-top-up.svg index 05de6083..da7f762e 100644 --- a/assets/icons/line_duotone/square-top-up.svg +++ b/assets/icons/line_duotone/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-transfer-horizontal.svg b/assets/icons/line_duotone/square-transfer-horizontal.svg index 065ecd28..abe6b4c9 100644 --- a/assets/icons/line_duotone/square-transfer-horizontal.svg +++ b/assets/icons/line_duotone/square-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/square-transfer-vertical.svg b/assets/icons/line_duotone/square-transfer-vertical.svg index 1719de3c..a2f77e38 100644 --- a/assets/icons/line_duotone/square-transfer-vertical.svg +++ b/assets/icons/line_duotone/square-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ssd-round.svg b/assets/icons/line_duotone/ssd-round.svg index 45577a3d..9ee34f08 100644 --- a/assets/icons/line_duotone/ssd-round.svg +++ b/assets/icons/line_duotone/ssd-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ssd-square.svg b/assets/icons/line_duotone/ssd-square.svg index 092a8cd0..dc390666 100644 --- a/assets/icons/line_duotone/ssd-square.svg +++ b/assets/icons/line_duotone/ssd-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-2.svg b/assets/icons/line_duotone/star-2.svg new file mode 100644 index 00000000..0a2aef57 --- /dev/null +++ b/assets/icons/line_duotone/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-fall-minimalistic-2.svg b/assets/icons/line_duotone/star-fall-minimalistic-2.svg index e6fc9577..ad028eed 100644 --- a/assets/icons/line_duotone/star-fall-minimalistic-2.svg +++ b/assets/icons/line_duotone/star-fall-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-fall-minimalistic.svg b/assets/icons/line_duotone/star-fall-minimalistic.svg index dbd9abc5..c67d43ef 100644 --- a/assets/icons/line_duotone/star-fall-minimalistic.svg +++ b/assets/icons/line_duotone/star-fall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-fall.svg b/assets/icons/line_duotone/star-fall.svg index 5b4e3ef0..0a188de5 100644 --- a/assets/icons/line_duotone/star-fall.svg +++ b/assets/icons/line_duotone/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-rainbow.svg b/assets/icons/line_duotone/star-rainbow.svg index 05b86428..11dec0d2 100644 --- a/assets/icons/line_duotone/star-rainbow.svg +++ b/assets/icons/line_duotone/star-rainbow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-ring.svg b/assets/icons/line_duotone/star-ring.svg index 08908362..83512a7c 100644 --- a/assets/icons/line_duotone/star-ring.svg +++ b/assets/icons/line_duotone/star-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-rings.svg b/assets/icons/line_duotone/star-rings.svg index 5901918b..10f01433 100644 --- a/assets/icons/line_duotone/star-rings.svg +++ b/assets/icons/line_duotone/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/star-shine.svg b/assets/icons/line_duotone/star-shine.svg index 58fb5aad..573494e1 100644 --- a/assets/icons/line_duotone/star-shine.svg +++ b/assets/icons/line_duotone/star-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/stars-2.svg b/assets/icons/line_duotone/stars-2.svg new file mode 100644 index 00000000..a0a113d9 --- /dev/null +++ b/assets/icons/line_duotone/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/stars-minimalistic.svg b/assets/icons/line_duotone/stars-minimalistic.svg index 4664fdbc..397241ae 100644 --- a/assets/icons/line_duotone/stars-minimalistic.svg +++ b/assets/icons/line_duotone/stars-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/stars.svg b/assets/icons/line_duotone/stars.svg index a0a113d9..49bc913c 100644 --- a/assets/icons/line_duotone/stars.svg +++ b/assets/icons/line_duotone/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/station-minimalistic.svg b/assets/icons/line_duotone/station-minimalistic.svg index 74dad984..8879dab5 100644 --- a/assets/icons/line_duotone/station-minimalistic.svg +++ b/assets/icons/line_duotone/station-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/station.svg b/assets/icons/line_duotone/station.svg index 58689fd2..75543d2d 100644 --- a/assets/icons/line_duotone/station.svg +++ b/assets/icons/line_duotone/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/stethoscope.svg b/assets/icons/line_duotone/stethoscope.svg index 2bc73549..f52b481d 100644 --- a/assets/icons/line_duotone/stethoscope.svg +++ b/assets/icons/line_duotone/stethoscope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sticker-smile-circle-2.svg b/assets/icons/line_duotone/sticker-smile-circle-2.svg index 71ba8ff6..23bb19fd 100644 --- a/assets/icons/line_duotone/sticker-smile-circle-2.svg +++ b/assets/icons/line_duotone/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sticker-smile-circle.svg b/assets/icons/line_duotone/sticker-smile-circle.svg index 261a6b75..ef66a044 100644 --- a/assets/icons/line_duotone/sticker-smile-circle.svg +++ b/assets/icons/line_duotone/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sticker-smile-square.svg b/assets/icons/line_duotone/sticker-smile-square.svg index 48262c73..0561d547 100644 --- a/assets/icons/line_duotone/sticker-smile-square.svg +++ b/assets/icons/line_duotone/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/stopwatch-pause.svg b/assets/icons/line_duotone/stopwatch-pause.svg index e2983a5e..2dbfedf0 100644 --- a/assets/icons/line_duotone/stopwatch-pause.svg +++ b/assets/icons/line_duotone/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/stream.svg b/assets/icons/line_duotone/stream.svg index 39722a6a..b2c3f9a3 100644 --- a/assets/icons/line_duotone/stream.svg +++ b/assets/icons/line_duotone/stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/streets-map-point.svg b/assets/icons/line_duotone/streets-map-point.svg index 30a1c7b1..69602c04 100644 --- a/assets/icons/line_duotone/streets-map-point.svg +++ b/assets/icons/line_duotone/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/structure.svg b/assets/icons/line_duotone/structure.svg index 1c501a7d..31a7cf79 100644 --- a/assets/icons/line_duotone/structure.svg +++ b/assets/icons/line_duotone/structure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/subtitles.svg b/assets/icons/line_duotone/subtitles.svg index fefcc7a5..dce7fe73 100644 --- a/assets/icons/line_duotone/subtitles.svg +++ b/assets/icons/line_duotone/subtitles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suitcase-lines.svg b/assets/icons/line_duotone/suitcase-lines.svg index c74b7d17..4fef7182 100644 --- a/assets/icons/line_duotone/suitcase-lines.svg +++ b/assets/icons/line_duotone/suitcase-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suitcase-tag.svg b/assets/icons/line_duotone/suitcase-tag.svg index 0c289784..d67a4f0f 100644 --- a/assets/icons/line_duotone/suitcase-tag.svg +++ b/assets/icons/line_duotone/suitcase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suitcase.svg b/assets/icons/line_duotone/suitcase.svg index 0f1e44d0..645dde77 100644 --- a/assets/icons/line_duotone/suitcase.svg +++ b/assets/icons/line_duotone/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sun-2.svg b/assets/icons/line_duotone/sun-2.svg index 33182452..ba86f1e8 100644 --- a/assets/icons/line_duotone/sun-2.svg +++ b/assets/icons/line_duotone/sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sun-fog.svg b/assets/icons/line_duotone/sun-fog.svg index 5c035573..d63b4ba6 100644 --- a/assets/icons/line_duotone/sun-fog.svg +++ b/assets/icons/line_duotone/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sun.svg b/assets/icons/line_duotone/sun.svg index cc09b088..02b55d47 100644 --- a/assets/icons/line_duotone/sun.svg +++ b/assets/icons/line_duotone/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sunrise.svg b/assets/icons/line_duotone/sunrise.svg index 348c8494..aba208bd 100644 --- a/assets/icons/line_duotone/sunrise.svg +++ b/assets/icons/line_duotone/sunrise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/sunset.svg b/assets/icons/line_duotone/sunset.svg index 109ba254..491f193a 100644 --- a/assets/icons/line_duotone/sunset.svg +++ b/assets/icons/line_duotone/sunset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suspension-bolt.svg b/assets/icons/line_duotone/suspension-bolt.svg index 6fc03cd2..b5c78b92 100644 --- a/assets/icons/line_duotone/suspension-bolt.svg +++ b/assets/icons/line_duotone/suspension-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suspension-cross.svg b/assets/icons/line_duotone/suspension-cross.svg index 63188e85..e189d646 100644 --- a/assets/icons/line_duotone/suspension-cross.svg +++ b/assets/icons/line_duotone/suspension-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/suspension.svg b/assets/icons/line_duotone/suspension.svg index 3e22cd37..b25f0ea8 100644 --- a/assets/icons/line_duotone/suspension.svg +++ b/assets/icons/line_duotone/suspension.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/swimming.svg b/assets/icons/line_duotone/swimming.svg index 8ad222e2..abfeb12f 100644 --- a/assets/icons/line_duotone/swimming.svg +++ b/assets/icons/line_duotone/swimming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/syringe.svg b/assets/icons/line_duotone/syringe.svg index fd0f0cc7..07559e6a 100644 --- a/assets/icons/line_duotone/syringe.svg +++ b/assets/icons/line_duotone/syringe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/target.svg b/assets/icons/line_duotone/target.svg index a949cd78..7730f0a1 100644 --- a/assets/icons/line_duotone/target.svg +++ b/assets/icons/line_duotone/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tea-cup.svg b/assets/icons/line_duotone/tea-cup.svg index b60ccc16..65abb0f4 100644 --- a/assets/icons/line_duotone/tea-cup.svg +++ b/assets/icons/line_duotone/tea-cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/test-tube.svg b/assets/icons/line_duotone/test-tube.svg index dde33aed..0b5c66b6 100644 --- a/assets/icons/line_duotone/test-tube.svg +++ b/assets/icons/line_duotone/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-bold-circle.svg b/assets/icons/line_duotone/text-bold-circle.svg index 58bc9b7d..eff6dced 100644 --- a/assets/icons/line_duotone/text-bold-circle.svg +++ b/assets/icons/line_duotone/text-bold-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-bold-square.svg b/assets/icons/line_duotone/text-bold-square.svg index e9a0084a..997c1647 100644 --- a/assets/icons/line_duotone/text-bold-square.svg +++ b/assets/icons/line_duotone/text-bold-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-circle.svg b/assets/icons/line_duotone/text-circle.svg index 1ae465d6..a9209269 100644 --- a/assets/icons/line_duotone/text-circle.svg +++ b/assets/icons/line_duotone/text-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-cross-circle.svg b/assets/icons/line_duotone/text-cross-circle.svg index 0b3d4742..d5b7c28d 100644 --- a/assets/icons/line_duotone/text-cross-circle.svg +++ b/assets/icons/line_duotone/text-cross-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-cross-square.svg b/assets/icons/line_duotone/text-cross-square.svg index cf02ec2c..5f90bd1e 100644 --- a/assets/icons/line_duotone/text-cross-square.svg +++ b/assets/icons/line_duotone/text-cross-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-field-focus.svg b/assets/icons/line_duotone/text-field-focus.svg index 4dbef35a..9c857fc3 100644 --- a/assets/icons/line_duotone/text-field-focus.svg +++ b/assets/icons/line_duotone/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-field.svg b/assets/icons/line_duotone/text-field.svg index e23c904c..bafb8259 100644 --- a/assets/icons/line_duotone/text-field.svg +++ b/assets/icons/line_duotone/text-field.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text.svg b/assets/icons/line_duotone/text-format.svg similarity index 100% rename from assets/icons/line_duotone/text.svg rename to assets/icons/line_duotone/text-format.svg diff --git a/assets/icons/line_duotone/text-selection.svg b/assets/icons/line_duotone/text-selection.svg index 5a93aee2..bdb5d00f 100644 --- a/assets/icons/line_duotone/text-selection.svg +++ b/assets/icons/line_duotone/text-selection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-square-2.svg b/assets/icons/line_duotone/text-square-2.svg index b9747fab..178bdc74 100644 --- a/assets/icons/line_duotone/text-square-2.svg +++ b/assets/icons/line_duotone/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-square.svg b/assets/icons/line_duotone/text-square.svg index f7e22be1..1748615f 100644 --- a/assets/icons/line_duotone/text-square.svg +++ b/assets/icons/line_duotone/text-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-underline-circle.svg b/assets/icons/line_duotone/text-underline-circle.svg index 06d5256b..6f58cc5b 100644 --- a/assets/icons/line_duotone/text-underline-circle.svg +++ b/assets/icons/line_duotone/text-underline-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/text-underline-cross.svg b/assets/icons/line_duotone/text-underline-cross.svg index 24154680..71f15579 100644 --- a/assets/icons/line_duotone/text-underline-cross.svg +++ b/assets/icons/line_duotone/text-underline-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ticker-star.svg b/assets/icons/line_duotone/ticker-star.svg index 58677d1e..c1ef3b0e 100644 --- a/assets/icons/line_duotone/ticker-star.svg +++ b/assets/icons/line_duotone/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ticket-sale.svg b/assets/icons/line_duotone/ticket-sale.svg index 4b746971..f2e0f1de 100644 --- a/assets/icons/line_duotone/ticket-sale.svg +++ b/assets/icons/line_duotone/ticket-sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ticket.svg b/assets/icons/line_duotone/ticket.svg index dcc28230..5e06f4ff 100644 --- a/assets/icons/line_duotone/ticket.svg +++ b/assets/icons/line_duotone/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/to-pip.svg b/assets/icons/line_duotone/to-pip.svg index df0d3fd0..7d40c62e 100644 --- a/assets/icons/line_duotone/to-pip.svg +++ b/assets/icons/line_duotone/to-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tornado-small.svg b/assets/icons/line_duotone/tornado-small.svg index f1f47e08..f23d16ee 100644 --- a/assets/icons/line_duotone/tornado-small.svg +++ b/assets/icons/line_duotone/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tornado.svg b/assets/icons/line_duotone/tornado.svg index 2a3670af..b7bad952 100644 --- a/assets/icons/line_duotone/tornado.svg +++ b/assets/icons/line_duotone/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/traffic-economy.svg b/assets/icons/line_duotone/traffic-economy.svg index 22455f8e..7f82d319 100644 --- a/assets/icons/line_duotone/traffic-economy.svg +++ b/assets/icons/line_duotone/traffic-economy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tram.svg b/assets/icons/line_duotone/tram.svg index ec350b82..0b5ba9a2 100644 --- a/assets/icons/line_duotone/tram.svg +++ b/assets/icons/line_duotone/tram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/translation-2.svg b/assets/icons/line_duotone/translation-2.svg index 54df18aa..e1ee9e9c 100644 --- a/assets/icons/line_duotone/translation-2.svg +++ b/assets/icons/line_duotone/translation-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/translation.svg b/assets/icons/line_duotone/translation.svg index a91c8e37..52fa0ec8 100644 --- a/assets/icons/line_duotone/translation.svg +++ b/assets/icons/line_duotone/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/transmission-circle.svg b/assets/icons/line_duotone/transmission-circle.svg index b88ed3ae..578815f5 100644 --- a/assets/icons/line_duotone/transmission-circle.svg +++ b/assets/icons/line_duotone/transmission-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/transmission-square.svg b/assets/icons/line_duotone/transmission-square.svg index 6a44c13f..2661a1aa 100644 --- a/assets/icons/line_duotone/transmission-square.svg +++ b/assets/icons/line_duotone/transmission-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/transmission.svg b/assets/icons/line_duotone/transmission.svg index e5cc845d..2cb9651d 100644 --- a/assets/icons/line_duotone/transmission.svg +++ b/assets/icons/line_duotone/transmission.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/trash-bin-2.svg b/assets/icons/line_duotone/trash-bin-2.svg index 0bc45579..62f0125b 100644 --- a/assets/icons/line_duotone/trash-bin-2.svg +++ b/assets/icons/line_duotone/trash-bin-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/trash-bin-minimalistic-2.svg b/assets/icons/line_duotone/trash-bin-minimalistic-2.svg index 1e322ccc..d7a4aaf6 100644 --- a/assets/icons/line_duotone/trash-bin-minimalistic-2.svg +++ b/assets/icons/line_duotone/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/trash-bin-minimalistic.svg b/assets/icons/line_duotone/trash-bin-minimalistic.svg index fd0d0eae..24f479ed 100644 --- a/assets/icons/line_duotone/trash-bin-minimalistic.svg +++ b/assets/icons/line_duotone/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/trash-bin-trash.svg b/assets/icons/line_duotone/trash-bin-trash.svg index 37dca9d9..68f5f11b 100644 --- a/assets/icons/line_duotone/trash-bin-trash.svg +++ b/assets/icons/line_duotone/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/treadmill-round.svg b/assets/icons/line_duotone/treadmill-round.svg index 7a26ae67..75111090 100644 --- a/assets/icons/line_duotone/treadmill-round.svg +++ b/assets/icons/line_duotone/treadmill-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/treadmill.svg b/assets/icons/line_duotone/treadmill.svg index fd3e29ac..79136c83 100644 --- a/assets/icons/line_duotone/treadmill.svg +++ b/assets/icons/line_duotone/treadmill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning-2.svg b/assets/icons/line_duotone/tuning-2.svg index 38df6478..b1897605 100644 --- a/assets/icons/line_duotone/tuning-2.svg +++ b/assets/icons/line_duotone/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning-3.svg b/assets/icons/line_duotone/tuning-3.svg index 342c75c9..0e500fae 100644 --- a/assets/icons/line_duotone/tuning-3.svg +++ b/assets/icons/line_duotone/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning-4.svg b/assets/icons/line_duotone/tuning-4.svg index b027906b..927e265c 100644 --- a/assets/icons/line_duotone/tuning-4.svg +++ b/assets/icons/line_duotone/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning-square-2.svg b/assets/icons/line_duotone/tuning-square-2.svg index 86c681c6..1d0f9ef5 100644 --- a/assets/icons/line_duotone/tuning-square-2.svg +++ b/assets/icons/line_duotone/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning-square.svg b/assets/icons/line_duotone/tuning-square.svg index 5c7237ff..370ac3b3 100644 --- a/assets/icons/line_duotone/tuning-square.svg +++ b/assets/icons/line_duotone/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tuning.svg b/assets/icons/line_duotone/tuning.svg index 18317bb5..ac77ff6a 100644 --- a/assets/icons/line_duotone/tuning.svg +++ b/assets/icons/line_duotone/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/turntable-music-note.svg b/assets/icons/line_duotone/turntable-music-note.svg index 89c246ec..ca45da0b 100644 --- a/assets/icons/line_duotone/turntable-music-note.svg +++ b/assets/icons/line_duotone/turntable-music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/turntable.svg b/assets/icons/line_duotone/turntable.svg index b91d49d5..a541307b 100644 --- a/assets/icons/line_duotone/turntable.svg +++ b/assets/icons/line_duotone/turntable.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/tv.svg b/assets/icons/line_duotone/tv.svg index 7b4c1ee4..942bd9b2 100644 --- a/assets/icons/line_duotone/tv.svg +++ b/assets/icons/line_duotone/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ufo-2.svg b/assets/icons/line_duotone/ufo-2.svg index db9aaf4a..f524a264 100644 --- a/assets/icons/line_duotone/ufo-2.svg +++ b/assets/icons/line_duotone/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ufo-3.svg b/assets/icons/line_duotone/ufo-3.svg index 8ec65253..25de39a3 100644 --- a/assets/icons/line_duotone/ufo-3.svg +++ b/assets/icons/line_duotone/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/ufo.svg b/assets/icons/line_duotone/ufo.svg index 0a69df55..ddf76cc9 100644 --- a/assets/icons/line_duotone/ufo.svg +++ b/assets/icons/line_duotone/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/umbrella.svg b/assets/icons/line_duotone/umbrella.svg index 7badf3e8..e08d25eb 100644 --- a/assets/icons/line_duotone/umbrella.svg +++ b/assets/icons/line_duotone/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/undo-left-round-square.svg b/assets/icons/line_duotone/undo-left-round-square.svg index b41c7381..00e3a998 100644 --- a/assets/icons/line_duotone/undo-left-round-square.svg +++ b/assets/icons/line_duotone/undo-left-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/undo-left-square.svg b/assets/icons/line_duotone/undo-left-square.svg index a2bfd913..6d8b8618 100644 --- a/assets/icons/line_duotone/undo-left-square.svg +++ b/assets/icons/line_duotone/undo-left-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/undo-right-round-square.svg b/assets/icons/line_duotone/undo-right-round-square.svg index 3bb153cd..8ef7b0da 100644 --- a/assets/icons/line_duotone/undo-right-round-square.svg +++ b/assets/icons/line_duotone/undo-right-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/undo-right-square.svg b/assets/icons/line_duotone/undo-right-square.svg index 6f470c72..ffadf547 100644 --- a/assets/icons/line_duotone/undo-right-square.svg +++ b/assets/icons/line_duotone/undo-right-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/unlink-minimalistic.svg b/assets/icons/line_duotone/unlink-minimalistic.svg new file mode 100644 index 00000000..97b8b415 --- /dev/null +++ b/assets/icons/line_duotone/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/unlink.svg b/assets/icons/line_duotone/unlink.svg new file mode 100644 index 00000000..7ef172ea --- /dev/null +++ b/assets/icons/line_duotone/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload-minimalistic.svg b/assets/icons/line_duotone/upload-minimalistic.svg index 24aa2520..e3b14a4a 100644 --- a/assets/icons/line_duotone/upload-minimalistic.svg +++ b/assets/icons/line_duotone/upload-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload-square.svg b/assets/icons/line_duotone/upload-square.svg index 2face55b..841086f4 100644 --- a/assets/icons/line_duotone/upload-square.svg +++ b/assets/icons/line_duotone/upload-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload-track-2.svg b/assets/icons/line_duotone/upload-track-2.svg index a7c6a9c3..69bbe83e 100644 --- a/assets/icons/line_duotone/upload-track-2.svg +++ b/assets/icons/line_duotone/upload-track-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload-track.svg b/assets/icons/line_duotone/upload-track.svg index 17e431bc..aab47c04 100644 --- a/assets/icons/line_duotone/upload-track.svg +++ b/assets/icons/line_duotone/upload-track.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload-twice-square.svg b/assets/icons/line_duotone/upload-twice-square.svg index 660e2b91..c1e09fee 100644 --- a/assets/icons/line_duotone/upload-twice-square.svg +++ b/assets/icons/line_duotone/upload-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/upload.svg b/assets/icons/line_duotone/upload.svg index 0399caa2..71d74a77 100644 --- a/assets/icons/line_duotone/upload.svg +++ b/assets/icons/line_duotone/upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/usb-circle.svg b/assets/icons/line_duotone/usb-circle.svg index 856e0ee5..1024542d 100644 --- a/assets/icons/line_duotone/usb-circle.svg +++ b/assets/icons/line_duotone/usb-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/usb-square.svg b/assets/icons/line_duotone/usb-square.svg index 88a64133..a594d7fd 100644 --- a/assets/icons/line_duotone/usb-square.svg +++ b/assets/icons/line_duotone/usb-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-block.svg b/assets/icons/line_duotone/user-block.svg index 8194462f..6aa28855 100644 --- a/assets/icons/line_duotone/user-block.svg +++ b/assets/icons/line_duotone/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-hand-up.svg b/assets/icons/line_duotone/user-hand-up.svg index 45cca10f..25507f02 100644 --- a/assets/icons/line_duotone/user-hand-up.svg +++ b/assets/icons/line_duotone/user-hand-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-heart-rounded.svg b/assets/icons/line_duotone/user-heart-rounded.svg index 693e7753..d8a600aa 100644 --- a/assets/icons/line_duotone/user-heart-rounded.svg +++ b/assets/icons/line_duotone/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-heart.svg b/assets/icons/line_duotone/user-heart.svg index a2b65d6a..c00f0435 100644 --- a/assets/icons/line_duotone/user-heart.svg +++ b/assets/icons/line_duotone/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-id.svg b/assets/icons/line_duotone/user-id.svg index 2f6ce7b0..ec8aa06d 100644 --- a/assets/icons/line_duotone/user-id.svg +++ b/assets/icons/line_duotone/user-id.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-plus-rounded.svg b/assets/icons/line_duotone/user-plus-rounded.svg index a4aae8ad..ef264f61 100644 --- a/assets/icons/line_duotone/user-plus-rounded.svg +++ b/assets/icons/line_duotone/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-plus.svg b/assets/icons/line_duotone/user-plus.svg index 57c8fcb7..b4ed3c5e 100644 --- a/assets/icons/line_duotone/user-plus.svg +++ b/assets/icons/line_duotone/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-speak-rounded.svg b/assets/icons/line_duotone/user-speak-rounded.svg index 36b2dc18..6d46b973 100644 --- a/assets/icons/line_duotone/user-speak-rounded.svg +++ b/assets/icons/line_duotone/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/user-speak.svg b/assets/icons/line_duotone/user-speak.svg index 2b0d2e37..dfe718b4 100644 --- a/assets/icons/line_duotone/user-speak.svg +++ b/assets/icons/line_duotone/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/users-group-two-rounded.svg b/assets/icons/line_duotone/users-group-two-rounded.svg index 0e51b858..c984caf8 100644 --- a/assets/icons/line_duotone/users-group-two-rounded.svg +++ b/assets/icons/line_duotone/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/vanity.svg b/assets/icons/line_duotone/vanity.svg new file mode 100644 index 00000000..285716e5 --- /dev/null +++ b/assets/icons/line_duotone/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/video-frame-2.svg b/assets/icons/line_duotone/video-frame-2.svg index 4a48aea2..a17306e0 100644 --- a/assets/icons/line_duotone/video-frame-2.svg +++ b/assets/icons/line_duotone/video-frame-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/video-frame-cut-2.svg b/assets/icons/line_duotone/video-frame-cut-2.svg index 9fc5e7b6..3b58be4f 100644 --- a/assets/icons/line_duotone/video-frame-cut-2.svg +++ b/assets/icons/line_duotone/video-frame-cut-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/video-frame-play-vertical.svg b/assets/icons/line_duotone/video-frame-play-vertical.svg index 6c0a664c..98aa5c8f 100644 --- a/assets/icons/line_duotone/video-frame-play-vertical.svg +++ b/assets/icons/line_duotone/video-frame-play-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/video-frame-replace.svg b/assets/icons/line_duotone/video-frame-replace.svg index 1a3511a1..d4ace73e 100644 --- a/assets/icons/line_duotone/video-frame-replace.svg +++ b/assets/icons/line_duotone/video-frame-replace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/videocamera-record.svg b/assets/icons/line_duotone/videocamera-record.svg index 61cdb515..bc80cbd9 100644 --- a/assets/icons/line_duotone/videocamera-record.svg +++ b/assets/icons/line_duotone/videocamera-record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/vinyl.svg b/assets/icons/line_duotone/vinyl.svg index ce099718..0f8bc409 100644 --- a/assets/icons/line_duotone/vinyl.svg +++ b/assets/icons/line_duotone/vinyl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/virus.svg b/assets/icons/line_duotone/virus.svg index 2be9b5e8..c92247f2 100644 --- a/assets/icons/line_duotone/virus.svg +++ b/assets/icons/line_duotone/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/volleyball-2.svg b/assets/icons/line_duotone/volleyball-2.svg index 65b7d0fa..dbc62672 100644 --- a/assets/icons/line_duotone/volleyball-2.svg +++ b/assets/icons/line_duotone/volleyball-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/volleyball.svg b/assets/icons/line_duotone/volleyball.svg index ea848c21..4f24bf7f 100644 --- a/assets/icons/line_duotone/volleyball.svg +++ b/assets/icons/line_duotone/volleyball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/volume-cross.svg b/assets/icons/line_duotone/volume-cross.svg index 24e95deb..78f86ab6 100644 --- a/assets/icons/line_duotone/volume-cross.svg +++ b/assets/icons/line_duotone/volume-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/volume-knob.svg b/assets/icons/line_duotone/volume-knob.svg index 5f418945..7ade4629 100644 --- a/assets/icons/line_duotone/volume-knob.svg +++ b/assets/icons/line_duotone/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/volume-loud.svg b/assets/icons/line_duotone/volume-loud.svg index d631ac97..8e2d8226 100644 --- a/assets/icons/line_duotone/volume-loud.svg +++ b/assets/icons/line_duotone/volume-loud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/walking-round.svg b/assets/icons/line_duotone/walking-round.svg index 6ce3b60b..a59709f0 100644 --- a/assets/icons/line_duotone/walking-round.svg +++ b/assets/icons/line_duotone/walking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/walking.svg b/assets/icons/line_duotone/walking.svg index d9f8351a..e78873f1 100644 --- a/assets/icons/line_duotone/walking.svg +++ b/assets/icons/line_duotone/walking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wallet-2.svg b/assets/icons/line_duotone/wallet-2.svg index 2142aca9..e202dbf8 100644 --- a/assets/icons/line_duotone/wallet-2.svg +++ b/assets/icons/line_duotone/wallet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wallet-money.svg b/assets/icons/line_duotone/wallet-money.svg index 2f68d6ea..5f414c8b 100644 --- a/assets/icons/line_duotone/wallet-money.svg +++ b/assets/icons/line_duotone/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wallet.svg b/assets/icons/line_duotone/wallet.svg index 62c7f53c..0cb5f31d 100644 --- a/assets/icons/line_duotone/wallet.svg +++ b/assets/icons/line_duotone/wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wallpaper.svg b/assets/icons/line_duotone/wallpaper.svg index e15c8661..da45ccb6 100644 --- a/assets/icons/line_duotone/wallpaper.svg +++ b/assets/icons/line_duotone/wallpaper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/washing-machine-minimalistic.svg b/assets/icons/line_duotone/washing-machine-minimalistic.svg index 5d588e6c..ac3c7142 100644 --- a/assets/icons/line_duotone/washing-machine-minimalistic.svg +++ b/assets/icons/line_duotone/washing-machine-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/washing-machine.svg b/assets/icons/line_duotone/washing-machine.svg index 81d281fc..3ce95df3 100644 --- a/assets/icons/line_duotone/washing-machine.svg +++ b/assets/icons/line_duotone/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/watch-round.svg b/assets/icons/line_duotone/watch-round.svg index a34c237e..930bf026 100644 --- a/assets/icons/line_duotone/watch-round.svg +++ b/assets/icons/line_duotone/watch-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/watch-square-minimalistic-charge.svg b/assets/icons/line_duotone/watch-square-minimalistic-charge.svg index 811ceaea..b6533ddb 100644 --- a/assets/icons/line_duotone/watch-square-minimalistic-charge.svg +++ b/assets/icons/line_duotone/watch-square-minimalistic-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/watch-square-minimalistic.svg b/assets/icons/line_duotone/watch-square-minimalistic.svg index 300e8997..940fcdf0 100644 --- a/assets/icons/line_duotone/watch-square-minimalistic.svg +++ b/assets/icons/line_duotone/watch-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/watch-square.svg b/assets/icons/line_duotone/watch-square.svg index 630d9dcc..afc15258 100644 --- a/assets/icons/line_duotone/watch-square.svg +++ b/assets/icons/line_duotone/watch-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/water-sun.svg b/assets/icons/line_duotone/water-sun.svg index 97b29933..13b9d511 100644 --- a/assets/icons/line_duotone/water-sun.svg +++ b/assets/icons/line_duotone/water-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/water.svg b/assets/icons/line_duotone/water.svg index af4a9e4c..9e8c5a92 100644 --- a/assets/icons/line_duotone/water.svg +++ b/assets/icons/line_duotone/water.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/waterdrops.svg b/assets/icons/line_duotone/waterdrops.svg index 8725e035..e4ec90f0 100644 --- a/assets/icons/line_duotone/waterdrops.svg +++ b/assets/icons/line_duotone/waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/weigher.svg b/assets/icons/line_duotone/weigher.svg deleted file mode 100644 index e52046ee..00000000 --- a/assets/icons/line_duotone/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/wheel-angle.svg b/assets/icons/line_duotone/wheel-angle.svg index a1bc4ee9..012192e2 100644 --- a/assets/icons/line_duotone/wheel-angle.svg +++ b/assets/icons/line_duotone/wheel-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wheel.svg b/assets/icons/line_duotone/wheel.svg index 4880d9f4..7157c052 100644 --- a/assets/icons/line_duotone/wheel.svg +++ b/assets/icons/line_duotone/wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wi-fi-router-minimalistic.svg b/assets/icons/line_duotone/wi-fi-router-minimalistic.svg index 06f2e7fb..84beab81 100644 --- a/assets/icons/line_duotone/wi-fi-router-minimalistic.svg +++ b/assets/icons/line_duotone/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wi-fi-router-round.svg b/assets/icons/line_duotone/wi-fi-router-round.svg index 5826550e..1521a8fe 100644 --- a/assets/icons/line_duotone/wi-fi-router-round.svg +++ b/assets/icons/line_duotone/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wi-fi-router.svg b/assets/icons/line_duotone/wi-fi-router.svg index 377ad72e..f6c0c617 100644 --- a/assets/icons/line_duotone/wi-fi-router.svg +++ b/assets/icons/line_duotone/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget-3.svg b/assets/icons/line_duotone/widget-3.svg index a8fa3b7f..895c9102 100644 --- a/assets/icons/line_duotone/widget-3.svg +++ b/assets/icons/line_duotone/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget-4.svg b/assets/icons/line_duotone/widget-4.svg index 59c6e6d5..9b29f80d 100644 --- a/assets/icons/line_duotone/widget-4.svg +++ b/assets/icons/line_duotone/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget-5.svg b/assets/icons/line_duotone/widget-5.svg index 62e4aafa..a548670d 100644 --- a/assets/icons/line_duotone/widget-5.svg +++ b/assets/icons/line_duotone/widget-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget-6.svg b/assets/icons/line_duotone/widget-6.svg index f5c9d01e..a0188c70 100644 --- a/assets/icons/line_duotone/widget-6.svg +++ b/assets/icons/line_duotone/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget-add.svg b/assets/icons/line_duotone/widget-add.svg index 85b22fd1..08ca5a6c 100644 --- a/assets/icons/line_duotone/widget-add.svg +++ b/assets/icons/line_duotone/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/widget.svg b/assets/icons/line_duotone/widget.svg index 0f9df325..78321cdd 100644 --- a/assets/icons/line_duotone/widget.svg +++ b/assets/icons/line_duotone/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/win-rar.svg b/assets/icons/line_duotone/win-rar.svg new file mode 100644 index 00000000..f5d239ac --- /dev/null +++ b/assets/icons/line_duotone/win-rar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/wind.svg b/assets/icons/line_duotone/wind.svg index 7374f7b7..e7e59790 100644 --- a/assets/icons/line_duotone/wind.svg +++ b/assets/icons/line_duotone/wind.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/window-frame.svg b/assets/icons/line_duotone/window-frame.svg index 9edc4bc2..fc07195c 100644 --- a/assets/icons/line_duotone/window-frame.svg +++ b/assets/icons/line_duotone/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wineglass-triangle.svg b/assets/icons/line_duotone/wineglass-triangle.svg index a9248f2b..fff5eaef 100644 --- a/assets/icons/line_duotone/wineglass-triangle.svg +++ b/assets/icons/line_duotone/wineglass-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wineglass.svg b/assets/icons/line_duotone/wineglass.svg index 03077a17..2af44086 100644 --- a/assets/icons/line_duotone/wineglass.svg +++ b/assets/icons/line_duotone/wineglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/winrar.svg b/assets/icons/line_duotone/winrar.svg deleted file mode 100644 index ff93b7eb..00000000 --- a/assets/icons/line_duotone/winrar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/wireless-charge.svg b/assets/icons/line_duotone/wireless-charge.svg index 68184690..e04a1d4c 100644 --- a/assets/icons/line_duotone/wireless-charge.svg +++ b/assets/icons/line_duotone/wireless-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/women.svg b/assets/icons/line_duotone/women.svg index 302d8a89..968f8c7d 100644 --- a/assets/icons/line_duotone/women.svg +++ b/assets/icons/line_duotone/women.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/zip-file.svg b/assets/icons/line_duotone/zip-file.svg index e7e4a891..28daf3f4 100644 --- a/assets/icons/line_duotone/zip-file.svg +++ b/assets/icons/line_duotone/zip-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/accessibility.svg b/assets/icons/linear/accessibility.svg index df55c777..90876bfa 100644 --- a/assets/icons/linear/accessibility.svg +++ b/assets/icons/linear/accessibility.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/adhesive-plaster-2.svg b/assets/icons/linear/adhesive-plaster-2.svg index ebc3951b..f797b285 100644 --- a/assets/icons/linear/adhesive-plaster-2.svg +++ b/assets/icons/linear/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/adhesive-plaster.svg b/assets/icons/linear/adhesive-plaster.svg index b1d0cfad..58ef37a0 100644 --- a/assets/icons/linear/adhesive-plaster.svg +++ b/assets/icons/linear/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-case-open.svg b/assets/icons/linear/airbuds-case-open.svg index 444b2986..5f5c9470 100644 --- a/assets/icons/linear/airbuds-case-open.svg +++ b/assets/icons/linear/airbuds-case-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-case.svg b/assets/icons/linear/airbuds-case.svg index 85991c79..ce29aacc 100644 --- a/assets/icons/linear/airbuds-case.svg +++ b/assets/icons/linear/airbuds-case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-charge.svg b/assets/icons/linear/airbuds-charge.svg index 16178905..0ecc1eea 100644 --- a/assets/icons/linear/airbuds-charge.svg +++ b/assets/icons/linear/airbuds-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-check.svg b/assets/icons/linear/airbuds-check.svg index 98703544..c2be6b6c 100644 --- a/assets/icons/linear/airbuds-check.svg +++ b/assets/icons/linear/airbuds-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-left.svg b/assets/icons/linear/airbuds-left.svg index a06ebb12..e1ed6f22 100644 --- a/assets/icons/linear/airbuds-left.svg +++ b/assets/icons/linear/airbuds-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-remove.svg b/assets/icons/linear/airbuds-remove.svg index cc296403..e620d6f0 100644 --- a/assets/icons/linear/airbuds-remove.svg +++ b/assets/icons/linear/airbuds-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds-right.svg b/assets/icons/linear/airbuds-right.svg index 2f1c6036..04f3506c 100644 --- a/assets/icons/linear/airbuds-right.svg +++ b/assets/icons/linear/airbuds-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/airbuds.svg b/assets/icons/linear/airbuds.svg index de8b4b8c..0cf7f9c2 100644 --- a/assets/icons/linear/airbuds.svg +++ b/assets/icons/linear/airbuds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-add.svg b/assets/icons/linear/alarm-add.svg index 681f7ad0..4977e8fa 100644 --- a/assets/icons/linear/alarm-add.svg +++ b/assets/icons/linear/alarm-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-pause.svg b/assets/icons/linear/alarm-pause.svg index 11438917..8396df31 100644 --- a/assets/icons/linear/alarm-pause.svg +++ b/assets/icons/linear/alarm-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-play.svg b/assets/icons/linear/alarm-play.svg index 76f4dfa0..50d996f1 100644 --- a/assets/icons/linear/alarm-play.svg +++ b/assets/icons/linear/alarm-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-remove.svg b/assets/icons/linear/alarm-remove.svg index ca56bc39..bf003d4c 100644 --- a/assets/icons/linear/alarm-remove.svg +++ b/assets/icons/linear/alarm-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-sleep.svg b/assets/icons/linear/alarm-sleep.svg index 60104f8c..d2d451a1 100644 --- a/assets/icons/linear/alarm-sleep.svg +++ b/assets/icons/linear/alarm-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm-turn-off.svg b/assets/icons/linear/alarm-turn-off.svg index 6368e41d..742e8c0c 100644 --- a/assets/icons/linear/alarm-turn-off.svg +++ b/assets/icons/linear/alarm-turn-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/alarm.svg b/assets/icons/linear/alarm.svg index 84ace85d..a4bf9ace 100644 --- a/assets/icons/linear/alarm.svg +++ b/assets/icons/linear/alarm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/album.svg b/assets/icons/linear/album.svg index ff0254de..74ee3d82 100644 --- a/assets/icons/linear/album.svg +++ b/assets/icons/linear/album.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-bottom.svg b/assets/icons/linear/align-bottom.svg index 6da4470f..1341d94f 100644 --- a/assets/icons/linear/align-bottom.svg +++ b/assets/icons/linear/align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-horizonta-spacing.svg b/assets/icons/linear/align-horizonta-spacing.svg deleted file mode 100644 index db77cde8..00000000 --- a/assets/icons/linear/align-horizonta-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/align-horizontal-center.svg b/assets/icons/linear/align-horizontal-center.svg index ece54799..222127be 100644 --- a/assets/icons/linear/align-horizontal-center.svg +++ b/assets/icons/linear/align-horizontal-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-horizontal-spacing.svg b/assets/icons/linear/align-horizontal-spacing.svg new file mode 100644 index 00000000..43d45c6e --- /dev/null +++ b/assets/icons/linear/align-horizontal-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/align-left.svg b/assets/icons/linear/align-left.svg index dfed82dc..e125126a 100644 --- a/assets/icons/linear/align-left.svg +++ b/assets/icons/linear/align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-right.svg b/assets/icons/linear/align-right.svg index e8bddf01..83cb1660 100644 --- a/assets/icons/linear/align-right.svg +++ b/assets/icons/linear/align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-top.svg b/assets/icons/linear/align-top.svg index 09460cc2..ca6831bf 100644 --- a/assets/icons/linear/align-top.svg +++ b/assets/icons/linear/align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-vertical-center.svg b/assets/icons/linear/align-vertical-center.svg index 2ac9b75d..2ebfe2d4 100644 --- a/assets/icons/linear/align-vertical-center.svg +++ b/assets/icons/linear/align-vertical-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/align-vertical-spacing.svg b/assets/icons/linear/align-vertical-spacing.svg index 5f28d99b..e6b771ee 100644 --- a/assets/icons/linear/align-vertical-spacing.svg +++ b/assets/icons/linear/align-vertical-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/archive-down-minimlistic.svg b/assets/icons/linear/archive-down-minimalistic.svg similarity index 85% rename from assets/icons/linear/archive-down-minimlistic.svg rename to assets/icons/linear/archive-down-minimalistic.svg index 95ce4264..36682e10 100644 --- a/assets/icons/linear/archive-down-minimlistic.svg +++ b/assets/icons/linear/archive-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/archive-down.svg b/assets/icons/linear/archive-down.svg index f690cba7..1e0fc559 100644 --- a/assets/icons/linear/archive-down.svg +++ b/assets/icons/linear/archive-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/archive-up-minimlistic.svg b/assets/icons/linear/archive-up-minimalistic.svg similarity index 85% rename from assets/icons/linear/archive-up-minimlistic.svg rename to assets/icons/linear/archive-up-minimalistic.svg index bfe26adf..763abd60 100644 --- a/assets/icons/linear/archive-up-minimlistic.svg +++ b/assets/icons/linear/archive-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/archive-up.svg b/assets/icons/linear/archive-up.svg index 4205bd0b..d95f17b1 100644 --- a/assets/icons/linear/archive-up.svg +++ b/assets/icons/linear/archive-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-down.svg b/assets/icons/linear/arrow-down.svg index 4e5be542..763913b1 100644 --- a/assets/icons/linear/arrow-down.svg +++ b/assets/icons/linear/arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-left-down.svg b/assets/icons/linear/arrow-left-down.svg index 49cf56cc..3949bcaa 100644 --- a/assets/icons/linear/arrow-left-down.svg +++ b/assets/icons/linear/arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-left-up.svg b/assets/icons/linear/arrow-left-up.svg index 22eb13b8..72579b07 100644 --- a/assets/icons/linear/arrow-left-up.svg +++ b/assets/icons/linear/arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-left.svg b/assets/icons/linear/arrow-left.svg index 57de2fcd..c767e0be 100644 --- a/assets/icons/linear/arrow-left.svg +++ b/assets/icons/linear/arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-right-down.svg b/assets/icons/linear/arrow-right-down.svg index 76d0866f..bc049299 100644 --- a/assets/icons/linear/arrow-right-down.svg +++ b/assets/icons/linear/arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-right-up.svg b/assets/icons/linear/arrow-right-up.svg index 844cd065..d1d20d73 100644 --- a/assets/icons/linear/arrow-right-up.svg +++ b/assets/icons/linear/arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-right.svg b/assets/icons/linear/arrow-right.svg index 2d0fe1c4..ba56cb1d 100644 --- a/assets/icons/linear/arrow-right.svg +++ b/assets/icons/linear/arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-to-down-left.svg b/assets/icons/linear/arrow-to-down-left.svg index 1a0c4298..c9b7db3a 100644 --- a/assets/icons/linear/arrow-to-down-left.svg +++ b/assets/icons/linear/arrow-to-down-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-to-down-right.svg b/assets/icons/linear/arrow-to-down-right.svg index fb2bcc30..72083bed 100644 --- a/assets/icons/linear/arrow-to-down-right.svg +++ b/assets/icons/linear/arrow-to-down-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-to-top-left.svg b/assets/icons/linear/arrow-to-top-left.svg index 17fbb66f..13e78e90 100644 --- a/assets/icons/linear/arrow-to-top-left.svg +++ b/assets/icons/linear/arrow-to-top-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-to-top-right.svg b/assets/icons/linear/arrow-to-top-right.svg index b410212c..ed8b6f0b 100644 --- a/assets/icons/linear/arrow-to-top-right.svg +++ b/assets/icons/linear/arrow-to-top-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/arrow-up.svg b/assets/icons/linear/arrow-up.svg index 9d7e3907..5f7b665a 100644 --- a/assets/icons/linear/arrow-up.svg +++ b/assets/icons/linear/arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/asteroid.svg b/assets/icons/linear/asteroid.svg index f9613ff1..32e81e67 100644 --- a/assets/icons/linear/asteroid.svg +++ b/assets/icons/linear/asteroid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/augmented-reality.svg b/assets/icons/linear/augmented-reality.svg index af3a0601..dc847c9c 100644 --- a/assets/icons/linear/augmented-reality.svg +++ b/assets/icons/linear/augmented-reality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/backpack.svg b/assets/icons/linear/backpack.svg index e0abc244..1adfecf5 100644 --- a/assets/icons/linear/backpack.svg +++ b/assets/icons/linear/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bacteria.svg b/assets/icons/linear/bacteria.svg index 2bfdc7f8..4f7b2444 100644 --- a/assets/icons/linear/bacteria.svg +++ b/assets/icons/linear/bacteria.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-2.svg b/assets/icons/linear/bag-2.svg index cfada46f..6675b9de 100644 --- a/assets/icons/linear/bag-2.svg +++ b/assets/icons/linear/bag-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-3.svg b/assets/icons/linear/bag-3.svg index 738e6050..f68f3591 100644 --- a/assets/icons/linear/bag-3.svg +++ b/assets/icons/linear/bag-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-4.svg b/assets/icons/linear/bag-4.svg index bedd469e..eecf15fa 100644 --- a/assets/icons/linear/bag-4.svg +++ b/assets/icons/linear/bag-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-5.svg b/assets/icons/linear/bag-5.svg index 481974a2..3bdeee81 100644 --- a/assets/icons/linear/bag-5.svg +++ b/assets/icons/linear/bag-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-check.svg b/assets/icons/linear/bag-check.svg index e3650f28..3021e9f5 100644 --- a/assets/icons/linear/bag-check.svg +++ b/assets/icons/linear/bag-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-cross.svg b/assets/icons/linear/bag-cross.svg index 9e12ee04..2cdcd5aa 100644 --- a/assets/icons/linear/bag-cross.svg +++ b/assets/icons/linear/bag-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-heart.svg b/assets/icons/linear/bag-heart.svg index 1ba53612..1b96eb22 100644 --- a/assets/icons/linear/bag-heart.svg +++ b/assets/icons/linear/bag-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-music-2.svg b/assets/icons/linear/bag-music-2.svg index cc5cafa9..f6d5eb6d 100644 --- a/assets/icons/linear/bag-music-2.svg +++ b/assets/icons/linear/bag-music-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-music.svg b/assets/icons/linear/bag-music.svg index 19890e68..a1d11a55 100644 --- a/assets/icons/linear/bag-music.svg +++ b/assets/icons/linear/bag-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag-smile.svg b/assets/icons/linear/bag-smile.svg index 49605829..11ce056c 100644 --- a/assets/icons/linear/bag-smile.svg +++ b/assets/icons/linear/bag-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bag.svg b/assets/icons/linear/bag.svg index 55c36040..30145e91 100644 --- a/assets/icons/linear/bag.svg +++ b/assets/icons/linear/bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/balloon.svg b/assets/icons/linear/balloon.svg index fe5a433f..3901c541 100644 --- a/assets/icons/linear/balloon.svg +++ b/assets/icons/linear/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/balls.svg b/assets/icons/linear/balls.svg index b8bc2ccc..c6eaad05 100644 --- a/assets/icons/linear/balls.svg +++ b/assets/icons/linear/balls.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/banknote-2.svg b/assets/icons/linear/banknote-2.svg index 48eb52db..000a2f82 100644 --- a/assets/icons/linear/banknote-2.svg +++ b/assets/icons/linear/banknote-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/banknote.svg b/assets/icons/linear/banknote.svg index 6963b76c..33a8740c 100644 --- a/assets/icons/linear/banknote.svg +++ b/assets/icons/linear/banknote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bar-chair.svg b/assets/icons/linear/bar-chair.svg index c0e36def..209e5b07 100644 --- a/assets/icons/linear/bar-chair.svg +++ b/assets/icons/linear/bar-chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/basketball.svg b/assets/icons/linear/basketball.svg index fb84644d..aba872dc 100644 --- a/assets/icons/linear/basketball.svg +++ b/assets/icons/linear/basketball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bath.svg b/assets/icons/linear/bath.svg index 2a7868a6..705ff2ac 100644 --- a/assets/icons/linear/bath.svg +++ b/assets/icons/linear/bath.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-charge.svg b/assets/icons/linear/battery-charge.svg index 76acf1e1..7fb90284 100644 --- a/assets/icons/linear/battery-charge.svg +++ b/assets/icons/linear/battery-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-full-minimalistic.svg b/assets/icons/linear/battery-full-minimalistic.svg index 4166c542..a87fb681 100644 --- a/assets/icons/linear/battery-full-minimalistic.svg +++ b/assets/icons/linear/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-full.svg b/assets/icons/linear/battery-full.svg index 405902ca..7877bc06 100644 --- a/assets/icons/linear/battery-full.svg +++ b/assets/icons/linear/battery-full.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-half-minimalistic.svg b/assets/icons/linear/battery-half-minimalistic.svg index adcd397b..842293fb 100644 --- a/assets/icons/linear/battery-half-minimalistic.svg +++ b/assets/icons/linear/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-half.svg b/assets/icons/linear/battery-half.svg index baf51e3c..43b46a23 100644 --- a/assets/icons/linear/battery-half.svg +++ b/assets/icons/linear/battery-half.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/battery-low-minimalistic.svg b/assets/icons/linear/battery-low-minimalistic.svg index fdfc478f..ce311496 100644 --- a/assets/icons/linear/battery-low-minimalistic.svg +++ b/assets/icons/linear/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bed.svg b/assets/icons/linear/bed.svg index c930c0e3..635d109f 100644 --- a/assets/icons/linear/bed.svg +++ b/assets/icons/linear/bed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bedside-table-2.svg b/assets/icons/linear/bedside-table-2.svg index 60f1ea4e..3c2e2633 100644 --- a/assets/icons/linear/bedside-table-2.svg +++ b/assets/icons/linear/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bedside-table-3.svg b/assets/icons/linear/bedside-table-3.svg index 443a6aa7..bc78794c 100644 --- a/assets/icons/linear/bedside-table-3.svg +++ b/assets/icons/linear/bedside-table-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bedside-table-4.svg b/assets/icons/linear/bedside-table-4.svg index 7319cbed..4145f86e 100644 --- a/assets/icons/linear/bedside-table-4.svg +++ b/assets/icons/linear/bedside-table-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bedside-table.svg b/assets/icons/linear/bedside-table.svg index eba9efb9..cb8dc6a1 100644 --- a/assets/icons/linear/bedside-table.svg +++ b/assets/icons/linear/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/bell-bing.svg b/assets/icons/linear/bell-ring.svg similarity index 89% rename from assets/icons/line_duotone/bell-bing.svg rename to assets/icons/linear/bell-ring.svg index c8a2ec60..2738ff64 100644 --- a/assets/icons/line_duotone/bell-bing.svg +++ b/assets/icons/linear/bell-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/benzene-ring.svg b/assets/icons/linear/benzene-ring.svg index eb62ff4a..d7c2f271 100644 --- a/assets/icons/linear/benzene-ring.svg +++ b/assets/icons/linear/benzene-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bill-2.svg b/assets/icons/linear/bill-2.svg new file mode 100644 index 00000000..3fbcabfa --- /dev/null +++ b/assets/icons/linear/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/bill-cross.svg b/assets/icons/linear/bill-cross.svg index 5676becf..7c194041 100644 --- a/assets/icons/linear/bill-cross.svg +++ b/assets/icons/linear/bill-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bill-list.svg b/assets/icons/linear/bill-list.svg index b9424b05..b34daf5e 100644 --- a/assets/icons/linear/bill-list.svg +++ b/assets/icons/linear/bill-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bill.svg b/assets/icons/linear/bill.svg index 1a2c536a..55b8fd9b 100644 --- a/assets/icons/linear/bill.svg +++ b/assets/icons/linear/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bluetooth-circle.svg b/assets/icons/linear/bluetooth-circle.svg index 8ea9381c..406e2509 100644 --- a/assets/icons/linear/bluetooth-circle.svg +++ b/assets/icons/linear/bluetooth-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bluetooth-square.svg b/assets/icons/linear/bluetooth-square.svg index 7287636a..8206c14e 100644 --- a/assets/icons/linear/bluetooth-square.svg +++ b/assets/icons/linear/bluetooth-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bluetooth-wave.svg b/assets/icons/linear/bluetooth-wave.svg index b84be94f..c9ddb2f2 100644 --- a/assets/icons/linear/bluetooth-wave.svg +++ b/assets/icons/linear/bluetooth-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bluetooth.svg b/assets/icons/linear/bluetooth.svg index 8b48b3b6..620badc4 100644 --- a/assets/icons/linear/bluetooth.svg +++ b/assets/icons/linear/bluetooth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/body-shape-minimalistic.svg b/assets/icons/linear/body-shape-minimalistic.svg index 85fdfd86..e5b23691 100644 --- a/assets/icons/linear/body-shape-minimalistic.svg +++ b/assets/icons/linear/body-shape-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/body-shape.svg b/assets/icons/linear/body-shape.svg index 76d3e0a8..2cd10c85 100644 --- a/assets/icons/linear/body-shape.svg +++ b/assets/icons/linear/body-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bomb-emoji.svg b/assets/icons/linear/bomb-emoji.svg index 0f09155e..c1573e1a 100644 --- a/assets/icons/linear/bomb-emoji.svg +++ b/assets/icons/linear/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bomb-minimalistic.svg b/assets/icons/linear/bomb-minimalistic.svg index 774f9b84..bc60dd70 100644 --- a/assets/icons/linear/bomb-minimalistic.svg +++ b/assets/icons/linear/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bone-broken.svg b/assets/icons/linear/bone-broken.svg deleted file mode 100644 index a2e18243..00000000 --- a/assets/icons/linear/bone-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/bone-fracture.svg b/assets/icons/linear/bone-fracture.svg new file mode 100644 index 00000000..8b5c923a --- /dev/null +++ b/assets/icons/linear/bone-fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/bones.svg b/assets/icons/linear/bones.svg index 8bbed82d..1bc1ffd2 100644 --- a/assets/icons/linear/bones.svg +++ b/assets/icons/linear/bones.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bonfire.svg b/assets/icons/linear/bonfire.svg index f5ebbb39..3247b6a9 100644 --- a/assets/icons/linear/bonfire.svg +++ b/assets/icons/linear/bonfire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/book-2.svg b/assets/icons/linear/book-2.svg index bb61323a..a5f158a1 100644 --- a/assets/icons/linear/book-2.svg +++ b/assets/icons/linear/book-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/book-bookmark-minimalistic.svg b/assets/icons/linear/book-bookmark-minimalistic.svg index 6230b171..d23c8726 100644 --- a/assets/icons/linear/book-bookmark-minimalistic.svg +++ b/assets/icons/linear/book-bookmark-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/book-bookmark.svg b/assets/icons/linear/book-bookmark.svg index 19c44e30..c053bcdd 100644 --- a/assets/icons/linear/book-bookmark.svg +++ b/assets/icons/linear/book-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/book.svg b/assets/icons/linear/book.svg index 277e1d2f..05081952 100644 --- a/assets/icons/linear/book.svg +++ b/assets/icons/linear/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/boombox.svg b/assets/icons/linear/boombox.svg index 7c0faefc..baa8948f 100644 --- a/assets/icons/linear/boombox.svg +++ b/assets/icons/linear/boombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bottle.svg b/assets/icons/linear/bottle.svg index 9b06a237..409af35c 100644 --- a/assets/icons/linear/bottle.svg +++ b/assets/icons/linear/bottle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/box-minimalistic.svg b/assets/icons/linear/box-minimalistic.svg index 0808289d..09130df5 100644 --- a/assets/icons/linear/box-minimalistic.svg +++ b/assets/icons/linear/box-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/box.svg b/assets/icons/linear/box.svg index 2b314e10..9a296947 100644 --- a/assets/icons/linear/box.svg +++ b/assets/icons/linear/box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/branching-paths-down.svg b/assets/icons/linear/branching-paths-down.svg index 297adcfd..13821a33 100644 --- a/assets/icons/linear/branching-paths-down.svg +++ b/assets/icons/linear/branching-paths-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/branching-paths-up.svg b/assets/icons/linear/branching-paths-up.svg index 9afb20b1..17dec8aa 100644 --- a/assets/icons/linear/branching-paths-up.svg +++ b/assets/icons/linear/branching-paths-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/broom.svg b/assets/icons/linear/broom.svg index 85658ef7..a57ca3f7 100644 --- a/assets/icons/linear/broom.svg +++ b/assets/icons/linear/broom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bug-minimalistic.svg b/assets/icons/linear/bug-minimalistic.svg index 984796cb..a01f0014 100644 --- a/assets/icons/linear/bug-minimalistic.svg +++ b/assets/icons/linear/bug-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bug.svg b/assets/icons/linear/bug.svg index b5c1c188..4b127955 100644 --- a/assets/icons/linear/bug.svg +++ b/assets/icons/linear/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/buildings-2.svg b/assets/icons/linear/buildings-2.svg index 5e5dd20d..a8763678 100644 --- a/assets/icons/linear/buildings-2.svg +++ b/assets/icons/linear/buildings-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/buildings-3.svg b/assets/icons/linear/buildings-3.svg index 6aac0d2e..6e0e5557 100644 --- a/assets/icons/linear/buildings-3.svg +++ b/assets/icons/linear/buildings-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/buildings.svg b/assets/icons/linear/buildings.svg index f5e78e3b..09cdebd8 100644 --- a/assets/icons/linear/buildings.svg +++ b/assets/icons/linear/buildings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/bus.svg b/assets/icons/linear/bus.svg index 0e332d57..2c49ac77 100644 --- a/assets/icons/linear/bus.svg +++ b/assets/icons/linear/bus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calculator.svg b/assets/icons/linear/calculator.svg index 6e7f767c..bafa7c59 100644 --- a/assets/icons/linear/calculator.svg +++ b/assets/icons/linear/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar-add.svg b/assets/icons/linear/calendar-add.svg index 5fc8c313..fdff96e1 100644 --- a/assets/icons/linear/calendar-add.svg +++ b/assets/icons/linear/calendar-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar-date.svg b/assets/icons/linear/calendar-date.svg index b83f6ca7..8b1ab6e1 100644 --- a/assets/icons/linear/calendar-date.svg +++ b/assets/icons/linear/calendar-date.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar-mark.svg b/assets/icons/linear/calendar-mark.svg index aa415048..ba5a2630 100644 --- a/assets/icons/linear/calendar-mark.svg +++ b/assets/icons/linear/calendar-mark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar-minimalistic.svg b/assets/icons/linear/calendar-minimalistic.svg index b1f03343..4a44bfdd 100644 --- a/assets/icons/linear/calendar-minimalistic.svg +++ b/assets/icons/linear/calendar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar-search.svg b/assets/icons/linear/calendar-search.svg index b1675158..82353fcc 100644 --- a/assets/icons/linear/calendar-search.svg +++ b/assets/icons/linear/calendar-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/calendar.svg b/assets/icons/linear/calendar.svg index 906dc505..e7f415da 100644 --- a/assets/icons/linear/calendar.svg +++ b/assets/icons/linear/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-cancel-rounded.svg b/assets/icons/linear/call-cancel-rounded.svg index 5a8ce900..41cf4429 100644 --- a/assets/icons/linear/call-cancel-rounded.svg +++ b/assets/icons/linear/call-cancel-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-cancel.svg b/assets/icons/linear/call-cancel.svg index afc6eacb..4271fbb1 100644 --- a/assets/icons/linear/call-cancel.svg +++ b/assets/icons/linear/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-chat.svg b/assets/icons/linear/call-chat.svg index c7b2a956..af7e7708 100644 --- a/assets/icons/linear/call-chat.svg +++ b/assets/icons/linear/call-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-dropped-rounded.svg b/assets/icons/linear/call-dropped-rounded.svg index e017eee8..d35fc52f 100644 --- a/assets/icons/linear/call-dropped-rounded.svg +++ b/assets/icons/linear/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-dropped.svg b/assets/icons/linear/call-dropped.svg index 31227cef..e36a06ad 100644 --- a/assets/icons/linear/call-dropped.svg +++ b/assets/icons/linear/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-medicine-rounded.svg b/assets/icons/linear/call-medicine-rounded.svg index 659d7cf3..b7291bcf 100644 --- a/assets/icons/linear/call-medicine-rounded.svg +++ b/assets/icons/linear/call-medicine-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/call-medicine.svg b/assets/icons/linear/call-medicine.svg index d143c1f9..a493145a 100644 --- a/assets/icons/linear/call-medicine.svg +++ b/assets/icons/linear/call-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/camera-add.svg b/assets/icons/linear/camera-add.svg index 95c2e13d..bccf1be3 100644 --- a/assets/icons/linear/camera-add.svg +++ b/assets/icons/linear/camera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/camera-minimalistic.svg b/assets/icons/linear/camera-minimalistic.svg index d95e2abb..4466885f 100644 --- a/assets/icons/linear/camera-minimalistic.svg +++ b/assets/icons/linear/camera-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/camera-rotate.svg b/assets/icons/linear/camera-rotate.svg index f113c918..e1104769 100644 --- a/assets/icons/linear/camera-rotate.svg +++ b/assets/icons/linear/camera-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/accumulator.svg b/assets/icons/linear/car-battery.svg similarity index 76% rename from assets/icons/line_duotone/accumulator.svg rename to assets/icons/linear/car-battery.svg index 08e941be..3a9f96ac 100644 --- a/assets/icons/line_duotone/accumulator.svg +++ b/assets/icons/linear/car-battery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/card-2.svg b/assets/icons/linear/card-2.svg index b43aa7d4..61970471 100644 --- a/assets/icons/linear/card-2.svg +++ b/assets/icons/linear/card-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/card-receive.svg b/assets/icons/linear/card-receive.svg new file mode 100644 index 00000000..733a8d5b --- /dev/null +++ b/assets/icons/linear/card-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/card-recive.svg b/assets/icons/linear/card-recive.svg deleted file mode 100644 index 54e2789e..00000000 --- a/assets/icons/linear/card-recive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/card-search.svg b/assets/icons/linear/card-search.svg index b6081aab..97e45402 100644 --- a/assets/icons/linear/card-search.svg +++ b/assets/icons/linear/card-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/card-send.svg b/assets/icons/linear/card-send.svg index 5c3bd19a..6c0013a1 100644 --- a/assets/icons/linear/card-send.svg +++ b/assets/icons/linear/card-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/card-transfer.svg b/assets/icons/linear/card-transfer.svg index 523a6b0f..917e852f 100644 --- a/assets/icons/linear/card-transfer.svg +++ b/assets/icons/linear/card-transfer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/card.svg b/assets/icons/linear/card.svg index 8d134ccb..81ffa2de 100644 --- a/assets/icons/linear/card.svg +++ b/assets/icons/linear/card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cardholder.svg b/assets/icons/linear/cardholder.svg index 11ce4f9f..ee75be71 100644 --- a/assets/icons/linear/cardholder.svg +++ b/assets/icons/linear/cardholder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-3.svg b/assets/icons/linear/cart-3.svg index 6cc8ac8f..e0356ec5 100644 --- a/assets/icons/linear/cart-3.svg +++ b/assets/icons/linear/cart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-4.svg b/assets/icons/linear/cart-4.svg new file mode 100644 index 00000000..ece7d8da --- /dev/null +++ b/assets/icons/linear/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/cart-5.svg b/assets/icons/linear/cart-5.svg index af02901a..b8f524e8 100644 --- a/assets/icons/linear/cart-5.svg +++ b/assets/icons/linear/cart-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-check.svg b/assets/icons/linear/cart-check.svg index fb0c7069..a1e98e7b 100644 --- a/assets/icons/linear/cart-check.svg +++ b/assets/icons/linear/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-cross.svg b/assets/icons/linear/cart-cross.svg index 3b662fb8..21abb790 100644 --- a/assets/icons/linear/cart-cross.svg +++ b/assets/icons/linear/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-large-2.svg b/assets/icons/linear/cart-large-2.svg index 44bf24ca..1f73bb2b 100644 --- a/assets/icons/linear/cart-large-2.svg +++ b/assets/icons/linear/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-large-3.svg b/assets/icons/linear/cart-large-3.svg index f29173f0..60a3a2eb 100644 --- a/assets/icons/linear/cart-large-3.svg +++ b/assets/icons/linear/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-large-4.svg b/assets/icons/linear/cart-large-4.svg index eb277a00..cdd81c7f 100644 --- a/assets/icons/linear/cart-large-4.svg +++ b/assets/icons/linear/cart-large-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-large-minimalistic.svg b/assets/icons/linear/cart-large-minimalistic.svg index ec2cf6b1..6d6732ac 100644 --- a/assets/icons/linear/cart-large-minimalistic.svg +++ b/assets/icons/linear/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-large.svg b/assets/icons/linear/cart-large.svg index 638fa147..eca98489 100644 --- a/assets/icons/linear/cart-large.svg +++ b/assets/icons/linear/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cart-plus.svg b/assets/icons/linear/cart-plus.svg index 2eebd174..e7ff6af3 100644 --- a/assets/icons/linear/cart-plus.svg +++ b/assets/icons/linear/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/case-minimalistic.svg b/assets/icons/linear/case-minimalistic.svg index 5c22f238..c8ed1677 100644 --- a/assets/icons/linear/case-minimalistic.svg +++ b/assets/icons/linear/case-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/case-round-minimalistic.svg b/assets/icons/linear/case-round-minimalistic.svg index 64e44c4e..f54ac8ea 100644 --- a/assets/icons/linear/case-round-minimalistic.svg +++ b/assets/icons/linear/case-round-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/case-round.svg b/assets/icons/linear/case-round.svg index c4e9688b..0244ee5f 100644 --- a/assets/icons/linear/case-round.svg +++ b/assets/icons/linear/case-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/case.svg b/assets/icons/linear/case.svg index 21358bf6..cdd286e3 100644 --- a/assets/icons/linear/case.svg +++ b/assets/icons/linear/case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cash-out.svg b/assets/icons/linear/cash-out.svg index 181cdfec..dec28f24 100644 --- a/assets/icons/linear/cash-out.svg +++ b/assets/icons/linear/cash-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cassette-2.svg b/assets/icons/linear/cassette-2.svg index e016c2f5..29653006 100644 --- a/assets/icons/linear/cassette-2.svg +++ b/assets/icons/linear/cassette-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cassette.svg b/assets/icons/linear/cassette.svg index ec4ceede..ef6ae2bb 100644 --- a/assets/icons/linear/cassette.svg +++ b/assets/icons/linear/cassette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cat.svg b/assets/icons/linear/cat.svg index 5d75e3e3..54988a30 100644 --- a/assets/icons/linear/cat.svg +++ b/assets/icons/linear/cat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chair-2.svg b/assets/icons/linear/chair-2.svg index b53b2717..78e001a8 100644 --- a/assets/icons/linear/chair-2.svg +++ b/assets/icons/linear/chair-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chair.svg b/assets/icons/linear/chair.svg index d5039780..eea70b74 100644 --- a/assets/icons/linear/chair.svg +++ b/assets/icons/linear/chair.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chandelier.svg b/assets/icons/linear/chandelier.svg index f0da95c1..616b7b3b 100644 --- a/assets/icons/linear/chandelier.svg +++ b/assets/icons/linear/chandelier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chart-2.svg b/assets/icons/linear/chart-2.svg index d3ecae9d..8a9cd3ad 100644 --- a/assets/icons/linear/chart-2.svg +++ b/assets/icons/linear/chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chart-square.svg b/assets/icons/linear/chart-square.svg index 63c04a42..7009395e 100644 --- a/assets/icons/linear/chart-square.svg +++ b/assets/icons/linear/chart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chart.svg b/assets/icons/linear/chart.svg index 4b07e83e..689ccc0a 100644 --- a/assets/icons/linear/chart.svg +++ b/assets/icons/linear/chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-dots.svg b/assets/icons/linear/chat-dots.svg index 27721467..7a5c068a 100644 --- a/assets/icons/linear/chat-dots.svg +++ b/assets/icons/linear/chat-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-line.svg b/assets/icons/linear/chat-line.svg index fc505329..b1d44a85 100644 --- a/assets/icons/linear/chat-line.svg +++ b/assets/icons/linear/chat-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-round-call.svg b/assets/icons/linear/chat-round-call.svg index fc584dff..46a4706f 100644 --- a/assets/icons/linear/chat-round-call.svg +++ b/assets/icons/linear/chat-round-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-round-dots.svg b/assets/icons/linear/chat-round-dots.svg index 8688e9af..0a69ab43 100644 --- a/assets/icons/linear/chat-round-dots.svg +++ b/assets/icons/linear/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-round-like.svg b/assets/icons/linear/chat-round-like.svg index a0b46c23..4f527bfa 100644 --- a/assets/icons/linear/chat-round-like.svg +++ b/assets/icons/linear/chat-round-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-round-line.svg b/assets/icons/linear/chat-round-line.svg index 4c64833d..9bc922ef 100644 --- a/assets/icons/linear/chat-round-line.svg +++ b/assets/icons/linear/chat-round-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-2.svg b/assets/icons/linear/chat-square-2.svg index b7934cff..6432c6a0 100644 --- a/assets/icons/linear/chat-square-2.svg +++ b/assets/icons/linear/chat-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-arrow.svg b/assets/icons/linear/chat-square-arrow.svg index 5ded03dd..8223ce43 100644 --- a/assets/icons/linear/chat-square-arrow.svg +++ b/assets/icons/linear/chat-square-arrow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-call.svg b/assets/icons/linear/chat-square-call.svg index ef31e251..2deb5f31 100644 --- a/assets/icons/linear/chat-square-call.svg +++ b/assets/icons/linear/chat-square-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-check.svg b/assets/icons/linear/chat-square-check.svg index d786bd67..8971d27a 100644 --- a/assets/icons/linear/chat-square-check.svg +++ b/assets/icons/linear/chat-square-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-code.svg b/assets/icons/linear/chat-square-code.svg index 13ec26e6..9e82165c 100644 --- a/assets/icons/linear/chat-square-code.svg +++ b/assets/icons/linear/chat-square-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square-like.svg b/assets/icons/linear/chat-square-like.svg index 55c0c3de..228dffb3 100644 --- a/assets/icons/linear/chat-square-like.svg +++ b/assets/icons/linear/chat-square-like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-square.svg b/assets/icons/linear/chat-square.svg index ddd65a78..a92d072c 100644 --- a/assets/icons/linear/chat-square.svg +++ b/assets/icons/linear/chat-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chat-unread.svg b/assets/icons/linear/chat-unread.svg index fa365fe4..58deef20 100644 --- a/assets/icons/linear/chat-unread.svg +++ b/assets/icons/linear/chat-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/check-read.svg b/assets/icons/linear/check-read.svg index b6b4ab17..51133ab0 100644 --- a/assets/icons/linear/check-read.svg +++ b/assets/icons/linear/check-read.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/checklist-minimalistic.svg b/assets/icons/linear/checklist-minimalistic.svg index 7393d298..8b85ccf9 100644 --- a/assets/icons/linear/checklist-minimalistic.svg +++ b/assets/icons/linear/checklist-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/checklist.svg b/assets/icons/linear/checklist.svg index f956dea4..4b793ecd 100644 --- a/assets/icons/linear/checklist.svg +++ b/assets/icons/linear/checklist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chef-hat-heart.svg b/assets/icons/linear/chef-hat-heart.svg index 3539afed..106f49a7 100644 --- a/assets/icons/linear/chef-hat-heart.svg +++ b/assets/icons/linear/chef-hat-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chef-hat-minimalistic.svg b/assets/icons/linear/chef-hat-minimalistic.svg index 521e499c..659371fe 100644 --- a/assets/icons/linear/chef-hat-minimalistic.svg +++ b/assets/icons/linear/chef-hat-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/chef-hat.svg b/assets/icons/linear/chef-hat.svg index 540f499c..76732c8b 100644 --- a/assets/icons/linear/chef-hat.svg +++ b/assets/icons/linear/chef-hat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/circle-bottom-down.svg b/assets/icons/linear/circle-bottom-down.svg index 595bf3cb..5df9225c 100644 --- a/assets/icons/linear/circle-bottom-down.svg +++ b/assets/icons/linear/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/circle-bottom-up.svg b/assets/icons/linear/circle-bottom-up.svg index 45c279f6..2c14237e 100644 --- a/assets/icons/linear/circle-bottom-up.svg +++ b/assets/icons/linear/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/circle-top-down.svg b/assets/icons/linear/circle-top-down.svg index 1bb98bb5..dd3aac91 100644 --- a/assets/icons/linear/circle-top-down.svg +++ b/assets/icons/linear/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/circle-top-up.svg b/assets/icons/linear/circle-top-up.svg index 7a1812a7..be1e2c2f 100644 --- a/assets/icons/linear/circle-top-up.svg +++ b/assets/icons/linear/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/city.svg b/assets/icons/linear/city.svg index 2c264bde..27ab7bf5 100644 --- a/assets/icons/linear/city.svg +++ b/assets/icons/linear/city.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard-edit.svg b/assets/icons/linear/clapperboard-edit.svg index 9d8eefec..82fd6d3f 100644 --- a/assets/icons/linear/clapperboard-edit.svg +++ b/assets/icons/linear/clapperboard-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard-open-play.svg b/assets/icons/linear/clapperboard-open-play.svg index 0f3e2b54..410c8a2a 100644 --- a/assets/icons/linear/clapperboard-open-play.svg +++ b/assets/icons/linear/clapperboard-open-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard-open.svg b/assets/icons/linear/clapperboard-open.svg index aa7484a2..aa2aaa98 100644 --- a/assets/icons/linear/clapperboard-open.svg +++ b/assets/icons/linear/clapperboard-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard-play.svg b/assets/icons/linear/clapperboard-play.svg index 519a0db7..b6735a84 100644 --- a/assets/icons/linear/clapperboard-play.svg +++ b/assets/icons/linear/clapperboard-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard-text.svg b/assets/icons/linear/clapperboard-text.svg index e1bfb847..301e4386 100644 --- a/assets/icons/linear/clapperboard-text.svg +++ b/assets/icons/linear/clapperboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clapperboard.svg b/assets/icons/linear/clapperboard.svg index a16254f0..15b3493b 100644 --- a/assets/icons/linear/clapperboard.svg +++ b/assets/icons/linear/clapperboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clipboard-heart.svg b/assets/icons/linear/clipboard-heart.svg index d2231b9d..ea8c59b9 100644 --- a/assets/icons/linear/clipboard-heart.svg +++ b/assets/icons/linear/clipboard-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clipboard-list.svg b/assets/icons/linear/clipboard-list.svg index faffc3ad..d0ca6079 100644 --- a/assets/icons/linear/clipboard-list.svg +++ b/assets/icons/linear/clipboard-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clipboard-text.svg b/assets/icons/linear/clipboard-text.svg index d43fa7f6..603d0f59 100644 --- a/assets/icons/linear/clipboard-text.svg +++ b/assets/icons/linear/clipboard-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clipboard.svg b/assets/icons/linear/clipboard.svg index e90e9386..b87c3b32 100644 --- a/assets/icons/linear/clipboard.svg +++ b/assets/icons/linear/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/closet-2.svg b/assets/icons/linear/closet-2.svg index 535c8cea..5388eece 100644 --- a/assets/icons/linear/closet-2.svg +++ b/assets/icons/linear/closet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/closet.svg b/assets/icons/linear/closet.svg index e9d73b2b..8ab76bf5 100644 --- a/assets/icons/linear/closet.svg +++ b/assets/icons/linear/closet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-bolt-minimalistic.svg b/assets/icons/linear/cloud-bolt-minimalistic.svg index 493ff2da..0a089909 100644 --- a/assets/icons/linear/cloud-bolt-minimalistic.svg +++ b/assets/icons/linear/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-bolt.svg b/assets/icons/linear/cloud-bolt.svg index 6c643db4..f98d62e3 100644 --- a/assets/icons/linear/cloud-bolt.svg +++ b/assets/icons/linear/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-check.svg b/assets/icons/linear/cloud-check.svg index 1d1305a9..cde2b980 100644 --- a/assets/icons/linear/cloud-check.svg +++ b/assets/icons/linear/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-cross.svg b/assets/icons/linear/cloud-cross.svg index 0c5082f9..e0a0739f 100644 --- a/assets/icons/linear/cloud-cross.svg +++ b/assets/icons/linear/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-download.svg b/assets/icons/linear/cloud-download.svg index 658cc871..9b5c70d1 100644 --- a/assets/icons/linear/cloud-download.svg +++ b/assets/icons/linear/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-file.svg b/assets/icons/linear/cloud-file.svg index af69abcd..844e0cf0 100644 --- a/assets/icons/linear/cloud-file.svg +++ b/assets/icons/linear/cloud-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-minus.svg b/assets/icons/linear/cloud-minus.svg index 880a9a72..2fd85681 100644 --- a/assets/icons/linear/cloud-minus.svg +++ b/assets/icons/linear/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-plus.svg b/assets/icons/linear/cloud-plus.svg index b6e6ece7..6730b22b 100644 --- a/assets/icons/linear/cloud-plus.svg +++ b/assets/icons/linear/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-rain.svg b/assets/icons/linear/cloud-rain.svg index b08f11fa..763c9733 100644 --- a/assets/icons/linear/cloud-rain.svg +++ b/assets/icons/linear/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-snowfall-minimalistic.svg b/assets/icons/linear/cloud-snowfall-minimalistic.svg index 382cbdc5..ae69d381 100644 --- a/assets/icons/linear/cloud-snowfall-minimalistic.svg +++ b/assets/icons/linear/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-snowfall.svg b/assets/icons/linear/cloud-snowfall.svg index 18296e8e..048a4aaa 100644 --- a/assets/icons/linear/cloud-snowfall.svg +++ b/assets/icons/linear/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-storage.svg b/assets/icons/linear/cloud-storage.svg index d6256729..d01b1cec 100644 --- a/assets/icons/linear/cloud-storage.svg +++ b/assets/icons/linear/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-storm.svg b/assets/icons/linear/cloud-storm.svg index d7d663cd..66fbb0e2 100644 --- a/assets/icons/linear/cloud-storm.svg +++ b/assets/icons/linear/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-sun-2.svg b/assets/icons/linear/cloud-sun-2.svg index c16c3fec..d61cfda2 100644 --- a/assets/icons/linear/cloud-sun-2.svg +++ b/assets/icons/linear/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-sun.svg b/assets/icons/linear/cloud-sun.svg index 73c2f216..395b2718 100644 --- a/assets/icons/linear/cloud-sun.svg +++ b/assets/icons/linear/cloud-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-upload.svg b/assets/icons/linear/cloud-upload.svg index 4bf3c230..cc8432bf 100644 --- a/assets/icons/linear/cloud-upload.svg +++ b/assets/icons/linear/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-waterdrop.svg b/assets/icons/linear/cloud-waterdrop.svg index 31842ad2..389f9aa2 100644 --- a/assets/icons/linear/cloud-waterdrop.svg +++ b/assets/icons/linear/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud-waterdrops.svg b/assets/icons/linear/cloud-waterdrops.svg index 5be1333e..1c31489d 100644 --- a/assets/icons/linear/cloud-waterdrops.svg +++ b/assets/icons/linear/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloud.svg b/assets/icons/linear/cloud.svg index aaca488d..261e406f 100644 --- a/assets/icons/linear/cloud.svg +++ b/assets/icons/linear/cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/clouds.svg b/assets/icons/linear/clouds.svg index 977fff9f..15cde111 100644 --- a/assets/icons/linear/clouds.svg +++ b/assets/icons/linear/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cloudy-moon.svg b/assets/icons/linear/cloudy-moon.svg index ff799d5e..26df796e 100644 --- a/assets/icons/linear/cloudy-moon.svg +++ b/assets/icons/linear/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code-2.svg b/assets/icons/linear/code-2.svg index 1a19f318..08147665 100644 --- a/assets/icons/linear/code-2.svg +++ b/assets/icons/linear/code-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code-circle.svg b/assets/icons/linear/code-circle.svg index 9dc66931..8d04cef7 100644 --- a/assets/icons/linear/code-circle.svg +++ b/assets/icons/linear/code-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code-file.svg b/assets/icons/linear/code-file.svg index b90ef967..96f1481f 100644 --- a/assets/icons/linear/code-file.svg +++ b/assets/icons/linear/code-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code-scan.svg b/assets/icons/linear/code-scan.svg index 33ca61ba..83251f2c 100644 --- a/assets/icons/linear/code-scan.svg +++ b/assets/icons/linear/code-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code-square.svg b/assets/icons/linear/code-square.svg index 1f12fe36..c23bcf44 100644 --- a/assets/icons/linear/code-square.svg +++ b/assets/icons/linear/code-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/code.svg b/assets/icons/linear/code.svg index e2457da4..8639a09a 100644 --- a/assets/icons/linear/code.svg +++ b/assets/icons/linear/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/colour-tuneing.svg b/assets/icons/linear/colour-tuneing.svg deleted file mode 100644 index b57be45c..00000000 --- a/assets/icons/linear/colour-tuneing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/colour-tuning.svg b/assets/icons/linear/colour-tuning.svg new file mode 100644 index 00000000..ea82fe9d --- /dev/null +++ b/assets/icons/linear/colour-tuning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/command.svg b/assets/icons/linear/command.svg index 1c51b82d..15b11087 100644 --- a/assets/icons/linear/command.svg +++ b/assets/icons/linear/command.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/condicioner-2.svg b/assets/icons/linear/conditioner-2.svg similarity index 83% rename from assets/icons/line_duotone/condicioner-2.svg rename to assets/icons/linear/conditioner-2.svg index ad174e80..c520973e 100644 --- a/assets/icons/line_duotone/condicioner-2.svg +++ b/assets/icons/linear/conditioner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/condicioner.svg b/assets/icons/linear/conditioner.svg similarity index 66% rename from assets/icons/linear/condicioner.svg rename to assets/icons/linear/conditioner.svg index 128e2eeb..5faad44f 100644 --- a/assets/icons/linear/condicioner.svg +++ b/assets/icons/linear/conditioner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/confetti-minimalistic.svg b/assets/icons/linear/confetti-minimalistic.svg index e1c41e29..9337b11b 100644 --- a/assets/icons/linear/confetti-minimalistic.svg +++ b/assets/icons/linear/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/confetti.svg b/assets/icons/linear/confetti.svg index e3e128af..4610d20b 100644 --- a/assets/icons/linear/confetti.svg +++ b/assets/icons/linear/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/confounded-circle.svg b/assets/icons/linear/confounded-circle.svg index 240a6030..2f9fa160 100644 --- a/assets/icons/linear/confounded-circle.svg +++ b/assets/icons/linear/confounded-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/confounded-square.svg b/assets/icons/linear/confounded-square.svg index 2cdca992..5ff08222 100644 --- a/assets/icons/linear/confounded-square.svg +++ b/assets/icons/linear/confounded-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/corkscrew.svg b/assets/icons/linear/corkscrew.svg index bc366481..4568fdf8 100644 --- a/assets/icons/linear/corkscrew.svg +++ b/assets/icons/linear/corkscrew.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cosmetic.svg b/assets/icons/linear/cosmetic.svg index a1f8f717..20e83dc4 100644 --- a/assets/icons/linear/cosmetic.svg +++ b/assets/icons/linear/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/course-down.svg b/assets/icons/linear/course-down.svg index 29ec797f..379ccb8d 100644 --- a/assets/icons/linear/course-down.svg +++ b/assets/icons/linear/course-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/course-up.svg b/assets/icons/linear/course-up.svg index f433198e..779326ed 100644 --- a/assets/icons/linear/course-up.svg +++ b/assets/icons/linear/course-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cpu-bolt.svg b/assets/icons/linear/cpu-bolt.svg index 6e9b61df..f80e2e55 100644 --- a/assets/icons/linear/cpu-bolt.svg +++ b/assets/icons/linear/cpu-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cpu.svg b/assets/icons/linear/cpu.svg index e34398ee..e2de7563 100644 --- a/assets/icons/linear/cpu.svg +++ b/assets/icons/linear/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/creative-commons.svg b/assets/icons/linear/creative-commons.svg index dbb6b90d..e093d664 100644 --- a/assets/icons/linear/creative-commons.svg +++ b/assets/icons/linear/creative-commons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/crown.svg b/assets/icons/linear/crown.svg index ad9fec2f..56ab977a 100644 --- a/assets/icons/linear/crown.svg +++ b/assets/icons/linear/crown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup-first.svg b/assets/icons/linear/cup-first.svg index d32f2f3e..1a6f1c7d 100644 --- a/assets/icons/linear/cup-first.svg +++ b/assets/icons/linear/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup-hot.svg b/assets/icons/linear/cup-hot.svg index 0fef2812..649e4fd7 100644 --- a/assets/icons/linear/cup-hot.svg +++ b/assets/icons/linear/cup-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup-music.svg b/assets/icons/linear/cup-music.svg index 436a1cbc..94b57909 100644 --- a/assets/icons/linear/cup-music.svg +++ b/assets/icons/linear/cup-music.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup-paper.svg b/assets/icons/linear/cup-paper.svg index bd08b650..5fafdec3 100644 --- a/assets/icons/linear/cup-paper.svg +++ b/assets/icons/linear/cup-paper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup-star.svg b/assets/icons/linear/cup-star.svg index a9cae003..57458cce 100644 --- a/assets/icons/linear/cup-star.svg +++ b/assets/icons/linear/cup-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/cup.svg b/assets/icons/linear/cup.svg index 6046bda3..680b60fd 100644 --- a/assets/icons/linear/cup.svg +++ b/assets/icons/linear/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/danger-circle.svg b/assets/icons/linear/danger-circle.svg index c7cdc582..f4059da3 100644 --- a/assets/icons/linear/danger-circle.svg +++ b/assets/icons/linear/danger-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/danger-square.svg b/assets/icons/linear/danger-square.svg index d541068c..78f21be7 100644 --- a/assets/icons/linear/danger-square.svg +++ b/assets/icons/linear/danger-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/danger-triangle.svg b/assets/icons/linear/danger-triangle.svg index 7f895a80..184b44d5 100644 --- a/assets/icons/linear/danger-triangle.svg +++ b/assets/icons/linear/danger-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/danger.svg b/assets/icons/linear/danger.svg index 34ebf2fb..6b3f0f63 100644 --- a/assets/icons/linear/danger.svg +++ b/assets/icons/linear/danger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/database.svg b/assets/icons/linear/database.svg index 0e7e87e6..88c8bc7c 100644 --- a/assets/icons/linear/database.svg +++ b/assets/icons/linear/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/delivery.svg b/assets/icons/linear/delivery.svg index 3e5dcb9d..20d6b70a 100644 --- a/assets/icons/linear/delivery.svg +++ b/assets/icons/linear/delivery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dialog-2.svg b/assets/icons/linear/dialog-2.svg index a96adf4e..3ed0c38a 100644 --- a/assets/icons/linear/dialog-2.svg +++ b/assets/icons/linear/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dialog.svg b/assets/icons/linear/dialog.svg index 57106f66..4a76e1d7 100644 --- a/assets/icons/linear/dialog.svg +++ b/assets/icons/linear/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/diploma-verified.svg b/assets/icons/linear/diploma-verified.svg index 3655e6ef..470fbe9b 100644 --- a/assets/icons/linear/diploma-verified.svg +++ b/assets/icons/linear/diploma-verified.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/diploma.svg b/assets/icons/linear/diploma.svg index e6ad2adc..aad2acda 100644 --- a/assets/icons/linear/diploma.svg +++ b/assets/icons/linear/diploma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dislike.svg b/assets/icons/linear/dislike.svg index 5277bc59..db46d609 100644 --- a/assets/icons/linear/dislike.svg +++ b/assets/icons/linear/dislike.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dna.svg b/assets/icons/linear/dna.svg index f591fd46..86277b11 100644 --- a/assets/icons/linear/dna.svg +++ b/assets/icons/linear/dna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/document-2.svg b/assets/icons/linear/document-2.svg new file mode 100644 index 00000000..40d1e0dc --- /dev/null +++ b/assets/icons/linear/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/document-add.svg b/assets/icons/linear/document-add.svg index 930ddb47..e7e016fc 100644 --- a/assets/icons/linear/document-add.svg +++ b/assets/icons/linear/document-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/document-medicine.svg b/assets/icons/linear/document-medicine.svg index 313bca4e..19bd2056 100644 --- a/assets/icons/linear/document-medicine.svg +++ b/assets/icons/linear/document-medicine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/document-text.svg b/assets/icons/linear/document-text.svg index 60407af6..b2624ecf 100644 --- a/assets/icons/linear/document-text.svg +++ b/assets/icons/linear/document-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/document.svg b/assets/icons/linear/document.svg index 85787ad4..814cc16f 100644 --- a/assets/icons/linear/document.svg +++ b/assets/icons/linear/document.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/documents-minimalistic.svg b/assets/icons/linear/documents-minimalistic.svg index 7756272d..af7535e2 100644 --- a/assets/icons/linear/documents-minimalistic.svg +++ b/assets/icons/linear/documents-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/documents.svg b/assets/icons/linear/documents.svg index ff4dfe04..84ab52df 100644 --- a/assets/icons/linear/documents.svg +++ b/assets/icons/linear/documents.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dollar-minimalistic.svg b/assets/icons/linear/dollar-minimalistic.svg index 351e2375..63bc07e3 100644 --- a/assets/icons/linear/dollar-minimalistic.svg +++ b/assets/icons/linear/dollar-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dollar.svg b/assets/icons/linear/dollar.svg index 6d54a0fd..4e1a6626 100644 --- a/assets/icons/linear/dollar.svg +++ b/assets/icons/linear/dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/donut-bitten.svg b/assets/icons/linear/donut-bitten.svg index 9aded01f..02f9f9a8 100644 --- a/assets/icons/linear/donut-bitten.svg +++ b/assets/icons/linear/donut-bitten.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/donut.svg b/assets/icons/linear/donut.svg index b8af67d5..0bd4f8a6 100644 --- a/assets/icons/linear/donut.svg +++ b/assets/icons/linear/donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/download-minimalistic.svg b/assets/icons/linear/download-minimalistic.svg index 82022c31..2ebf3e99 100644 --- a/assets/icons/linear/download-minimalistic.svg +++ b/assets/icons/linear/download-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/download-square.svg b/assets/icons/linear/download-square.svg index c70ea214..25773004 100644 --- a/assets/icons/linear/download-square.svg +++ b/assets/icons/linear/download-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/download-twice-square.svg b/assets/icons/linear/download-twice-square.svg index f46ae237..3bf0afc7 100644 --- a/assets/icons/linear/download-twice-square.svg +++ b/assets/icons/linear/download-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/download.svg b/assets/icons/linear/download.svg index 22b4b263..994dd7d1 100644 --- a/assets/icons/linear/download.svg +++ b/assets/icons/linear/download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dropper-2.svg b/assets/icons/linear/dropper-2.svg index 8795c20d..fb4cd65d 100644 --- a/assets/icons/linear/dropper-2.svg +++ b/assets/icons/linear/dropper-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dropper-3.svg b/assets/icons/linear/dropper-3.svg index cbb80e4b..3c71c2ea 100644 --- a/assets/icons/linear/dropper-3.svg +++ b/assets/icons/linear/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dropper-minimalistic-2.svg b/assets/icons/linear/dropper-minimalistic-2.svg index dca80df6..d7cd2f9a 100644 --- a/assets/icons/linear/dropper-minimalistic-2.svg +++ b/assets/icons/linear/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dropper-minimalistic.svg b/assets/icons/linear/dropper-minimalistic.svg index 72a2c454..4cd6ebc3 100644 --- a/assets/icons/linear/dropper-minimalistic.svg +++ b/assets/icons/linear/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dropper.svg b/assets/icons/linear/dropper.svg index 55ef67e9..77069521 100644 --- a/assets/icons/linear/dropper.svg +++ b/assets/icons/linear/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbell-large-minimalistic.svg b/assets/icons/linear/dumbbell-large-minimalistic.svg index 535d103e..429d5048 100644 --- a/assets/icons/linear/dumbbell-large-minimalistic.svg +++ b/assets/icons/linear/dumbbell-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbell-large.svg b/assets/icons/linear/dumbbell-large.svg index 906b6b1b..c45314a3 100644 --- a/assets/icons/linear/dumbbell-large.svg +++ b/assets/icons/linear/dumbbell-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbell-small.svg b/assets/icons/linear/dumbbell-small.svg index 26f52d5f..1b721024 100644 --- a/assets/icons/linear/dumbbell-small.svg +++ b/assets/icons/linear/dumbbell-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbell.svg b/assets/icons/linear/dumbbell.svg index 4e5928dc..dea55f1d 100644 --- a/assets/icons/linear/dumbbell.svg +++ b/assets/icons/linear/dumbbell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbells-2.svg b/assets/icons/linear/dumbbells-2.svg index af8a0ab8..5672c29c 100644 --- a/assets/icons/linear/dumbbells-2.svg +++ b/assets/icons/linear/dumbbells-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/dumbbells.svg b/assets/icons/linear/dumbbells.svg index 5beb385e..ed20b1a1 100644 --- a/assets/icons/linear/dumbbells.svg +++ b/assets/icons/linear/dumbbells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/earth.svg b/assets/icons/linear/earth.svg index 3381aa26..5457deef 100644 --- a/assets/icons/linear/earth.svg +++ b/assets/icons/linear/earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/electric-refueling.svg b/assets/icons/linear/electric-refueling.svg index d77594a9..3dfb0679 100644 --- a/assets/icons/linear/electric-refueling.svg +++ b/assets/icons/linear/electric-refueling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/emoji-funny-circle.svg b/assets/icons/linear/emoji-funny-circle.svg index 01424544..9b7e289c 100644 --- a/assets/icons/linear/emoji-funny-circle.svg +++ b/assets/icons/linear/emoji-funny-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/emoji-funny-square.svg b/assets/icons/linear/emoji-funny-square.svg index 0604c798..6d8f3671 100644 --- a/assets/icons/linear/emoji-funny-square.svg +++ b/assets/icons/linear/emoji-funny-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/end-call.svg b/assets/icons/linear/end-call.svg index 9f17236f..546d3b43 100644 --- a/assets/icons/linear/end-call.svg +++ b/assets/icons/linear/end-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/eraser-circle.svg b/assets/icons/linear/eraser-circle.svg index 03b863ab..4a7781d8 100644 --- a/assets/icons/linear/eraser-circle.svg +++ b/assets/icons/linear/eraser-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/eraser-square.svg b/assets/icons/linear/eraser-square.svg index f7de0049..45abf512 100644 --- a/assets/icons/linear/eraser-square.svg +++ b/assets/icons/linear/eraser-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/eraser.svg b/assets/icons/linear/eraser.svg index 576bc03e..95587d56 100644 --- a/assets/icons/linear/eraser.svg +++ b/assets/icons/linear/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/euro.svg b/assets/icons/linear/euro.svg index bc0618fb..8f42db87 100644 --- a/assets/icons/linear/euro.svg +++ b/assets/icons/linear/euro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/exit.svg b/assets/icons/linear/exit.svg index 7b5af0c5..e22f7fe9 100644 --- a/assets/icons/linear/exit.svg +++ b/assets/icons/linear/exit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/export.svg b/assets/icons/linear/export.svg index c42005b0..e344b09e 100644 --- a/assets/icons/linear/export.svg +++ b/assets/icons/linear/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/expressionless-circle.svg b/assets/icons/linear/expressionless-circle.svg index 05437031..20120596 100644 --- a/assets/icons/linear/expressionless-circle.svg +++ b/assets/icons/linear/expressionless-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/expressionless-square.svg b/assets/icons/linear/expressionless-square.svg index b414bd68..2eec43f8 100644 --- a/assets/icons/linear/expressionless-square.svg +++ b/assets/icons/linear/expressionless-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/eye-closed.svg b/assets/icons/linear/eye-closed.svg index a40c09b0..e358feed 100644 --- a/assets/icons/linear/eye-closed.svg +++ b/assets/icons/linear/eye-closed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/eye-scan.svg b/assets/icons/linear/eye-scan.svg index 2388a581..174d6211 100644 --- a/assets/icons/linear/eye-scan.svg +++ b/assets/icons/linear/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/face-scan-circle.svg b/assets/icons/linear/face-scan-circle.svg index 616aa0de..678164b7 100644 --- a/assets/icons/linear/face-scan-circle.svg +++ b/assets/icons/linear/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/face-scan-square.svg b/assets/icons/linear/face-scan-square.svg index a8039125..462a416e 100644 --- a/assets/icons/linear/face-scan-square.svg +++ b/assets/icons/linear/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/facemask-circle.svg b/assets/icons/linear/facemask-circle.svg index 9b4a8ec8..4989a27c 100644 --- a/assets/icons/linear/facemask-circle.svg +++ b/assets/icons/linear/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/facemask-square.svg b/assets/icons/linear/facemask-square.svg index 388a4a71..1b3907dd 100644 --- a/assets/icons/linear/facemask-square.svg +++ b/assets/icons/linear/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ferris-wheel.svg b/assets/icons/linear/ferris-wheel.svg index df9475fb..6bfe3097 100644 --- a/assets/icons/linear/ferris-wheel.svg +++ b/assets/icons/linear/ferris-wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/figma-file.svg b/assets/icons/linear/figma-file.svg index 9184b1f1..5a348976 100644 --- a/assets/icons/linear/figma-file.svg +++ b/assets/icons/linear/figma-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/figma.svg b/assets/icons/linear/figma.svg index 250854d8..9164dfb9 100644 --- a/assets/icons/linear/figma.svg +++ b/assets/icons/linear/figma.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-check.svg b/assets/icons/linear/file-check.svg index 597569ad..474c0c81 100644 --- a/assets/icons/linear/file-check.svg +++ b/assets/icons/linear/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-corrupted.svg b/assets/icons/linear/file-corrupted.svg index 1451ede3..db3e05c6 100644 --- a/assets/icons/linear/file-corrupted.svg +++ b/assets/icons/linear/file-corrupted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-download.svg b/assets/icons/linear/file-download.svg index 33c53691..ab624763 100644 --- a/assets/icons/linear/file-download.svg +++ b/assets/icons/linear/file-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-favorite.svg b/assets/icons/linear/file-favorite.svg new file mode 100644 index 00000000..3118575c --- /dev/null +++ b/assets/icons/linear/file-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/file-favourite.svg b/assets/icons/linear/file-favourite.svg deleted file mode 100644 index ac2fa086..00000000 --- a/assets/icons/linear/file-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/file-left.svg b/assets/icons/linear/file-left.svg index b2701f17..abeac980 100644 --- a/assets/icons/linear/file-left.svg +++ b/assets/icons/linear/file-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-remove.svg b/assets/icons/linear/file-remove.svg index ad08d53f..a2e91552 100644 --- a/assets/icons/linear/file-remove.svg +++ b/assets/icons/linear/file-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-right.svg b/assets/icons/linear/file-right.svg index 5ab97021..dea88e86 100644 --- a/assets/icons/linear/file-right.svg +++ b/assets/icons/linear/file-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-send.svg b/assets/icons/linear/file-send.svg index dd9a2f5e..07d1593a 100644 --- a/assets/icons/linear/file-send.svg +++ b/assets/icons/linear/file-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-smile.svg b/assets/icons/linear/file-smile.svg index de4777fd..fe605a8e 100644 --- a/assets/icons/linear/file-smile.svg +++ b/assets/icons/linear/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file-text.svg b/assets/icons/linear/file-text.svg index 1c3066d7..d85bad51 100644 --- a/assets/icons/linear/file-text.svg +++ b/assets/icons/linear/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/file.svg b/assets/icons/linear/file.svg index 6cf500ef..79b07194 100644 --- a/assets/icons/linear/file.svg +++ b/assets/icons/linear/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/flash-drive.svg b/assets/icons/linear/flash-drive.svg index 4a234b93..e5627f75 100644 --- a/assets/icons/linear/flash-drive.svg +++ b/assets/icons/linear/flash-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/flashlight-on.svg b/assets/icons/linear/flashlight-on.svg index 0f075d97..a08cb853 100644 --- a/assets/icons/linear/flashlight-on.svg +++ b/assets/icons/linear/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/flashlight.svg b/assets/icons/linear/flashlight.svg index 2c7fa0e6..9bbba8ad 100644 --- a/assets/icons/linear/flashlight.svg +++ b/assets/icons/linear/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/flip-horizontal.svg b/assets/icons/linear/flip-horizontal.svg index 26215d17..3685ef0f 100644 --- a/assets/icons/linear/flip-horizontal.svg +++ b/assets/icons/linear/flip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/flip-vertical.svg b/assets/icons/linear/flip-vertical.svg index 65a40f5d..c016fc96 100644 --- a/assets/icons/linear/flip-vertical.svg +++ b/assets/icons/linear/flip-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/floor-lamp-minimalistic.svg b/assets/icons/linear/floor-lamp-minimalistic.svg index a6299b30..95b2af43 100644 --- a/assets/icons/linear/floor-lamp-minimalistic.svg +++ b/assets/icons/linear/floor-lamp-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/floor-lamp.svg b/assets/icons/linear/floor-lamp.svg index 600c0ead..0cc6ecf8 100644 --- a/assets/icons/linear/floor-lamp.svg +++ b/assets/icons/linear/floor-lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/fog.svg b/assets/icons/linear/fog.svg index 4a65b19d..b38a60bc 100644 --- a/assets/icons/linear/fog.svg +++ b/assets/icons/linear/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/folder-cloud.svg b/assets/icons/linear/folder-cloud.svg index a40c70e0..2712b339 100644 --- a/assets/icons/linear/folder-cloud.svg +++ b/assets/icons/linear/folder-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/folder-favourite-bookmark.svg b/assets/icons/linear/folder-favorite-bookmark.svg similarity index 100% rename from assets/icons/linear/folder-favourite-bookmark.svg rename to assets/icons/linear/folder-favorite-bookmark.svg diff --git a/assets/icons/linear/folder-favourite-star.svg b/assets/icons/linear/folder-favorite-star.svg similarity index 100% rename from assets/icons/linear/folder-favourite-star.svg rename to assets/icons/linear/folder-favorite-star.svg diff --git a/assets/icons/linear/folder-path-connect.svg b/assets/icons/linear/folder-path-connect.svg index cb87984a..f3ad357c 100644 --- a/assets/icons/linear/folder-path-connect.svg +++ b/assets/icons/linear/folder-path-connect.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/folder-security.svg b/assets/icons/linear/folder-security.svg index 4f426531..4161d1ce 100644 --- a/assets/icons/linear/folder-security.svg +++ b/assets/icons/linear/folder-security.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/football.svg b/assets/icons/linear/football.svg index 6b9abe64..286f0408 100644 --- a/assets/icons/linear/football.svg +++ b/assets/icons/linear/football.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/forward-2.svg b/assets/icons/linear/forward-2.svg index dc721d6f..e789d2ef 100644 --- a/assets/icons/linear/forward-2.svg +++ b/assets/icons/linear/forward-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/forward-right.svg b/assets/icons/linear/forward-right.svg new file mode 100644 index 00000000..8d490f2b --- /dev/null +++ b/assets/icons/linear/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/forward.svg b/assets/icons/linear/forward.svg index 83d3247e..47e8b399 100644 --- a/assets/icons/linear/forward.svg +++ b/assets/icons/linear/forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/4k.svg b/assets/icons/linear/four-k.svg similarity index 84% rename from assets/icons/linear/4k.svg rename to assets/icons/linear/four-k.svg index 7b3b8dc8..9a81fa7c 100644 --- a/assets/icons/linear/4k.svg +++ b/assets/icons/linear/four-k.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/fridge.svg b/assets/icons/linear/fridge.svg index adbe99bf..bfd5af49 100644 --- a/assets/icons/linear/fridge.svg +++ b/assets/icons/linear/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/fuel.svg b/assets/icons/linear/fuel.svg index d3552ef0..91e6294c 100644 --- a/assets/icons/linear/fuel.svg +++ b/assets/icons/linear/fuel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/full-screen-circle.svg b/assets/icons/linear/full-screen-circle.svg index 7270bc43..abff8907 100644 --- a/assets/icons/linear/full-screen-circle.svg +++ b/assets/icons/linear/full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/full-screen-square.svg b/assets/icons/linear/full-screen-square.svg index 448520da..7f961033 100644 --- a/assets/icons/linear/full-screen-square.svg +++ b/assets/icons/linear/full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/full-screen.svg b/assets/icons/linear/full-screen.svg index 61850cff..7371b5af 100644 --- a/assets/icons/linear/full-screen.svg +++ b/assets/icons/linear/full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gallery-add.svg b/assets/icons/linear/gallery-add.svg index 0562fe04..a34a81a7 100644 --- a/assets/icons/linear/gallery-add.svg +++ b/assets/icons/linear/gallery-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gallery-download.svg b/assets/icons/linear/gallery-download.svg index 806a1a14..04e89c13 100644 --- a/assets/icons/linear/gallery-download.svg +++ b/assets/icons/linear/gallery-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gallery-edit.svg b/assets/icons/linear/gallery-edit.svg index d3798578..70345601 100644 --- a/assets/icons/linear/gallery-edit.svg +++ b/assets/icons/linear/gallery-edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gallery-favorite.svg b/assets/icons/linear/gallery-favorite.svg new file mode 100644 index 00000000..efdd0d22 --- /dev/null +++ b/assets/icons/linear/gallery-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/gallery-favourite.svg b/assets/icons/linear/gallery-favourite.svg deleted file mode 100644 index dca5d597..00000000 --- a/assets/icons/linear/gallery-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/gallery-remove.svg b/assets/icons/linear/gallery-remove.svg index 156ecebe..b9a79492 100644 --- a/assets/icons/linear/gallery-remove.svg +++ b/assets/icons/linear/gallery-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gallery-send.svg b/assets/icons/linear/gallery-send.svg index be50a430..860f7b81 100644 --- a/assets/icons/linear/gallery-send.svg +++ b/assets/icons/linear/gallery-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gameboy.svg b/assets/icons/linear/gameboy.svg index 6681f3c8..3304a9e5 100644 --- a/assets/icons/linear/gameboy.svg +++ b/assets/icons/linear/gameboy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gamepad-charge.svg b/assets/icons/linear/gamepad-charge.svg index 85ba176e..516ed075 100644 --- a/assets/icons/linear/gamepad-charge.svg +++ b/assets/icons/linear/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gamepad-minimalistic.svg b/assets/icons/linear/gamepad-minimalistic.svg index 529261d1..ba9e45c8 100644 --- a/assets/icons/linear/gamepad-minimalistic.svg +++ b/assets/icons/linear/gamepad-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gamepad-no-charge.svg b/assets/icons/linear/gamepad-no-charge.svg index 6d00aad4..2ccb2ad2 100644 --- a/assets/icons/linear/gamepad-no-charge.svg +++ b/assets/icons/linear/gamepad-no-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gamepad-old.svg b/assets/icons/linear/gamepad-old.svg index bbaa202a..a3ced958 100644 --- a/assets/icons/linear/gamepad-old.svg +++ b/assets/icons/linear/gamepad-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gamepad.svg b/assets/icons/linear/gamepad.svg index 1f2ae0a2..82ffe6c1 100644 --- a/assets/icons/linear/gamepad.svg +++ b/assets/icons/linear/gamepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/garage.svg b/assets/icons/linear/garage.svg index cf6d9769..afc92b1a 100644 --- a/assets/icons/linear/garage.svg +++ b/assets/icons/linear/garage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gas-station.svg b/assets/icons/linear/gas-station.svg index c8a04227..e262c482 100644 --- a/assets/icons/linear/gas-station.svg +++ b/assets/icons/linear/gas-station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ghost-smile.svg b/assets/icons/linear/ghost-smile.svg index 6cd0285c..22edfbbb 100644 --- a/assets/icons/linear/ghost-smile.svg +++ b/assets/icons/linear/ghost-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ghost.svg b/assets/icons/linear/ghost.svg index 5ea00af7..33b03c8a 100644 --- a/assets/icons/linear/ghost.svg +++ b/assets/icons/linear/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gift.svg b/assets/icons/linear/gift.svg index b03a80c0..cd673534 100644 --- a/assets/icons/linear/gift.svg +++ b/assets/icons/linear/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/glasses.svg b/assets/icons/linear/glasses.svg index 78d05cf1..9ab6da1c 100644 --- a/assets/icons/linear/glasses.svg +++ b/assets/icons/linear/glasses.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/globus.svg b/assets/icons/linear/globe.svg similarity index 66% rename from assets/icons/linear/globus.svg rename to assets/icons/linear/globe.svg index a7d27b72..2059da2a 100644 --- a/assets/icons/linear/globus.svg +++ b/assets/icons/linear/globe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/golf.svg b/assets/icons/linear/golf.svg index dae15f3c..4e824b4e 100644 --- a/assets/icons/linear/golf.svg +++ b/assets/icons/linear/golf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/gps.svg b/assets/icons/linear/gps.svg index c641219a..bd3268ee 100644 --- a/assets/icons/linear/gps.svg +++ b/assets/icons/linear/gps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/graph-down-new.svg b/assets/icons/linear/graph-down-new.svg index 61dce844..7ec7fe2d 100644 --- a/assets/icons/linear/graph-down-new.svg +++ b/assets/icons/linear/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/graph-down.svg b/assets/icons/linear/graph-down.svg index 7a801528..e796bf97 100644 --- a/assets/icons/linear/graph-down.svg +++ b/assets/icons/linear/graph-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/graph-new-up.svg b/assets/icons/linear/graph-new-up.svg index 7bdc57b9..e05c1c95 100644 --- a/assets/icons/linear/graph-new-up.svg +++ b/assets/icons/linear/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/graph-up.svg b/assets/icons/linear/graph-up.svg index 232d3ba1..48fae70a 100644 --- a/assets/icons/linear/graph-up.svg +++ b/assets/icons/linear/graph-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hamburger-menu.svg b/assets/icons/linear/hamburger-menu.svg index 942e1496..e16492a2 100644 --- a/assets/icons/linear/hamburger-menu.svg +++ b/assets/icons/linear/hamburger-menu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hand-heart.svg b/assets/icons/linear/hand-heart.svg index 32093ed7..a12aec35 100644 --- a/assets/icons/linear/hand-heart.svg +++ b/assets/icons/linear/hand-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hand-money.svg b/assets/icons/linear/hand-money.svg index b56f47be..3b4b0faf 100644 --- a/assets/icons/linear/hand-money.svg +++ b/assets/icons/linear/hand-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hand-pills.svg b/assets/icons/linear/hand-pills.svg index bf804af3..41f82191 100644 --- a/assets/icons/linear/hand-pills.svg +++ b/assets/icons/linear/hand-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hand-shake.svg b/assets/icons/linear/hand-shake.svg index 112a0efd..47687486 100644 --- a/assets/icons/linear/hand-shake.svg +++ b/assets/icons/linear/hand-shake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hand-stars.svg b/assets/icons/linear/hand-stars.svg index afe488a3..7f91a50e 100644 --- a/assets/icons/linear/hand-stars.svg +++ b/assets/icons/linear/hand-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hashtag-chat.svg b/assets/icons/linear/hashtag-chat.svg index 1118deb8..96d94cd9 100644 --- a/assets/icons/linear/hashtag-chat.svg +++ b/assets/icons/linear/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hashtag-circle.svg b/assets/icons/linear/hashtag-circle.svg index 34f63a71..2a838404 100644 --- a/assets/icons/linear/hashtag-circle.svg +++ b/assets/icons/linear/hashtag-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hashtag-square.svg b/assets/icons/linear/hashtag-square.svg index 4cf5ec1a..f09c9e29 100644 --- a/assets/icons/linear/hashtag-square.svg +++ b/assets/icons/linear/hashtag-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hashtag.svg b/assets/icons/linear/hashtag.svg index c4b3c4c4..2b7f92dc 100644 --- a/assets/icons/linear/hashtag.svg +++ b/assets/icons/linear/hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/headphones-round-sound.svg b/assets/icons/linear/headphones-round-sound.svg index 1fdbb2c0..281d015f 100644 --- a/assets/icons/linear/headphones-round-sound.svg +++ b/assets/icons/linear/headphones-round-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/headphones-round.svg b/assets/icons/linear/headphones-round.svg index 494d3a93..4f10416a 100644 --- a/assets/icons/linear/headphones-round.svg +++ b/assets/icons/linear/headphones-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/headphones-square-sound.svg b/assets/icons/linear/headphones-square-sound.svg index 95f6ca6a..d43ef022 100644 --- a/assets/icons/linear/headphones-square-sound.svg +++ b/assets/icons/linear/headphones-square-sound.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/headphones-square.svg b/assets/icons/linear/headphones-square.svg index b569d434..9457c7ac 100644 --- a/assets/icons/linear/headphones-square.svg +++ b/assets/icons/linear/headphones-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/health.svg b/assets/icons/linear/health.svg index 59d078c6..4d9d8c0b 100644 --- a/assets/icons/linear/health.svg +++ b/assets/icons/linear/health.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-angle.svg b/assets/icons/linear/heart-angle.svg index 535f29fe..f032e506 100644 --- a/assets/icons/linear/heart-angle.svg +++ b/assets/icons/linear/heart-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-broken.svg b/assets/icons/linear/heart-crack.svg similarity index 100% rename from assets/icons/linear/heart-broken.svg rename to assets/icons/linear/heart-crack.svg diff --git a/assets/icons/linear/heart-lock.svg b/assets/icons/linear/heart-lock.svg index 98e8f919..a1933702 100644 --- a/assets/icons/linear/heart-lock.svg +++ b/assets/icons/linear/heart-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-pulse-2.svg b/assets/icons/linear/heart-pulse-2.svg index 4008ab34..62879b45 100644 --- a/assets/icons/linear/heart-pulse-2.svg +++ b/assets/icons/linear/heart-pulse-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-pulse.svg b/assets/icons/linear/heart-pulse.svg index fda7a7b5..45da22e6 100644 --- a/assets/icons/linear/heart-pulse.svg +++ b/assets/icons/linear/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-shine.svg b/assets/icons/linear/heart-shine.svg index c8ae9b7a..3f2ae9dd 100644 --- a/assets/icons/linear/heart-shine.svg +++ b/assets/icons/linear/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart-unlock.svg b/assets/icons/linear/heart-unlock.svg index 7cc58c38..2965b74c 100644 --- a/assets/icons/linear/heart-unlock.svg +++ b/assets/icons/linear/heart-unlock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/heart.svg b/assets/icons/linear/heart.svg index f4ae474f..4ba8871f 100644 --- a/assets/icons/linear/heart.svg +++ b/assets/icons/linear/heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hearts.svg b/assets/icons/linear/hearts.svg index 32294112..5af8ee35 100644 --- a/assets/icons/linear/hearts.svg +++ b/assets/icons/linear/hearts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/help.svg b/assets/icons/linear/help.svg index 32f83536..1e42d1be 100644 --- a/assets/icons/linear/help.svg +++ b/assets/icons/linear/help.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/high-definition.svg b/assets/icons/linear/high-definition.svg index dbad743d..01531f09 100644 --- a/assets/icons/linear/high-definition.svg +++ b/assets/icons/linear/high-definition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hiking-minimalistic.svg b/assets/icons/linear/hiking-minimalistic.svg index 2f0d8dc3..b420400b 100644 --- a/assets/icons/linear/hiking-minimalistic.svg +++ b/assets/icons/linear/hiking-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hiking-round.svg b/assets/icons/linear/hiking-round.svg index e3d83096..b71e1ca0 100644 --- a/assets/icons/linear/hiking-round.svg +++ b/assets/icons/linear/hiking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hiking.svg b/assets/icons/linear/hiking.svg index a2c56a7a..5b6c7c0d 100644 --- a/assets/icons/linear/hiking.svg +++ b/assets/icons/linear/hiking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/history.svg b/assets/icons/linear/history.svg index e4054027..2712d99b 100644 --- a/assets/icons/linear/history.svg +++ b/assets/icons/linear/history.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/home-wifi-angle.svg b/assets/icons/linear/home-wi-fi-angle.svg similarity index 100% rename from assets/icons/linear/home-wifi-angle.svg rename to assets/icons/linear/home-wi-fi-angle.svg diff --git a/assets/icons/linear/home-wifi.svg b/assets/icons/linear/home-wi-fi.svg similarity index 100% rename from assets/icons/linear/home-wifi.svg rename to assets/icons/linear/home-wi-fi.svg diff --git a/assets/icons/linear/home.svg b/assets/icons/linear/home.svg index a80e0b75..bd3d56fa 100644 --- a/assets/icons/linear/home.svg +++ b/assets/icons/linear/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hospital.svg b/assets/icons/linear/hospital.svg index 7cae9f5d..6339ba90 100644 --- a/assets/icons/linear/hospital.svg +++ b/assets/icons/linear/hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/hourglass-line.svg b/assets/icons/linear/hourglass-line.svg index cd73176e..ace9cd40 100644 --- a/assets/icons/linear/hourglass-line.svg +++ b/assets/icons/linear/hourglass-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/house.svg b/assets/icons/linear/house.svg new file mode 100644 index 00000000..a7f094c6 --- /dev/null +++ b/assets/icons/linear/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/iphone.svg b/assets/icons/linear/i-phone.svg similarity index 56% rename from assets/icons/line_duotone/iphone.svg rename to assets/icons/linear/i-phone.svg index 8298d4d7..8cf9930d 100644 --- a/assets/icons/line_duotone/iphone.svg +++ b/assets/icons/linear/i-phone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/import.svg b/assets/icons/linear/import.svg index 7b9c417e..58a22a54 100644 --- a/assets/icons/linear/import.svg +++ b/assets/icons/linear/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/inbox-in.svg b/assets/icons/linear/inbox-in.svg index 86becdd4..e915d029 100644 --- a/assets/icons/linear/inbox-in.svg +++ b/assets/icons/linear/inbox-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/inbox-line.svg b/assets/icons/linear/inbox-line.svg index 7df4fd3a..059b831f 100644 --- a/assets/icons/linear/inbox-line.svg +++ b/assets/icons/linear/inbox-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/inbox-out.svg b/assets/icons/linear/inbox-out.svg index 176c599a..cc036de2 100644 --- a/assets/icons/linear/inbox-out.svg +++ b/assets/icons/linear/inbox-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/incognito.svg b/assets/icons/linear/incognito.svg index fd5a4c04..57d26adc 100644 --- a/assets/icons/linear/incognito.svg +++ b/assets/icons/linear/incognito.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/incoming-call-rounded.svg b/assets/icons/linear/incoming-call-rounded.svg index bf211324..e7497c17 100644 --- a/assets/icons/linear/incoming-call-rounded.svg +++ b/assets/icons/linear/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/incoming-call.svg b/assets/icons/linear/incoming-call.svg index 3db460b7..eb5db1e5 100644 --- a/assets/icons/linear/incoming-call.svg +++ b/assets/icons/linear/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/infinity.svg b/assets/icons/linear/infinite.svg similarity index 100% rename from assets/icons/linear/infinity.svg rename to assets/icons/linear/infinite.svg diff --git a/assets/icons/linear/info-circle.svg b/assets/icons/linear/info-circle.svg index b706476c..c9d71102 100644 --- a/assets/icons/linear/info-circle.svg +++ b/assets/icons/linear/info-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/info-square.svg b/assets/icons/linear/info-square.svg index ae9cafdf..75a95d85 100644 --- a/assets/icons/linear/info-square.svg +++ b/assets/icons/linear/info-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/jar-of-pills-2.svg b/assets/icons/linear/jar-of-pills-2.svg index f553728e..39a7cac5 100644 --- a/assets/icons/linear/jar-of-pills-2.svg +++ b/assets/icons/linear/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/jar-of-pills.svg b/assets/icons/linear/jar-of-pills.svg index 0633c00b..bf53b04f 100644 --- a/assets/icons/linear/jar-of-pills.svg +++ b/assets/icons/linear/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/key-minimalistic-2.svg b/assets/icons/linear/key-minimalistic-2.svg index fd30294e..91bc790d 100644 --- a/assets/icons/linear/key-minimalistic-2.svg +++ b/assets/icons/linear/key-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/key-minimalistic-square-2.svg b/assets/icons/linear/key-minimalistic-square-2.svg index 24866197..7c537255 100644 --- a/assets/icons/linear/key-minimalistic-square-2.svg +++ b/assets/icons/linear/key-minimalistic-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/key-minimalistic-square.svg b/assets/icons/linear/key-minimalistic-square.svg index 96d5adfa..42d8fe53 100644 --- a/assets/icons/linear/key-minimalistic-square.svg +++ b/assets/icons/linear/key-minimalistic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/key-minimalistic.svg b/assets/icons/linear/key-minimalistic.svg index e53818be..274aebd8 100644 --- a/assets/icons/linear/key-minimalistic.svg +++ b/assets/icons/linear/key-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/keyboard.svg b/assets/icons/linear/keyboard.svg index f81c43c9..2e048c84 100644 --- a/assets/icons/linear/keyboard.svg +++ b/assets/icons/linear/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/kick-scooter.svg b/assets/icons/linear/kick-scooter.svg index 2ff66c03..f3b81e03 100644 --- a/assets/icons/linear/kick-scooter.svg +++ b/assets/icons/linear/kick-scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lamp.svg b/assets/icons/linear/lamp.svg index 81037195..5e0001dc 100644 --- a/assets/icons/linear/lamp.svg +++ b/assets/icons/linear/lamp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/laptop-minimalistic.svg b/assets/icons/linear/laptop-minimalistic.svg index f6b0edf2..e350ed2a 100644 --- a/assets/icons/linear/laptop-minimalistic.svg +++ b/assets/icons/linear/laptop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/laptop.svg b/assets/icons/linear/laptop.svg index a0f84ed0..0d4c6f8a 100644 --- a/assets/icons/linear/laptop.svg +++ b/assets/icons/linear/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/layers-minimalistic.svg b/assets/icons/linear/layers-minimalistic.svg index 618d146a..eeb576fc 100644 --- a/assets/icons/linear/layers-minimalistic.svg +++ b/assets/icons/linear/layers-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/leaf.svg b/assets/icons/linear/leaf.svg index 2d0c509f..d5b80601 100644 --- a/assets/icons/linear/leaf.svg +++ b/assets/icons/linear/leaf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/letter-opened.svg b/assets/icons/linear/letter-opened.svg index 884fc5c7..84371a42 100644 --- a/assets/icons/linear/letter-opened.svg +++ b/assets/icons/linear/letter-opened.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/library.svg b/assets/icons/linear/library.svg index 87d89202..b10879db 100644 --- a/assets/icons/linear/library.svg +++ b/assets/icons/linear/library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lightbulb.svg b/assets/icons/linear/lightbulb.svg index ece1e307..61788955 100644 --- a/assets/icons/linear/lightbulb.svg +++ b/assets/icons/linear/lightbulb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lightning.svg b/assets/icons/linear/lightning.svg index ad834ffa..8ff5e7be 100644 --- a/assets/icons/linear/lightning.svg +++ b/assets/icons/linear/lightning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/like.svg b/assets/icons/linear/like.svg index 34e168a2..8499aff6 100644 --- a/assets/icons/linear/like.svg +++ b/assets/icons/linear/like.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/link-broken-minimalistic.svg b/assets/icons/linear/link-broken-minimalistic.svg deleted file mode 100644 index 93d62253..00000000 --- a/assets/icons/linear/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/link-broken.svg b/assets/icons/linear/link-broken.svg deleted file mode 100644 index 9e41825c..00000000 --- a/assets/icons/linear/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/link-minimalistic-2.svg b/assets/icons/linear/link-minimalistic-2.svg index 14d5c6de..621fa559 100644 --- a/assets/icons/linear/link-minimalistic-2.svg +++ b/assets/icons/linear/link-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/link-minimalistic.svg b/assets/icons/linear/link-minimalistic.svg index dfe91fc3..732e3465 100644 --- a/assets/icons/linear/link-minimalistic.svg +++ b/assets/icons/linear/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-arrow-down-minimalistic.svg b/assets/icons/linear/list-arrow-down-minimalistic.svg index 0531fe76..4c658f9e 100644 --- a/assets/icons/linear/list-arrow-down-minimalistic.svg +++ b/assets/icons/linear/list-arrow-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-arrow-down.svg b/assets/icons/linear/list-arrow-down.svg index 65c0cc3e..392c4c41 100644 --- a/assets/icons/linear/list-arrow-down.svg +++ b/assets/icons/linear/list-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-arrow-up-minimalistic.svg b/assets/icons/linear/list-arrow-up-minimalistic.svg index e8fd3916..b3720e2f 100644 --- a/assets/icons/linear/list-arrow-up-minimalistic.svg +++ b/assets/icons/linear/list-arrow-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-arrow-up.svg b/assets/icons/linear/list-arrow-up.svg index 26e6f3d6..f50a097f 100644 --- a/assets/icons/linear/list-arrow-up.svg +++ b/assets/icons/linear/list-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-check-minimalistic.svg b/assets/icons/linear/list-check-minimalistic.svg index 18e6107e..a2ed762a 100644 --- a/assets/icons/linear/list-check-minimalistic.svg +++ b/assets/icons/linear/list-check-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-check.svg b/assets/icons/linear/list-check.svg index 19f3acfc..5f1bad41 100644 --- a/assets/icons/linear/list-check.svg +++ b/assets/icons/linear/list-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-cross-minimalistic.svg b/assets/icons/linear/list-cross-minimalistic.svg index 5c732e43..62862744 100644 --- a/assets/icons/linear/list-cross-minimalistic.svg +++ b/assets/icons/linear/list-cross-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-cross.svg b/assets/icons/linear/list-cross.svg index 18006f41..4d04f57c 100644 --- a/assets/icons/linear/list-cross.svg +++ b/assets/icons/linear/list-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-down-minimalistic.svg b/assets/icons/linear/list-down-minimalistic.svg index 77664ea3..09209563 100644 --- a/assets/icons/linear/list-down-minimalistic.svg +++ b/assets/icons/linear/list-down-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-down.svg b/assets/icons/linear/list-down.svg index 5bec0a38..8b947906 100644 --- a/assets/icons/linear/list-down.svg +++ b/assets/icons/linear/list-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-heart-minimalistic.svg b/assets/icons/linear/list-heart-minimalistic.svg index ac6ce935..73b01789 100644 --- a/assets/icons/linear/list-heart-minimalistic.svg +++ b/assets/icons/linear/list-heart-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-heart.svg b/assets/icons/linear/list-heart.svg index 9b0fe5c2..2b0db4bb 100644 --- a/assets/icons/linear/list-heart.svg +++ b/assets/icons/linear/list-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-up-minimalistic.svg b/assets/icons/linear/list-up-minimalistic.svg index 41fce890..4be8d099 100644 --- a/assets/icons/linear/list-up-minimalistic.svg +++ b/assets/icons/linear/list-up-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-up.svg b/assets/icons/linear/list-up.svg index e963d83e..f795c7d1 100644 --- a/assets/icons/linear/list-up.svg +++ b/assets/icons/linear/list-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/list-vertical.svg b/assets/icons/linear/list-vertical.svg new file mode 100644 index 00000000..1901f0cb --- /dev/null +++ b/assets/icons/linear/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/list.svg b/assets/icons/linear/list.svg index e34a3cf9..39dc612a 100644 --- a/assets/icons/linear/list.svg +++ b/assets/icons/linear/list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lock-keyhole-minimalistic-unlocked.svg b/assets/icons/linear/lock-keyhole-minimalistic-unlocked.svg index 05a93852..eff7462f 100644 --- a/assets/icons/linear/lock-keyhole-minimalistic-unlocked.svg +++ b/assets/icons/linear/lock-keyhole-minimalistic-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lock-keyhole-minimalistic.svg b/assets/icons/linear/lock-keyhole-minimalistic.svg index 9065972d..ef2fd81a 100644 --- a/assets/icons/linear/lock-keyhole-minimalistic.svg +++ b/assets/icons/linear/lock-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lock-password-unlocked.svg b/assets/icons/linear/lock-password-unlocked.svg index 10d8c48c..4c2b2f0a 100644 --- a/assets/icons/linear/lock-password-unlocked.svg +++ b/assets/icons/linear/lock-password-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/lock-password.svg b/assets/icons/linear/lock-password.svg index 4bcf2d9d..b4977e58 100644 --- a/assets/icons/linear/lock-password.svg +++ b/assets/icons/linear/lock-password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/login-2.svg b/assets/icons/linear/login-2.svg index f2c827c8..8d02c3c0 100644 --- a/assets/icons/linear/login-2.svg +++ b/assets/icons/linear/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/login-3.svg b/assets/icons/linear/login-3.svg index 3305dc58..529adad0 100644 --- a/assets/icons/linear/login-3.svg +++ b/assets/icons/linear/login-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/login.svg b/assets/icons/linear/login.svg index e9d35d5c..70fd2ac7 100644 --- a/assets/icons/linear/login.svg +++ b/assets/icons/linear/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/logout-2.svg b/assets/icons/linear/logout-2.svg new file mode 100644 index 00000000..65511a6f --- /dev/null +++ b/assets/icons/linear/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/logout-3.svg b/assets/icons/linear/logout-3.svg index 402b0f7c..06f6f02e 100644 --- a/assets/icons/linear/logout-3.svg +++ b/assets/icons/linear/logout-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/logout.svg b/assets/icons/linear/logout.svg new file mode 100644 index 00000000..6a01ac1e --- /dev/null +++ b/assets/icons/linear/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/magic-stick-3.svg b/assets/icons/linear/magic-stick-3.svg deleted file mode 100644 index 853ba2fd..00000000 --- a/assets/icons/linear/magic-stick-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/line_duotone/magic-stick-2.svg b/assets/icons/linear/magic-wand-2.svg similarity index 72% rename from assets/icons/line_duotone/magic-stick-2.svg rename to assets/icons/linear/magic-wand-2.svg index f19d8ea3..316d29c4 100644 --- a/assets/icons/line_duotone/magic-stick-2.svg +++ b/assets/icons/linear/magic-wand-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magic-wand-3.svg b/assets/icons/linear/magic-wand-3.svg new file mode 100644 index 00000000..1ed32bd8 --- /dev/null +++ b/assets/icons/linear/magic-wand-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/line_duotone/magic-stick.svg b/assets/icons/linear/magic-wand.svg similarity index 78% rename from assets/icons/line_duotone/magic-stick.svg rename to assets/icons/linear/magic-wand.svg index f15dadfb..4487145c 100644 --- a/assets/icons/line_duotone/magic-stick.svg +++ b/assets/icons/linear/magic-wand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magnet-wave.svg b/assets/icons/linear/magnet-wave.svg index 47afc36b..40fe6819 100644 --- a/assets/icons/linear/magnet-wave.svg +++ b/assets/icons/linear/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magnifer-bug.svg b/assets/icons/linear/magnifier-bug.svg similarity index 81% rename from assets/icons/linear/magnifer-bug.svg rename to assets/icons/linear/magnifier-bug.svg index 405a6920..19079ac4 100644 --- a/assets/icons/linear/magnifer-bug.svg +++ b/assets/icons/linear/magnifier-bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magnifer-zoom-out.svg b/assets/icons/linear/magnifier-zoom-in.svg similarity index 67% rename from assets/icons/linear/magnifer-zoom-out.svg rename to assets/icons/linear/magnifier-zoom-in.svg index aeff4e1d..e74bac8d 100644 --- a/assets/icons/linear/magnifer-zoom-out.svg +++ b/assets/icons/linear/magnifier-zoom-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magnifer-zoom-in.svg b/assets/icons/linear/magnifier-zoom-out.svg similarity index 74% rename from assets/icons/linear/magnifer-zoom-in.svg rename to assets/icons/linear/magnifier-zoom-out.svg index 29155434..660d7b81 100644 --- a/assets/icons/linear/magnifer-zoom-in.svg +++ b/assets/icons/linear/magnifier-zoom-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/magnifer.svg b/assets/icons/linear/magnifier.svg similarity index 100% rename from assets/icons/linear/magnifer.svg rename to assets/icons/linear/magnifier.svg diff --git a/assets/icons/linear/mailbox.svg b/assets/icons/linear/mailbox.svg index 7ededc5c..dc14c4ba 100644 --- a/assets/icons/linear/mailbox.svg +++ b/assets/icons/linear/mailbox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/map-point-favorite.svg b/assets/icons/linear/map-point-favorite.svg new file mode 100644 index 00000000..02b72150 --- /dev/null +++ b/assets/icons/linear/map-point-favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/map-point-favourite.svg b/assets/icons/linear/map-point-favourite.svg deleted file mode 100644 index 46ee0977..00000000 --- a/assets/icons/linear/map-point-favourite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/map-point-hospital.svg b/assets/icons/linear/map-point-hospital.svg index f65b1658..d35227f6 100644 --- a/assets/icons/linear/map-point-hospital.svg +++ b/assets/icons/linear/map-point-hospital.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/map-point-rotate.svg b/assets/icons/linear/map-point-rotate.svg index 74e7d15e..cc595c55 100644 --- a/assets/icons/linear/map-point-rotate.svg +++ b/assets/icons/linear/map-point-rotate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/map.svg b/assets/icons/linear/map.svg index 22611c77..6230cd2e 100644 --- a/assets/icons/linear/map.svg +++ b/assets/icons/linear/map.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/mask-happly.svg b/assets/icons/linear/mask-happy.svg similarity index 67% rename from assets/icons/linear/mask-happly.svg rename to assets/icons/linear/mask-happy.svg index 02ac828d..ba0a82b6 100644 --- a/assets/icons/linear/mask-happly.svg +++ b/assets/icons/linear/mask-happy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/mask-sad.svg b/assets/icons/linear/mask-sad.svg index 8c45c027..a34d3e92 100644 --- a/assets/icons/linear/mask-sad.svg +++ b/assets/icons/linear/mask-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/masks.svg b/assets/icons/linear/masks.svg index f86f1961..3afc1a5a 100644 --- a/assets/icons/linear/masks.svg +++ b/assets/icons/linear/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/maximize-square-2.svg b/assets/icons/linear/maximize-square-2.svg index 697146f6..59643b63 100644 --- a/assets/icons/linear/maximize-square-2.svg +++ b/assets/icons/linear/maximize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/maximize-square-3.svg b/assets/icons/linear/maximize-square-3.svg index 5f75a784..31a55458 100644 --- a/assets/icons/linear/maximize-square-3.svg +++ b/assets/icons/linear/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/maximize-square-minimalistic.svg b/assets/icons/linear/maximize-square-minimalistic.svg index 9c599400..a60c0ff8 100644 --- a/assets/icons/linear/maximize-square-minimalistic.svg +++ b/assets/icons/linear/maximize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/maximize-square.svg b/assets/icons/linear/maximize-square.svg index c375b94f..e6b18575 100644 --- a/assets/icons/linear/maximize-square.svg +++ b/assets/icons/linear/maximize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/maximize.svg b/assets/icons/linear/maximize.svg index 2cb498b6..0ee68e57 100644 --- a/assets/icons/linear/maximize.svg +++ b/assets/icons/linear/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/medal-ribbons-star.svg b/assets/icons/linear/medal-ribbons-star.svg index ae9f18af..04666b5e 100644 --- a/assets/icons/linear/medal-ribbons-star.svg +++ b/assets/icons/linear/medal-ribbons-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/medal-star-circle.svg b/assets/icons/linear/medal-star-circle.svg index 5f1533ca..bb5e0c6b 100644 --- a/assets/icons/linear/medal-star-circle.svg +++ b/assets/icons/linear/medal-star-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/medal-star-square.svg b/assets/icons/linear/medal-star-square.svg index b13cb174..c1f27d72 100644 --- a/assets/icons/linear/medal-star-square.svg +++ b/assets/icons/linear/medal-star-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/medical-kit.svg b/assets/icons/linear/medical-kit.svg index e83e130f..78812ae1 100644 --- a/assets/icons/linear/medical-kit.svg +++ b/assets/icons/linear/medical-kit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/men.svg b/assets/icons/linear/men.svg index 12344cea..c12f8e54 100644 --- a/assets/icons/linear/men.svg +++ b/assets/icons/linear/men.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/menu-dots-circle.svg b/assets/icons/linear/menu-dots-circle.svg index 9a5151d1..5c07cebc 100644 --- a/assets/icons/linear/menu-dots-circle.svg +++ b/assets/icons/linear/menu-dots-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/menu-dots-square.svg b/assets/icons/linear/menu-dots-square.svg index 532c9753..548b83df 100644 --- a/assets/icons/linear/menu-dots-square.svg +++ b/assets/icons/linear/menu-dots-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/microphone-2.svg b/assets/icons/linear/microphone-2.svg index 05937c8b..410bd196 100644 --- a/assets/icons/linear/microphone-2.svg +++ b/assets/icons/linear/microphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/microphone-3.svg b/assets/icons/linear/microphone-3.svg index 7efc3ff9..c1f918f9 100644 --- a/assets/icons/linear/microphone-3.svg +++ b/assets/icons/linear/microphone-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/microphone-large.svg b/assets/icons/linear/microphone-large.svg index 3dbb1e66..ef69477e 100644 --- a/assets/icons/linear/microphone-large.svg +++ b/assets/icons/linear/microphone-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/microphone.svg b/assets/icons/linear/microphone.svg index 85b9abed..b323c51e 100644 --- a/assets/icons/linear/microphone.svg +++ b/assets/icons/linear/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimalistic-magnifer-bug.svg b/assets/icons/linear/minimalistic-magnifier-bug.svg similarity index 82% rename from assets/icons/linear/minimalistic-magnifer-bug.svg rename to assets/icons/linear/minimalistic-magnifier-bug.svg index 3c4590f6..656a26ab 100644 --- a/assets/icons/linear/minimalistic-magnifer-bug.svg +++ b/assets/icons/linear/minimalistic-magnifier-bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimalistic-magnifer-zoom-out.svg b/assets/icons/linear/minimalistic-magnifier-zoom-in.svg similarity index 68% rename from assets/icons/linear/minimalistic-magnifer-zoom-out.svg rename to assets/icons/linear/minimalistic-magnifier-zoom-in.svg index 8524945e..27dbe4a1 100644 --- a/assets/icons/linear/minimalistic-magnifer-zoom-out.svg +++ b/assets/icons/linear/minimalistic-magnifier-zoom-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimalistic-magnifer-zoom-in.svg b/assets/icons/linear/minimalistic-magnifier-zoom-out.svg similarity index 76% rename from assets/icons/linear/minimalistic-magnifer-zoom-in.svg rename to assets/icons/linear/minimalistic-magnifier-zoom-out.svg index cab0f18d..509cfd43 100644 --- a/assets/icons/linear/minimalistic-magnifer-zoom-in.svg +++ b/assets/icons/linear/minimalistic-magnifier-zoom-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimalistic-magnifer.svg b/assets/icons/linear/minimalistic-magnifier.svg similarity index 100% rename from assets/icons/linear/minimalistic-magnifer.svg rename to assets/icons/linear/minimalistic-magnifier.svg diff --git a/assets/icons/linear/minimize-square-2.svg b/assets/icons/linear/minimize-square-2.svg index a17b484c..2451557a 100644 --- a/assets/icons/linear/minimize-square-2.svg +++ b/assets/icons/linear/minimize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimize-square-3.svg b/assets/icons/linear/minimize-square-3.svg index 6e7cb229..dd0e6496 100644 --- a/assets/icons/linear/minimize-square-3.svg +++ b/assets/icons/linear/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimize-square-minimalistic.svg b/assets/icons/linear/minimize-square-minimalistic.svg index 7f836186..cc3a0a3a 100644 --- a/assets/icons/linear/minimize-square-minimalistic.svg +++ b/assets/icons/linear/minimize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimize-square.svg b/assets/icons/linear/minimize-square.svg index f1c60b02..794d3329 100644 --- a/assets/icons/linear/minimize-square.svg +++ b/assets/icons/linear/minimize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/minimize.svg b/assets/icons/linear/minimize.svg index 631367f0..c3eafa68 100644 --- a/assets/icons/linear/minimize.svg +++ b/assets/icons/linear/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/mirror-2.svg b/assets/icons/linear/mirror-2.svg new file mode 100644 index 00000000..12acbd26 --- /dev/null +++ b/assets/icons/linear/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/mirror.svg b/assets/icons/linear/mirror.svg index edaaaa63..652b80f4 100644 --- a/assets/icons/linear/mirror.svg +++ b/assets/icons/linear/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/money-bag.svg b/assets/icons/linear/money-bag.svg index 53399302..0f673ce1 100644 --- a/assets/icons/linear/money-bag.svg +++ b/assets/icons/linear/money-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/wad-of-money.svg b/assets/icons/linear/money-roll.svg similarity index 68% rename from assets/icons/line_duotone/wad-of-money.svg rename to assets/icons/linear/money-roll.svg index 55db295d..09c6e8bf 100644 --- a/assets/icons/line_duotone/wad-of-money.svg +++ b/assets/icons/linear/money-roll.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/monitor-camera.svg b/assets/icons/linear/monitor-camera.svg index 668506e8..817cd2da 100644 --- a/assets/icons/linear/monitor-camera.svg +++ b/assets/icons/linear/monitor-camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/monitor-smartphone.svg b/assets/icons/linear/monitor-smartphone.svg index 750ae616..13674fe5 100644 --- a/assets/icons/linear/monitor-smartphone.svg +++ b/assets/icons/linear/monitor-smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/monitor.svg b/assets/icons/linear/monitor.svg index a448eadd..cd3afa56 100644 --- a/assets/icons/linear/monitor.svg +++ b/assets/icons/linear/monitor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/moon-fog.svg b/assets/icons/linear/moon-fog.svg index 24d41b51..8cc02fee 100644 --- a/assets/icons/linear/moon-fog.svg +++ b/assets/icons/linear/moon-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/moon-sleep.svg b/assets/icons/linear/moon-sleep.svg index d20d66d1..4eff6f3f 100644 --- a/assets/icons/linear/moon-sleep.svg +++ b/assets/icons/linear/moon-sleep.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/moon-stars.svg b/assets/icons/linear/moon-stars.svg index 6e6c96bc..1abfe103 100644 --- a/assets/icons/linear/moon-stars.svg +++ b/assets/icons/linear/moon-stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/moon.svg b/assets/icons/linear/moon.svg index 8414c7b0..e779656a 100644 --- a/assets/icons/linear/moon.svg +++ b/assets/icons/linear/moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/mouse-circle.svg b/assets/icons/linear/mouse-circle.svg index 678202cc..1f7df997 100644 --- a/assets/icons/linear/mouse-circle.svg +++ b/assets/icons/linear/mouse-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/move-to-folder.svg b/assets/icons/linear/move-to-folder.svg index 4a61d0c7..ffe95afa 100644 --- a/assets/icons/linear/move-to-folder.svg +++ b/assets/icons/linear/move-to-folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/mug.svg b/assets/icons/linear/mug.svg new file mode 100644 index 00000000..e27c6ff6 --- /dev/null +++ b/assets/icons/linear/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/music-library-2.svg b/assets/icons/linear/music-library-2.svg index ba6987dc..d44aa388 100644 --- a/assets/icons/linear/music-library-2.svg +++ b/assets/icons/linear/music-library-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-library.svg b/assets/icons/linear/music-library.svg index 18d24887..d36fe4b8 100644 --- a/assets/icons/linear/music-library.svg +++ b/assets/icons/linear/music-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-note-3.svg b/assets/icons/linear/music-note-3.svg index 1b50cb8b..e08d65a2 100644 --- a/assets/icons/linear/music-note-3.svg +++ b/assets/icons/linear/music-note-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-note-4.svg b/assets/icons/linear/music-note-4.svg index cef269e4..bf095f99 100644 --- a/assets/icons/linear/music-note-4.svg +++ b/assets/icons/linear/music-note-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-note-slider-2.svg b/assets/icons/linear/music-note-slider-2.svg index 62e9a12d..01c9cf7c 100644 --- a/assets/icons/linear/music-note-slider-2.svg +++ b/assets/icons/linear/music-note-slider-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-note-slider.svg b/assets/icons/linear/music-note-slider.svg index 658cc85e..c96a7a30 100644 --- a/assets/icons/linear/music-note-slider.svg +++ b/assets/icons/linear/music-note-slider.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-note.svg b/assets/icons/linear/music-note.svg index 72e17662..d709a0d4 100644 --- a/assets/icons/linear/music-note.svg +++ b/assets/icons/linear/music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/music-notes.svg b/assets/icons/linear/music-notes.svg index aab6e509..3c65ca13 100644 --- a/assets/icons/linear/music-notes.svg +++ b/assets/icons/linear/music-notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/muted.svg b/assets/icons/linear/muted.svg index bd5a1103..be1c0608 100644 --- a/assets/icons/linear/muted.svg +++ b/assets/icons/linear/muted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notebook-2.svg b/assets/icons/linear/notebook-2.svg new file mode 100644 index 00000000..c6fbe5e8 --- /dev/null +++ b/assets/icons/linear/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/notebook-bookmark.svg b/assets/icons/linear/notebook-bookmark.svg index 741bae24..30e2a0b9 100644 --- a/assets/icons/linear/notebook-bookmark.svg +++ b/assets/icons/linear/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notebook-minimalistic.svg b/assets/icons/linear/notebook-minimalistic.svg index 55d0a207..b4b11453 100644 --- a/assets/icons/linear/notebook-minimalistic.svg +++ b/assets/icons/linear/notebook-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notebook-square.svg b/assets/icons/linear/notebook-square.svg index fe3078bd..94c92a77 100644 --- a/assets/icons/linear/notebook-square.svg +++ b/assets/icons/linear/notebook-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notebook.svg b/assets/icons/linear/notebook.svg index b04da285..dc54371a 100644 --- a/assets/icons/linear/notebook.svg +++ b/assets/icons/linear/notebook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notes.svg b/assets/icons/linear/notes.svg index 5039a0df..1f2ca1ba 100644 --- a/assets/icons/linear/notes.svg +++ b/assets/icons/linear/notes.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notification-lines-remove.svg b/assets/icons/linear/notification-lines-remove.svg index b6ce299e..803468e5 100644 --- a/assets/icons/linear/notification-lines-remove.svg +++ b/assets/icons/linear/notification-lines-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notification-remove.svg b/assets/icons/linear/notification-remove.svg index 1568ca4c..1d9e9730 100644 --- a/assets/icons/linear/notification-remove.svg +++ b/assets/icons/linear/notification-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/notification-unread-lines.svg b/assets/icons/linear/notification-unread-lines.svg index 6389bd98..239004cd 100644 --- a/assets/icons/linear/notification-unread-lines.svg +++ b/assets/icons/linear/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/object-scan.svg b/assets/icons/linear/object-scan.svg index fcd3ec92..66c27a46 100644 --- a/assets/icons/linear/object-scan.svg +++ b/assets/icons/linear/object-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/outgoing-call-rounded.svg b/assets/icons/linear/outgoing-call-rounded.svg index 03df4349..475f2b51 100644 --- a/assets/icons/linear/outgoing-call-rounded.svg +++ b/assets/icons/linear/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/outgoing-call.svg b/assets/icons/linear/outgoing-call.svg index a3e03cc2..33338f07 100644 --- a/assets/icons/linear/outgoing-call.svg +++ b/assets/icons/linear/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/paint-roller.svg b/assets/icons/linear/paint-roller.svg index 8d9ff0b7..cd9b7b80 100644 --- a/assets/icons/linear/paint-roller.svg +++ b/assets/icons/linear/paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/palette-2.svg b/assets/icons/linear/palette-2.svg new file mode 100644 index 00000000..2623fb9d --- /dev/null +++ b/assets/icons/linear/palette-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/palette-round.svg b/assets/icons/linear/palette-round.svg index de09aa8d..1cc68174 100644 --- a/assets/icons/linear/palette-round.svg +++ b/assets/icons/linear/palette-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pallete-2.svg b/assets/icons/linear/pallete-2.svg deleted file mode 100644 index d4fe4920..00000000 --- a/assets/icons/linear/pallete-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/panorama.svg b/assets/icons/linear/panorama.svg index 96914df3..a5bd976f 100644 --- a/assets/icons/linear/panorama.svg +++ b/assets/icons/linear/panorama.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/paper-bin.svg b/assets/icons/linear/paper-bin.svg index ca212ccc..e479ac52 100644 --- a/assets/icons/linear/paper-bin.svg +++ b/assets/icons/linear/paper-bin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/paragraph-spacing.svg b/assets/icons/linear/paragraph-spacing.svg index 48527c53..752adf8c 100644 --- a/assets/icons/linear/paragraph-spacing.svg +++ b/assets/icons/linear/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/passport-minimalistic.svg b/assets/icons/linear/passport-minimalistic.svg index 58e2f121..5f8cb9b8 100644 --- a/assets/icons/linear/passport-minimalistic.svg +++ b/assets/icons/linear/passport-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/passport.svg b/assets/icons/linear/passport.svg index f2049679..6bdabbc9 100644 --- a/assets/icons/linear/passport.svg +++ b/assets/icons/linear/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/password-minimalistic-input.svg b/assets/icons/linear/password-minimalistic-input.svg index 57a34fa0..2bd02571 100644 --- a/assets/icons/linear/password-minimalistic-input.svg +++ b/assets/icons/linear/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/password-minimalistic.svg b/assets/icons/linear/password-minimalistic.svg index 3c979a4b..314d88d1 100644 --- a/assets/icons/linear/password-minimalistic.svg +++ b/assets/icons/linear/password-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/password.svg b/assets/icons/linear/password.svg index 997e60d4..b73275a1 100644 --- a/assets/icons/linear/password.svg +++ b/assets/icons/linear/password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pause-circle.svg b/assets/icons/linear/pause-circle.svg index c539a1d8..b87eccbf 100644 --- a/assets/icons/linear/pause-circle.svg +++ b/assets/icons/linear/pause-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pause.svg b/assets/icons/linear/pause.svg index 99b214ff..cbff7e76 100644 --- a/assets/icons/linear/pause.svg +++ b/assets/icons/linear/pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/paw.svg b/assets/icons/linear/paw.svg index 7029b3dd..8883f58f 100644 --- a/assets/icons/linear/paw.svg +++ b/assets/icons/linear/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pen-2.svg b/assets/icons/linear/pen-2.svg index 2c028252..29a48bf7 100644 --- a/assets/icons/linear/pen-2.svg +++ b/assets/icons/linear/pen-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pen-new-round.svg b/assets/icons/linear/pen-new-round.svg index 63a24aa7..67acc34e 100644 --- a/assets/icons/linear/pen-new-round.svg +++ b/assets/icons/linear/pen-new-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pen-new-square.svg b/assets/icons/linear/pen-new-square.svg index c63bc109..85f8517d 100644 --- a/assets/icons/linear/pen-new-square.svg +++ b/assets/icons/linear/pen-new-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pen.svg b/assets/icons/linear/pen.svg index 7a95d5b5..9082f0f6 100644 --- a/assets/icons/linear/pen.svg +++ b/assets/icons/linear/pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/people-nearby.svg b/assets/icons/linear/people-nearby.svg index 27c77898..66223cf8 100644 --- a/assets/icons/linear/people-nearby.svg +++ b/assets/icons/linear/people-nearby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/perfume.svg b/assets/icons/linear/perfume.svg index 92008a0b..72c51982 100644 --- a/assets/icons/linear/perfume.svg +++ b/assets/icons/linear/perfume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/phone-calling-rounded.svg b/assets/icons/linear/phone-calling-rounded.svg index fbef8c7e..6c3c7c03 100644 --- a/assets/icons/linear/phone-calling-rounded.svg +++ b/assets/icons/linear/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/phone-calling.svg b/assets/icons/linear/phone-calling.svg index 5bf6abf6..b2c12c2d 100644 --- a/assets/icons/linear/phone-calling.svg +++ b/assets/icons/linear/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/phone.svg b/assets/icons/linear/phone.svg index 47adb25f..6598a297 100644 --- a/assets/icons/linear/phone.svg +++ b/assets/icons/linear/phone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pills-2.svg b/assets/icons/linear/pills-2.svg index 69fab282..cee3830d 100644 --- a/assets/icons/linear/pills-2.svg +++ b/assets/icons/linear/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pills-3.svg b/assets/icons/linear/pills-3.svg index d77bf67b..abd4345f 100644 --- a/assets/icons/linear/pills-3.svg +++ b/assets/icons/linear/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pin-circle.svg b/assets/icons/linear/pin-circle.svg index d48f9aff..9c6b391a 100644 --- a/assets/icons/linear/pin-circle.svg +++ b/assets/icons/linear/pin-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pin-list.svg b/assets/icons/linear/pin-list.svg index 16854c73..6248dc46 100644 --- a/assets/icons/linear/pin-list.svg +++ b/assets/icons/linear/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pin.svg b/assets/icons/linear/pin.svg index 4a3cda5a..6046eee4 100644 --- a/assets/icons/linear/pin.svg +++ b/assets/icons/linear/pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/pipette.svg b/assets/icons/linear/pipette.svg index 7385974d..10e9991e 100644 --- a/assets/icons/linear/pipette.svg +++ b/assets/icons/linear/pipette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/plaaylist-minimalistic.svg b/assets/icons/linear/plaaylist-minimalistic.svg deleted file mode 100644 index 76787234..00000000 --- a/assets/icons/linear/plaaylist-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/plain-2.svg b/assets/icons/linear/plane-2.svg similarity index 100% rename from assets/icons/linear/plain-2.svg rename to assets/icons/linear/plane-2.svg diff --git a/assets/icons/linear/plain-3.svg b/assets/icons/linear/plane-3.svg similarity index 100% rename from assets/icons/linear/plain-3.svg rename to assets/icons/linear/plane-3.svg diff --git a/assets/icons/line_duotone/plain.svg b/assets/icons/linear/plane.svg similarity index 62% rename from assets/icons/line_duotone/plain.svg rename to assets/icons/linear/plane.svg index 059d9e89..052edbe5 100644 --- a/assets/icons/line_duotone/plain.svg +++ b/assets/icons/linear/plane.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/planet-3.svg b/assets/icons/linear/planet-3.svg index ed6bc908..62c401f9 100644 --- a/assets/icons/linear/planet-3.svg +++ b/assets/icons/linear/planet-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/planet-4.svg b/assets/icons/linear/planet-4.svg index fad0ab7e..7488b128 100644 --- a/assets/icons/linear/planet-4.svg +++ b/assets/icons/linear/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/plate.svg b/assets/icons/linear/plate.svg index c9c9e5fa..94079f6c 100644 --- a/assets/icons/linear/plate.svg +++ b/assets/icons/linear/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/play-stream.svg b/assets/icons/linear/play-stream.svg index ccf41cf3..4e87dd25 100644 --- a/assets/icons/linear/play-stream.svg +++ b/assets/icons/linear/play-stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/playlist-2.svg b/assets/icons/linear/playlist-2.svg index c40ebcf8..71aabd75 100644 --- a/assets/icons/linear/playlist-2.svg +++ b/assets/icons/linear/playlist-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/playlist-minimalistic-2.svg b/assets/icons/linear/playlist-minimalistic-2.svg index 2a6f75f2..8554006d 100644 --- a/assets/icons/linear/playlist-minimalistic-2.svg +++ b/assets/icons/linear/playlist-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/playlist-minimalistic-3.svg b/assets/icons/linear/playlist-minimalistic-3.svg index 79d8468b..b65a7b8d 100644 --- a/assets/icons/linear/playlist-minimalistic-3.svg +++ b/assets/icons/linear/playlist-minimalistic-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/playlist-minimalistic.svg b/assets/icons/linear/playlist-minimalistic.svg new file mode 100644 index 00000000..5703aa6d --- /dev/null +++ b/assets/icons/linear/playlist-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/playlist.svg b/assets/icons/linear/playlist.svg index b57030a7..d505ade7 100644 --- a/assets/icons/linear/playlist.svg +++ b/assets/icons/linear/playlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/plug-circle.svg b/assets/icons/linear/plug-circle.svg index 0ad6068e..99dcc931 100644 --- a/assets/icons/linear/plug-circle.svg +++ b/assets/icons/linear/plug-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/plus-minus.svg b/assets/icons/linear/plus-minus.svg index d9e903bf..26d9e84f 100644 --- a/assets/icons/linear/plus-minus.svg +++ b/assets/icons/linear/plus-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/podcast.svg b/assets/icons/linear/podcast.svg index 3487081c..f1fcce58 100644 --- a/assets/icons/linear/podcast.svg +++ b/assets/icons/linear/podcast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/point-on-map-perspective.svg b/assets/icons/linear/point-on-map-perspective.svg index cf09e01c..53349408 100644 --- a/assets/icons/linear/point-on-map-perspective.svg +++ b/assets/icons/linear/point-on-map-perspective.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/posts-carousel-horizontal.svg b/assets/icons/linear/posts-carousel-horizontal.svg index 9794a30c..6e016cc8 100644 --- a/assets/icons/linear/posts-carousel-horizontal.svg +++ b/assets/icons/linear/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/posts-carousel-vertical.svg b/assets/icons/linear/posts-carousel-vertical.svg index 856e9312..a1db295e 100644 --- a/assets/icons/linear/posts-carousel-vertical.svg +++ b/assets/icons/linear/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/power.svg b/assets/icons/linear/power.svg index d5beb5d8..1258c689 100644 --- a/assets/icons/linear/power.svg +++ b/assets/icons/linear/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/presentation-graph.svg b/assets/icons/linear/presentation-graph.svg index 2e312d83..6f525244 100644 --- a/assets/icons/linear/presentation-graph.svg +++ b/assets/icons/linear/presentation-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/printer-2.svg b/assets/icons/linear/printer-2.svg index 8828c914..8ef6dc4d 100644 --- a/assets/icons/linear/printer-2.svg +++ b/assets/icons/linear/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/printer-minimalistic.svg b/assets/icons/linear/printer-minimalistic.svg index 0136461e..acfd8ec2 100644 --- a/assets/icons/linear/printer-minimalistic.svg +++ b/assets/icons/linear/printer-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/printer.svg b/assets/icons/linear/printer.svg index a3959224..812ad7b1 100644 --- a/assets/icons/linear/printer.svg +++ b/assets/icons/linear/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/programming.svg b/assets/icons/linear/programming.svg index 31c9986d..48d8d365 100644 --- a/assets/icons/linear/programming.svg +++ b/assets/icons/linear/programming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/projector.svg b/assets/icons/linear/projector.svg index a8c316d0..d224af24 100644 --- a/assets/icons/linear/projector.svg +++ b/assets/icons/linear/projector.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/qr-code.svg b/assets/icons/linear/qr-code.svg index a73bdd55..8bfadc67 100644 --- a/assets/icons/linear/qr-code.svg +++ b/assets/icons/linear/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/question-circle.svg b/assets/icons/linear/question-circle.svg index 91123077..95af6e25 100644 --- a/assets/icons/linear/question-circle.svg +++ b/assets/icons/linear/question-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/quit-full-screen-circle.svg b/assets/icons/linear/quit-full-screen-circle.svg index 64c9be67..a5c9a926 100644 --- a/assets/icons/linear/quit-full-screen-circle.svg +++ b/assets/icons/linear/quit-full-screen-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/quit-full-screen-square.svg b/assets/icons/linear/quit-full-screen-square.svg index 73547488..1015460f 100644 --- a/assets/icons/linear/quit-full-screen-square.svg +++ b/assets/icons/linear/quit-full-screen-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/quit-full-screen.svg b/assets/icons/linear/quit-full-screen.svg index f7f0b8d5..cf11df79 100644 --- a/assets/icons/linear/quit-full-screen.svg +++ b/assets/icons/linear/quit-full-screen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/quit-pip.svg b/assets/icons/linear/quit-pip.svg index c97a1ae7..0ba7a4e2 100644 --- a/assets/icons/linear/quit-pip.svg +++ b/assets/icons/linear/quit-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/radar-2.svg b/assets/icons/linear/radar-2.svg index 107564e8..dee6b64e 100644 --- a/assets/icons/linear/radar-2.svg +++ b/assets/icons/linear/radar-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/radial-blur.svg b/assets/icons/linear/radial-blur.svg index 47ce9703..b5f14f98 100644 --- a/assets/icons/linear/radial-blur.svg +++ b/assets/icons/linear/radial-blur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/radio-minimalistic.svg b/assets/icons/linear/radio-minimalistic.svg index a8b3ee52..134b5a04 100644 --- a/assets/icons/linear/radio-minimalistic.svg +++ b/assets/icons/linear/radio-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/radio.svg b/assets/icons/linear/radio.svg index 0b52dee8..1d8e90ee 100644 --- a/assets/icons/linear/radio.svg +++ b/assets/icons/linear/radio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ranking.svg b/assets/icons/linear/ranking.svg index c9169324..8e5d6e6e 100644 --- a/assets/icons/linear/ranking.svg +++ b/assets/icons/linear/ranking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/receive-square.svg b/assets/icons/linear/receive-square.svg new file mode 100644 index 00000000..5ff54d53 --- /dev/null +++ b/assets/icons/linear/receive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/receive-twice-square.svg b/assets/icons/linear/receive-twice-square.svg new file mode 100644 index 00000000..025c2d47 --- /dev/null +++ b/assets/icons/linear/receive-twice-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/recive-square.svg b/assets/icons/linear/recive-square.svg deleted file mode 100644 index c1824726..00000000 --- a/assets/icons/linear/recive-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/recive-twice-square.svg b/assets/icons/linear/recive-twice-square.svg deleted file mode 100644 index 89cf6d83..00000000 --- a/assets/icons/linear/recive-twice-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/record-audio-circle.svg b/assets/icons/linear/record-audio-circle.svg new file mode 100644 index 00000000..14847e34 --- /dev/null +++ b/assets/icons/linear/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/record-minimalistic.svg b/assets/icons/linear/record-minimalistic.svg index aad52591..8ef54a85 100644 --- a/assets/icons/linear/record-minimalistic.svg +++ b/assets/icons/linear/record-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/record-square.svg b/assets/icons/linear/record-square.svg index 9e47651b..21c31ec1 100644 --- a/assets/icons/linear/record-square.svg +++ b/assets/icons/linear/record-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/reel-2.svg b/assets/icons/linear/reel-2.svg index 5e28db0e..e45349b2 100644 --- a/assets/icons/linear/reel-2.svg +++ b/assets/icons/linear/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/reel.svg b/assets/icons/linear/reel.svg index 72bc1852..57e33717 100644 --- a/assets/icons/linear/reel.svg +++ b/assets/icons/linear/reel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/refresh-circle.svg b/assets/icons/linear/refresh-circle.svg index cf4b1f88..d8dad7d3 100644 --- a/assets/icons/linear/refresh-circle.svg +++ b/assets/icons/linear/refresh-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/refresh-square.svg b/assets/icons/linear/refresh-square.svg index dc5c79d9..4cfc8c4d 100644 --- a/assets/icons/linear/refresh-square.svg +++ b/assets/icons/linear/refresh-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/refresh.svg b/assets/icons/linear/refresh.svg index e06974a7..21a63dde 100644 --- a/assets/icons/linear/refresh.svg +++ b/assets/icons/linear/refresh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/remote-controller-2.svg b/assets/icons/linear/remote-controller-2.svg index e931b0d9..91273615 100644 --- a/assets/icons/linear/remote-controller-2.svg +++ b/assets/icons/linear/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/remote-controller-minimalistic.svg b/assets/icons/linear/remote-controller-minimalistic.svg index 87814175..8c68a2d3 100644 --- a/assets/icons/linear/remote-controller-minimalistic.svg +++ b/assets/icons/linear/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/remote-controller.svg b/assets/icons/linear/remote-controller.svg index b491aaa7..32dbe57f 100644 --- a/assets/icons/linear/remote-controller.svg +++ b/assets/icons/linear/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/reorder-2.svg b/assets/icons/linear/reorder-2.svg new file mode 100644 index 00000000..5d3edc40 --- /dev/null +++ b/assets/icons/linear/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/reorder.svg b/assets/icons/linear/reorder.svg index 4e251248..fc9200a5 100644 --- a/assets/icons/linear/reorder.svg +++ b/assets/icons/linear/reorder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/repeat-one-minimalistic.svg b/assets/icons/linear/repeat-one-minimalistic.svg index 0ee49140..d6efcdfc 100644 --- a/assets/icons/linear/repeat-one-minimalistic.svg +++ b/assets/icons/linear/repeat-one-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/repeat-one.svg b/assets/icons/linear/repeat-one.svg index dc433fee..f3c4c9ea 100644 --- a/assets/icons/linear/repeat-one.svg +++ b/assets/icons/linear/repeat-one.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/repeat.svg b/assets/icons/linear/repeat.svg index e5460e90..cdc25a66 100644 --- a/assets/icons/linear/repeat.svg +++ b/assets/icons/linear/repeat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/reply-2.svg b/assets/icons/linear/reply-2.svg index b384788c..3c8efdba 100644 --- a/assets/icons/linear/reply-2.svg +++ b/assets/icons/linear/reply-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/reply.svg b/assets/icons/linear/reply.svg index f741a328..61bd8d75 100644 --- a/assets/icons/linear/reply.svg +++ b/assets/icons/linear/reply.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/restart-circle.svg b/assets/icons/linear/restart-circle.svg index 921014c8..f0e790dc 100644 --- a/assets/icons/linear/restart-circle.svg +++ b/assets/icons/linear/restart-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/restart-square.svg b/assets/icons/linear/restart-square.svg index e4954506..6eeba807 100644 --- a/assets/icons/linear/restart-square.svg +++ b/assets/icons/linear/restart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/restart.svg b/assets/icons/linear/restart.svg index ee32ad4f..f9397eab 100644 --- a/assets/icons/linear/restart.svg +++ b/assets/icons/linear/restart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/revote.svg b/assets/icons/linear/revote.svg index e1f9a71b..f956fb8b 100644 --- a/assets/icons/linear/revote.svg +++ b/assets/icons/linear/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rewind-back.svg b/assets/icons/linear/rewind-back.svg index 5d7a77e4..211b423b 100644 --- a/assets/icons/linear/rewind-back.svg +++ b/assets/icons/linear/rewind-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rocket-2.svg b/assets/icons/linear/rocket-2.svg index 2ef38a51..d6b7df75 100644 --- a/assets/icons/linear/rocket-2.svg +++ b/assets/icons/linear/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rocket.svg b/assets/icons/linear/rocket.svg index 72ba7fa3..a93a4d8e 100644 --- a/assets/icons/linear/rocket.svg +++ b/assets/icons/linear/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rolling-pin.svg b/assets/icons/linear/rolling-pin.svg index edaec0f8..a8cf0a0d 100644 --- a/assets/icons/linear/rolling-pin.svg +++ b/assets/icons/linear/rolling-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-down.svg b/assets/icons/linear/round-arrow-down.svg index 8082fe30..7aa18ee2 100644 --- a/assets/icons/linear/round-arrow-down.svg +++ b/assets/icons/linear/round-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-left-down.svg b/assets/icons/linear/round-arrow-left-down.svg index 9f1310cd..3998e28d 100644 --- a/assets/icons/linear/round-arrow-left-down.svg +++ b/assets/icons/linear/round-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-left-up.svg b/assets/icons/linear/round-arrow-left-up.svg index 8eeefa21..437c0c7c 100644 --- a/assets/icons/linear/round-arrow-left-up.svg +++ b/assets/icons/linear/round-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-left.svg b/assets/icons/linear/round-arrow-left.svg index 3079c7c4..b55c6baa 100644 --- a/assets/icons/linear/round-arrow-left.svg +++ b/assets/icons/linear/round-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-right-down.svg b/assets/icons/linear/round-arrow-right-down.svg index 1e52caed..39167845 100644 --- a/assets/icons/linear/round-arrow-right-down.svg +++ b/assets/icons/linear/round-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-right-up.svg b/assets/icons/linear/round-arrow-right-up.svg index 13d95cd8..c68496cd 100644 --- a/assets/icons/linear/round-arrow-right-up.svg +++ b/assets/icons/linear/round-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-right.svg b/assets/icons/linear/round-arrow-right.svg index 4ada451e..7e118c43 100644 --- a/assets/icons/linear/round-arrow-right.svg +++ b/assets/icons/linear/round-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-arrow-up.svg b/assets/icons/linear/round-arrow-up.svg index dbda14b4..54294f0d 100644 --- a/assets/icons/linear/round-arrow-up.svg +++ b/assets/icons/linear/round-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-double-alt-arrow-down.svg b/assets/icons/linear/round-double-alt-arrow-down.svg index 8ec823d9..9e78d7cd 100644 --- a/assets/icons/linear/round-double-alt-arrow-down.svg +++ b/assets/icons/linear/round-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-double-alt-arrow-left.svg b/assets/icons/linear/round-double-alt-arrow-left.svg index 7b7c9ec0..04d1a6d6 100644 --- a/assets/icons/linear/round-double-alt-arrow-left.svg +++ b/assets/icons/linear/round-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-double-alt-arrow-right.svg b/assets/icons/linear/round-double-alt-arrow-right.svg index a09136f3..dba87783 100644 --- a/assets/icons/linear/round-double-alt-arrow-right.svg +++ b/assets/icons/linear/round-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-double-alt-arrow-up.svg b/assets/icons/linear/round-double-alt-arrow-up.svg index d5c1efca..a3567673 100644 --- a/assets/icons/linear/round-double-alt-arrow-up.svg +++ b/assets/icons/linear/round-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-sort-horizontal.svg b/assets/icons/linear/round-sort-horizontal.svg index a26b5ef1..9d6ff9e8 100644 --- a/assets/icons/linear/round-sort-horizontal.svg +++ b/assets/icons/linear/round-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-sort-vertical.svg b/assets/icons/linear/round-sort-vertical.svg index 4c6966f7..9519524f 100644 --- a/assets/icons/linear/round-sort-vertical.svg +++ b/assets/icons/linear/round-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-transfer-diagonal.svg b/assets/icons/linear/round-transfer-diagonal.svg index b3da1045..eeb8f13b 100644 --- a/assets/icons/linear/round-transfer-diagonal.svg +++ b/assets/icons/linear/round-transfer-diagonal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-transfer-horizontal.svg b/assets/icons/linear/round-transfer-horizontal.svg index d2176ce2..492be23e 100644 --- a/assets/icons/linear/round-transfer-horizontal.svg +++ b/assets/icons/linear/round-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/round-transfer-vertical.svg b/assets/icons/linear/round-transfer-vertical.svg index 9c1cac92..a46873dd 100644 --- a/assets/icons/linear/round-transfer-vertical.svg +++ b/assets/icons/linear/round-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifer-bug.svg b/assets/icons/linear/rounded-magnifer-bug.svg deleted file mode 100644 index 21c892da..00000000 --- a/assets/icons/linear/rounded-magnifer-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifer-zoom-in.svg b/assets/icons/linear/rounded-magnifer-zoom-in.svg deleted file mode 100644 index 86a8e546..00000000 --- a/assets/icons/linear/rounded-magnifer-zoom-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifer-zoom-out.svg b/assets/icons/linear/rounded-magnifer-zoom-out.svg deleted file mode 100644 index 719a61fb..00000000 --- a/assets/icons/linear/rounded-magnifer-zoom-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifier-bug.svg b/assets/icons/linear/rounded-magnifier-bug.svg new file mode 100644 index 00000000..43f46dd1 --- /dev/null +++ b/assets/icons/linear/rounded-magnifier-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifier-zoom-in.svg b/assets/icons/linear/rounded-magnifier-zoom-in.svg new file mode 100644 index 00000000..47c26a22 --- /dev/null +++ b/assets/icons/linear/rounded-magnifier-zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifier-zoom-out.svg b/assets/icons/linear/rounded-magnifier-zoom-out.svg new file mode 100644 index 00000000..4a83ab1c --- /dev/null +++ b/assets/icons/linear/rounded-magnifier-zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/rounded-magnifer.svg b/assets/icons/linear/rounded-magnifier.svg similarity index 100% rename from assets/icons/linear/rounded-magnifer.svg rename to assets/icons/linear/rounded-magnifier.svg diff --git a/assets/icons/linear/route.svg b/assets/icons/linear/route.svg index e450865e..84532e66 100644 --- a/assets/icons/linear/route.svg +++ b/assets/icons/linear/route.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/routing-2.svg b/assets/icons/linear/routing-2.svg index 3140fd87..1908a261 100644 --- a/assets/icons/linear/routing-2.svg +++ b/assets/icons/linear/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/routing-3.svg b/assets/icons/linear/routing-3.svg index 73f9ab67..13cb91d8 100644 --- a/assets/icons/linear/routing-3.svg +++ b/assets/icons/linear/routing-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/routing.svg b/assets/icons/linear/routing.svg index a378ea82..87680e13 100644 --- a/assets/icons/linear/routing.svg +++ b/assets/icons/linear/routing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ruble.svg b/assets/icons/linear/ruble.svg index 80429145..0371b1cf 100644 --- a/assets/icons/linear/ruble.svg +++ b/assets/icons/linear/ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/rugby.svg b/assets/icons/linear/rugby.svg index 6b969ded..35bfdd05 100644 --- a/assets/icons/linear/rugby.svg +++ b/assets/icons/linear/rugby.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ruler-angular.svg b/assets/icons/linear/ruler-angular.svg index 1b5c6982..be77d507 100644 --- a/assets/icons/linear/ruler-angular.svg +++ b/assets/icons/linear/ruler-angular.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ruler-cross-pen.svg b/assets/icons/linear/ruler-cross-pen.svg index 8988f831..de09f643 100644 --- a/assets/icons/linear/ruler-cross-pen.svg +++ b/assets/icons/linear/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ruler-pen.svg b/assets/icons/linear/ruler-pen.svg index e5dd7102..a93f749f 100644 --- a/assets/icons/linear/ruler-pen.svg +++ b/assets/icons/linear/ruler-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ruler.svg b/assets/icons/linear/ruler.svg index 45add9e0..748389d5 100644 --- a/assets/icons/linear/ruler.svg +++ b/assets/icons/linear/ruler.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/running-2.svg b/assets/icons/linear/running-2.svg index c3b3ac1a..3839937f 100644 --- a/assets/icons/linear/running-2.svg +++ b/assets/icons/linear/running-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/running-round.svg b/assets/icons/linear/running-round.svg index c90ecb80..d6c9ee8f 100644 --- a/assets/icons/linear/running-round.svg +++ b/assets/icons/linear/running-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/running.svg b/assets/icons/linear/running.svg index 301cbafc..6bc04ef0 100644 --- a/assets/icons/linear/running.svg +++ b/assets/icons/linear/running.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sad-circle.svg b/assets/icons/linear/sad-circle.svg index 4f47f14a..e4888f76 100644 --- a/assets/icons/linear/sad-circle.svg +++ b/assets/icons/linear/sad-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sad-square.svg b/assets/icons/linear/sad-square.svg index 7481ba28..8994a6cc 100644 --- a/assets/icons/linear/sad-square.svg +++ b/assets/icons/linear/sad-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/safe-2.svg b/assets/icons/linear/safe-2.svg index c88df04e..6dc90b84 100644 --- a/assets/icons/linear/safe-2.svg +++ b/assets/icons/linear/safe-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/safe-circle.svg b/assets/icons/linear/safe-circle.svg index 26c4ca42..63244b2e 100644 --- a/assets/icons/linear/safe-circle.svg +++ b/assets/icons/linear/safe-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/safe-square.svg b/assets/icons/linear/safe-square.svg index 81d63ea7..5a2690d0 100644 --- a/assets/icons/linear/safe-square.svg +++ b/assets/icons/linear/safe-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sale-square.svg b/assets/icons/linear/sale-square.svg index d08e248c..9945da2a 100644 --- a/assets/icons/linear/sale-square.svg +++ b/assets/icons/linear/sale-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sale.svg b/assets/icons/linear/sale.svg index 11c9bd02..eb79e025 100644 --- a/assets/icons/linear/sale.svg +++ b/assets/icons/linear/sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scale.svg b/assets/icons/linear/scale.svg index de68b896..4497e0fc 100644 --- a/assets/icons/linear/scale.svg +++ b/assets/icons/linear/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scaling.svg b/assets/icons/linear/scaling.svg new file mode 100644 index 00000000..3be3f54b --- /dev/null +++ b/assets/icons/linear/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/scanner-2.svg b/assets/icons/linear/scanner-2.svg index 05e0f7e0..2b96ad0d 100644 --- a/assets/icons/linear/scanner-2.svg +++ b/assets/icons/linear/scanner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scanner.svg b/assets/icons/linear/scanner.svg index c8e65696..e6b1ad90 100644 --- a/assets/icons/linear/scanner.svg +++ b/assets/icons/linear/scanner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scissors-square.svg b/assets/icons/linear/scissors-square.svg index ba788527..b21f44fc 100644 --- a/assets/icons/linear/scissors-square.svg +++ b/assets/icons/linear/scissors-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scissors.svg b/assets/icons/linear/scissors.svg index c8db41d0..381ec4c6 100644 --- a/assets/icons/linear/scissors.svg +++ b/assets/icons/linear/scissors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/scooter.svg b/assets/icons/linear/scooter.svg index 523876fb..23855c1e 100644 --- a/assets/icons/linear/scooter.svg +++ b/assets/icons/linear/scooter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/screen-share.svg b/assets/icons/linear/screen-share.svg index f281964b..bf17ea78 100644 --- a/assets/icons/linear/screen-share.svg +++ b/assets/icons/linear/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/screencast.svg b/assets/icons/linear/screencast.svg index 14f93d84..5786348e 100644 --- a/assets/icons/linear/screencast.svg +++ b/assets/icons/linear/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sd-card.svg b/assets/icons/linear/sd-card.svg index bc545616..61b0288f 100644 --- a/assets/icons/linear/sd-card.svg +++ b/assets/icons/linear/sd-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/send-square.svg b/assets/icons/linear/send-square.svg index 1ecc7c6c..5f6c1824 100644 --- a/assets/icons/linear/send-square.svg +++ b/assets/icons/linear/send-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/send-twice-square.svg b/assets/icons/linear/send-twice-square.svg index 3ebcc18c..2adfa92f 100644 --- a/assets/icons/linear/send-twice-square.svg +++ b/assets/icons/linear/send-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-2.svg b/assets/icons/linear/server-2.svg index 106e0aa9..a4837adc 100644 --- a/assets/icons/linear/server-2.svg +++ b/assets/icons/linear/server-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-minimalistic.svg b/assets/icons/linear/server-minimalistic.svg index 98bd9246..04bc9923 100644 --- a/assets/icons/linear/server-minimalistic.svg +++ b/assets/icons/linear/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-path.svg b/assets/icons/linear/server-path.svg index 07d5456e..e9cfe6db 100644 --- a/assets/icons/linear/server-path.svg +++ b/assets/icons/linear/server-path.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-square-cloud.svg b/assets/icons/linear/server-square-cloud.svg index 97aa8853..2601f387 100644 --- a/assets/icons/linear/server-square-cloud.svg +++ b/assets/icons/linear/server-square-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-square-update.svg b/assets/icons/linear/server-square-update.svg index 665b745c..668c2a07 100644 --- a/assets/icons/linear/server-square-update.svg +++ b/assets/icons/linear/server-square-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server-square.svg b/assets/icons/linear/server-square.svg index a1a15fc0..9ea3ac81 100644 --- a/assets/icons/linear/server-square.svg +++ b/assets/icons/linear/server-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/server.svg b/assets/icons/linear/server.svg index 7f484cd6..1cebeac9 100644 --- a/assets/icons/linear/server.svg +++ b/assets/icons/linear/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/share-circle.svg b/assets/icons/linear/share-circle.svg index 267a7bc2..cd59331c 100644 --- a/assets/icons/linear/share-circle.svg +++ b/assets/icons/linear/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/share.svg b/assets/icons/linear/share.svg index cbe92f3d..3b12cad1 100644 --- a/assets/icons/linear/share.svg +++ b/assets/icons/linear/share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shield-warning.svg b/assets/icons/linear/shield-warning.svg index 4a0ab9ff..6e45c934 100644 --- a/assets/icons/linear/shield-warning.svg +++ b/assets/icons/linear/shield-warning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shield.svg b/assets/icons/linear/shield.svg index 862e7da6..87cba4ef 100644 --- a/assets/icons/linear/shield.svg +++ b/assets/icons/linear/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shock-absorber.svg b/assets/icons/linear/shock-absorber.svg index 771e240a..37146725 100644 --- a/assets/icons/linear/shock-absorber.svg +++ b/assets/icons/linear/shock-absorber.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shop-2.svg b/assets/icons/linear/shop-2.svg index 5470d9d9..97b57b38 100644 --- a/assets/icons/linear/shop-2.svg +++ b/assets/icons/linear/shop-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shop-minimalistic.svg b/assets/icons/linear/shop-minimalistic.svg index 044b3a9a..4c6b073d 100644 --- a/assets/icons/linear/shop-minimalistic.svg +++ b/assets/icons/linear/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shop.svg b/assets/icons/linear/shop.svg index 71801edd..6f225f17 100644 --- a/assets/icons/linear/shop.svg +++ b/assets/icons/linear/shop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/shuffle.svg b/assets/icons/linear/shuffle.svg index 81377e6c..2b46d8bf 100644 --- a/assets/icons/linear/shuffle.svg +++ b/assets/icons/linear/shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/line_duotone/siderbar.svg b/assets/icons/linear/sidebar.svg similarity index 70% rename from assets/icons/line_duotone/siderbar.svg rename to assets/icons/linear/sidebar.svg index 90b87191..9fc536c9 100644 --- a/assets/icons/line_duotone/siderbar.svg +++ b/assets/icons/linear/sidebar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/signpost-2.svg b/assets/icons/linear/signpost-2.svg index e8bc9454..0d8c751f 100644 --- a/assets/icons/linear/signpost-2.svg +++ b/assets/icons/linear/signpost-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/signpost.svg b/assets/icons/linear/signpost.svg index 6ef593b2..5951a77b 100644 --- a/assets/icons/linear/signpost.svg +++ b/assets/icons/linear/signpost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sim-cards.svg b/assets/icons/linear/sim-cards.svg index 25e85418..2c977ab0 100644 --- a/assets/icons/linear/sim-cards.svg +++ b/assets/icons/linear/sim-cards.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/siren-rounded.svg b/assets/icons/linear/siren-rounded.svg index 5a576012..3c0d5cb2 100644 --- a/assets/icons/linear/siren-rounded.svg +++ b/assets/icons/linear/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/siren.svg b/assets/icons/linear/siren.svg index 510aa399..475d154f 100644 --- a/assets/icons/linear/siren.svg +++ b/assets/icons/linear/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/skateboarding-round.svg b/assets/icons/linear/skateboarding-round.svg index 55564ecc..c9dd19ad 100644 --- a/assets/icons/linear/skateboarding-round.svg +++ b/assets/icons/linear/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/skateboarding.svg b/assets/icons/linear/skateboarding.svg index 52bfc497..e7151b22 100644 --- a/assets/icons/linear/skateboarding.svg +++ b/assets/icons/linear/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/skirt.svg b/assets/icons/linear/skirt.svg index 07f1f374..5149d89e 100644 --- a/assets/icons/linear/skirt.svg +++ b/assets/icons/linear/skirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sleeping-circle.svg b/assets/icons/linear/sleeping-circle.svg index d65a3a09..3b0f8b89 100644 --- a/assets/icons/linear/sleeping-circle.svg +++ b/assets/icons/linear/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sleeping-square.svg b/assets/icons/linear/sleeping-square.svg index 1a9f1387..4d16d6dd 100644 --- a/assets/icons/linear/sleeping-square.svg +++ b/assets/icons/linear/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sleeping.svg b/assets/icons/linear/sleeping.svg index 20d01b78..fe8b65e1 100644 --- a/assets/icons/linear/sleeping.svg +++ b/assets/icons/linear/sleeping.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/slider-horizontal.svg b/assets/icons/linear/slider-horizontal.svg index 5652bff1..adaf644c 100644 --- a/assets/icons/linear/slider-horizontal.svg +++ b/assets/icons/linear/slider-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/slider-minimalistic-horizontal.svg b/assets/icons/linear/slider-minimalistic-horizontal.svg index c33d3a44..1350a042 100644 --- a/assets/icons/linear/slider-minimalistic-horizontal.svg +++ b/assets/icons/linear/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/slider-vertical-minimalistic.svg b/assets/icons/linear/slider-vertical-minimalistic.svg index 592b901f..0861bfac 100644 --- a/assets/icons/linear/slider-vertical-minimalistic.svg +++ b/assets/icons/linear/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/slider-vertical.svg b/assets/icons/linear/slider-vertical.svg index 84c71d81..71cbbab3 100644 --- a/assets/icons/linear/slider-vertical.svg +++ b/assets/icons/linear/slider-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-home-angle.svg b/assets/icons/linear/smart-home-angle.svg index c7b1a777..d56e819b 100644 --- a/assets/icons/linear/smart-home-angle.svg +++ b/assets/icons/linear/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-home.svg b/assets/icons/linear/smart-home.svg index c3516548..8c09d699 100644 --- a/assets/icons/linear/smart-home.svg +++ b/assets/icons/linear/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-speaker-2.svg b/assets/icons/linear/smart-speaker-2.svg index 534a7717..d0fedff4 100644 --- a/assets/icons/linear/smart-speaker-2.svg +++ b/assets/icons/linear/smart-speaker-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-speaker.svg b/assets/icons/linear/smart-speaker.svg index 89a412ce..a2d618ae 100644 --- a/assets/icons/linear/smart-speaker.svg +++ b/assets/icons/linear/smart-speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-vacuum-cleaner-2.svg b/assets/icons/linear/smart-vacuum-cleaner-2.svg index d8fa266c..6c0690a5 100644 --- a/assets/icons/linear/smart-vacuum-cleaner-2.svg +++ b/assets/icons/linear/smart-vacuum-cleaner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smart-vacuum-cleaner.svg b/assets/icons/linear/smart-vacuum-cleaner.svg index 18d4b71d..879349f5 100644 --- a/assets/icons/linear/smart-vacuum-cleaner.svg +++ b/assets/icons/linear/smart-vacuum-cleaner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-2.svg b/assets/icons/linear/smartphone-2.svg index 593f7105..58a31231 100644 --- a/assets/icons/linear/smartphone-2.svg +++ b/assets/icons/linear/smartphone-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-rotate-2.svg b/assets/icons/linear/smartphone-rotate-2.svg index 3c3c5521..26d5f756 100644 --- a/assets/icons/linear/smartphone-rotate-2.svg +++ b/assets/icons/linear/smartphone-rotate-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-rotate-angle.svg b/assets/icons/linear/smartphone-rotate-angle.svg index b9ca0623..a555a2c8 100644 --- a/assets/icons/linear/smartphone-rotate-angle.svg +++ b/assets/icons/linear/smartphone-rotate-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-rotate-orientation.svg b/assets/icons/linear/smartphone-rotate-orientation.svg index 0782e12b..e69d747b 100644 --- a/assets/icons/linear/smartphone-rotate-orientation.svg +++ b/assets/icons/linear/smartphone-rotate-orientation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-update.svg b/assets/icons/linear/smartphone-update.svg index 259fe985..235dfef3 100644 --- a/assets/icons/linear/smartphone-update.svg +++ b/assets/icons/linear/smartphone-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smartphone-vibration.svg b/assets/icons/linear/smartphone-vibration.svg index 0c297f65..53ef4434 100644 --- a/assets/icons/linear/smartphone-vibration.svg +++ b/assets/icons/linear/smartphone-vibration.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smile-circle.svg b/assets/icons/linear/smile-circle.svg index 8715381f..26af44cf 100644 --- a/assets/icons/linear/smile-circle.svg +++ b/assets/icons/linear/smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/smile-square.svg b/assets/icons/linear/smile-square.svg index 3f17b51f..0aa3bac1 100644 --- a/assets/icons/linear/smile-square.svg +++ b/assets/icons/linear/smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/snowflake.svg b/assets/icons/linear/snowflake.svg index 4e874024..94899423 100644 --- a/assets/icons/linear/snowflake.svg +++ b/assets/icons/linear/snowflake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/socket.svg b/assets/icons/linear/socket.svg index a5712a5d..797c6c01 100644 --- a/assets/icons/linear/socket.svg +++ b/assets/icons/linear/socket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sofa-2.svg b/assets/icons/linear/sofa-2.svg index 0e35e122..9620976a 100644 --- a/assets/icons/linear/sofa-2.svg +++ b/assets/icons/linear/sofa-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sofa-3.svg b/assets/icons/linear/sofa-3.svg index 6f6c08a0..4bf64c5d 100644 --- a/assets/icons/linear/sofa-3.svg +++ b/assets/icons/linear/sofa-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort-alphabetically.svg b/assets/icons/linear/sort-alphabetically.svg new file mode 100644 index 00000000..c56838a4 --- /dev/null +++ b/assets/icons/linear/sort-alphabetically.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/sort-by-alphabet.svg b/assets/icons/linear/sort-by-alphabet.svg deleted file mode 100644 index 1ad423b7..00000000 --- a/assets/icons/linear/sort-by-alphabet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/sort-by-time.svg b/assets/icons/linear/sort-by-time.svg index 9c1a8c0d..d989e567 100644 --- a/assets/icons/linear/sort-by-time.svg +++ b/assets/icons/linear/sort-by-time.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort-from-bottom-to-top.svg b/assets/icons/linear/sort-from-bottom-to-top.svg index 10545a95..e9491588 100644 --- a/assets/icons/linear/sort-from-bottom-to-top.svg +++ b/assets/icons/linear/sort-from-bottom-to-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort-from-top-to-bottom.svg b/assets/icons/linear/sort-from-top-to-bottom.svg index c186483c..2c09caf6 100644 --- a/assets/icons/linear/sort-from-top-to-bottom.svg +++ b/assets/icons/linear/sort-from-top-to-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort-horizontal.svg b/assets/icons/linear/sort-horizontal.svg index a0f2c7ad..261c415c 100644 --- a/assets/icons/linear/sort-horizontal.svg +++ b/assets/icons/linear/sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort-vertical.svg b/assets/icons/linear/sort-vertical.svg index 42bd6184..22fe10b4 100644 --- a/assets/icons/linear/sort-vertical.svg +++ b/assets/icons/linear/sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sort.svg b/assets/icons/linear/sort.svg index d15baa39..d6c61261 100644 --- a/assets/icons/linear/sort.svg +++ b/assets/icons/linear/sort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/soundwave-circle.svg b/assets/icons/linear/soundwave-circle.svg index 3bbc2b71..cfe7838a 100644 --- a/assets/icons/linear/soundwave-circle.svg +++ b/assets/icons/linear/soundwave-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/soundwave-square.svg b/assets/icons/linear/soundwave-square.svg index d1c25a8b..e091fc1b 100644 --- a/assets/icons/linear/soundwave-square.svg +++ b/assets/icons/linear/soundwave-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/soundwave.svg b/assets/icons/linear/soundwave.svg index 4546fc77..e3124ac2 100644 --- a/assets/icons/linear/soundwave.svg +++ b/assets/icons/linear/soundwave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/speaker.svg b/assets/icons/linear/speaker.svg index 1a8f045b..2c45a35f 100644 --- a/assets/icons/linear/speaker.svg +++ b/assets/icons/linear/speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/special-effects.svg b/assets/icons/linear/special-effects.svg index 51f2348a..a91e4472 100644 --- a/assets/icons/linear/special-effects.svg +++ b/assets/icons/linear/special-effects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/spedometer-low.svg b/assets/icons/linear/spedometer-low.svg deleted file mode 100644 index a7432960..00000000 --- a/assets/icons/linear/spedometer-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/spedometer-max.svg b/assets/icons/linear/spedometer-max.svg deleted file mode 100644 index 27d5696e..00000000 --- a/assets/icons/linear/spedometer-max.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/spedometer-middle.svg b/assets/icons/linear/spedometer-middle.svg deleted file mode 100644 index b095444a..00000000 --- a/assets/icons/linear/spedometer-middle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/speedometer-low.svg b/assets/icons/linear/speedometer-low.svg new file mode 100644 index 00000000..ab4c6aa2 --- /dev/null +++ b/assets/icons/linear/speedometer-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/speedometer-max.svg b/assets/icons/linear/speedometer-max.svg new file mode 100644 index 00000000..04f4cb2d --- /dev/null +++ b/assets/icons/linear/speedometer-max.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/speedometer-middle.svg b/assets/icons/linear/speedometer-middle.svg new file mode 100644 index 00000000..b2c3cb62 --- /dev/null +++ b/assets/icons/linear/speedometer-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/square-academic-cap.svg b/assets/icons/linear/square-academic-cap.svg index 2e2da088..e46ad480 100644 --- a/assets/icons/linear/square-academic-cap.svg +++ b/assets/icons/linear/square-academic-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-down.svg b/assets/icons/linear/square-arrow-down.svg index 69587566..052f4dd4 100644 --- a/assets/icons/linear/square-arrow-down.svg +++ b/assets/icons/linear/square-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-left-down.svg b/assets/icons/linear/square-arrow-left-down.svg index 3d95bdf4..b622bb7c 100644 --- a/assets/icons/linear/square-arrow-left-down.svg +++ b/assets/icons/linear/square-arrow-left-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-left-up.svg b/assets/icons/linear/square-arrow-left-up.svg index 5e620366..6c7fb02c 100644 --- a/assets/icons/linear/square-arrow-left-up.svg +++ b/assets/icons/linear/square-arrow-left-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-left.svg b/assets/icons/linear/square-arrow-left.svg index 960b52e0..1c01fcc3 100644 --- a/assets/icons/linear/square-arrow-left.svg +++ b/assets/icons/linear/square-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-right-down.svg b/assets/icons/linear/square-arrow-right-down.svg index 0706b00e..a3b0f69e 100644 --- a/assets/icons/linear/square-arrow-right-down.svg +++ b/assets/icons/linear/square-arrow-right-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-right-up.svg b/assets/icons/linear/square-arrow-right-up.svg index 9086b35d..7aeebae9 100644 --- a/assets/icons/linear/square-arrow-right-up.svg +++ b/assets/icons/linear/square-arrow-right-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-right.svg b/assets/icons/linear/square-arrow-right.svg index e21479b4..4d4e7fa4 100644 --- a/assets/icons/linear/square-arrow-right.svg +++ b/assets/icons/linear/square-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-arrow-up.svg b/assets/icons/linear/square-arrow-up.svg index d2bbc29d..c5486963 100644 --- a/assets/icons/linear/square-arrow-up.svg +++ b/assets/icons/linear/square-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-bottom-down.svg b/assets/icons/linear/square-bottom-down.svg index 1a9a2194..36d19b83 100644 --- a/assets/icons/linear/square-bottom-down.svg +++ b/assets/icons/linear/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-bottom-up.svg b/assets/icons/linear/square-bottom-up.svg index ca50050b..ac0b8b3b 100644 --- a/assets/icons/linear/square-bottom-up.svg +++ b/assets/icons/linear/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-double-alt-arrow-down.svg b/assets/icons/linear/square-double-alt-arrow-down.svg index 9e486d51..b157685c 100644 --- a/assets/icons/linear/square-double-alt-arrow-down.svg +++ b/assets/icons/linear/square-double-alt-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-double-alt-arrow-left.svg b/assets/icons/linear/square-double-alt-arrow-left.svg index 1b2d9e85..7119286c 100644 --- a/assets/icons/linear/square-double-alt-arrow-left.svg +++ b/assets/icons/linear/square-double-alt-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-double-alt-arrow-right.svg b/assets/icons/linear/square-double-alt-arrow-right.svg index e917e289..919d9a0d 100644 --- a/assets/icons/linear/square-double-alt-arrow-right.svg +++ b/assets/icons/linear/square-double-alt-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-double-alt-arrow-up.svg b/assets/icons/linear/square-double-alt-arrow-up.svg index c8f8e288..167dd339 100644 --- a/assets/icons/linear/square-double-alt-arrow-up.svg +++ b/assets/icons/linear/square-double-alt-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-share-line.svg b/assets/icons/linear/square-share-line.svg index 3f2759ab..bc7e58ad 100644 --- a/assets/icons/linear/square-share-line.svg +++ b/assets/icons/linear/square-share-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-sort-horizontal.svg b/assets/icons/linear/square-sort-horizontal.svg index 360d1ecb..3c7f9633 100644 --- a/assets/icons/linear/square-sort-horizontal.svg +++ b/assets/icons/linear/square-sort-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-sort-vertical.svg b/assets/icons/linear/square-sort-vertical.svg index cee2c1bc..f596dd2f 100644 --- a/assets/icons/linear/square-sort-vertical.svg +++ b/assets/icons/linear/square-sort-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-top-down.svg b/assets/icons/linear/square-top-down.svg index 4a94f771..ce0b49e3 100644 --- a/assets/icons/linear/square-top-down.svg +++ b/assets/icons/linear/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-top-up.svg b/assets/icons/linear/square-top-up.svg index 90fb782f..61732246 100644 --- a/assets/icons/linear/square-top-up.svg +++ b/assets/icons/linear/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-transfer-horizontal.svg b/assets/icons/linear/square-transfer-horizontal.svg index 2ae7af71..34cee0ee 100644 --- a/assets/icons/linear/square-transfer-horizontal.svg +++ b/assets/icons/linear/square-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/square-transfer-vertical.svg b/assets/icons/linear/square-transfer-vertical.svg index 1a3f91e5..ce49eb6c 100644 --- a/assets/icons/linear/square-transfer-vertical.svg +++ b/assets/icons/linear/square-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ssd-round.svg b/assets/icons/linear/ssd-round.svg index 87b4a0e1..07913c07 100644 --- a/assets/icons/linear/ssd-round.svg +++ b/assets/icons/linear/ssd-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ssd-square.svg b/assets/icons/linear/ssd-square.svg index 50834daf..17b3eec6 100644 --- a/assets/icons/linear/ssd-square.svg +++ b/assets/icons/linear/ssd-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-2.svg b/assets/icons/linear/star-2.svg new file mode 100644 index 00000000..5544eb5f --- /dev/null +++ b/assets/icons/linear/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/star-angle.svg b/assets/icons/linear/star-angle.svg index 4a55dbfa..16dcaf34 100644 --- a/assets/icons/linear/star-angle.svg +++ b/assets/icons/linear/star-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-fall-2.svg b/assets/icons/linear/star-fall-2.svg index abc48c88..c3e9add9 100644 --- a/assets/icons/linear/star-fall-2.svg +++ b/assets/icons/linear/star-fall-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-fall-minimalistic-2.svg b/assets/icons/linear/star-fall-minimalistic-2.svg index de098753..5bcc31cb 100644 --- a/assets/icons/linear/star-fall-minimalistic-2.svg +++ b/assets/icons/linear/star-fall-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-fall-minimalistic.svg b/assets/icons/linear/star-fall-minimalistic.svg index 16d931fb..0c136b6c 100644 --- a/assets/icons/linear/star-fall-minimalistic.svg +++ b/assets/icons/linear/star-fall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-fall.svg b/assets/icons/linear/star-fall.svg index 70968399..eb4838cf 100644 --- a/assets/icons/linear/star-fall.svg +++ b/assets/icons/linear/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-rainbow.svg b/assets/icons/linear/star-rainbow.svg index 8a67165d..f841ad38 100644 --- a/assets/icons/linear/star-rainbow.svg +++ b/assets/icons/linear/star-rainbow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-ring.svg b/assets/icons/linear/star-ring.svg index c61255c6..7dfdd835 100644 --- a/assets/icons/linear/star-ring.svg +++ b/assets/icons/linear/star-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-rings.svg b/assets/icons/linear/star-rings.svg index 7a18fa5d..cd30b17b 100644 --- a/assets/icons/linear/star-rings.svg +++ b/assets/icons/linear/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/star-shine.svg b/assets/icons/linear/star-shine.svg index 3da3a8b6..bfd571b1 100644 --- a/assets/icons/linear/star-shine.svg +++ b/assets/icons/linear/star-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/stars-2.svg b/assets/icons/linear/stars-2.svg new file mode 100644 index 00000000..39650b13 --- /dev/null +++ b/assets/icons/linear/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/stars-line.svg b/assets/icons/linear/stars-line.svg index fea08ce7..1396f7c5 100644 --- a/assets/icons/linear/stars-line.svg +++ b/assets/icons/linear/stars-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/stars.svg b/assets/icons/linear/stars.svg index 39650b13..6298ebdf 100644 --- a/assets/icons/linear/stars.svg +++ b/assets/icons/linear/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/station.svg b/assets/icons/linear/station.svg index 1eaeca0b..b3106d52 100644 --- a/assets/icons/linear/station.svg +++ b/assets/icons/linear/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/stethoscope.svg b/assets/icons/linear/stethoscope.svg index 8fdd52eb..3619106a 100644 --- a/assets/icons/linear/stethoscope.svg +++ b/assets/icons/linear/stethoscope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sticker-smile-circle-2.svg b/assets/icons/linear/sticker-smile-circle-2.svg index c9fd17ea..4464034b 100644 --- a/assets/icons/linear/sticker-smile-circle-2.svg +++ b/assets/icons/linear/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sticker-smile-circle.svg b/assets/icons/linear/sticker-smile-circle.svg index d519a61f..5543f13c 100644 --- a/assets/icons/linear/sticker-smile-circle.svg +++ b/assets/icons/linear/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sticker-smile-square.svg b/assets/icons/linear/sticker-smile-square.svg index 474790c8..528e3d58 100644 --- a/assets/icons/linear/sticker-smile-square.svg +++ b/assets/icons/linear/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/stopwatch-pause.svg b/assets/icons/linear/stopwatch-pause.svg index 034a5587..7bfa79b1 100644 --- a/assets/icons/linear/stopwatch-pause.svg +++ b/assets/icons/linear/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/stream.svg b/assets/icons/linear/stream.svg index caeb617d..7edae88d 100644 --- a/assets/icons/linear/stream.svg +++ b/assets/icons/linear/stream.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/streets-map-point.svg b/assets/icons/linear/streets-map-point.svg index 26c381ce..ab208e54 100644 --- a/assets/icons/linear/streets-map-point.svg +++ b/assets/icons/linear/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/streets-navigation.svg b/assets/icons/linear/streets-navigation.svg index 4b62fc0e..74b097dd 100644 --- a/assets/icons/linear/streets-navigation.svg +++ b/assets/icons/linear/streets-navigation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/structure.svg b/assets/icons/linear/structure.svg index 209baa08..6c7d2421 100644 --- a/assets/icons/linear/structure.svg +++ b/assets/icons/linear/structure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/subtitles.svg b/assets/icons/linear/subtitles.svg index 3f9851f0..6f90e6f1 100644 --- a/assets/icons/linear/subtitles.svg +++ b/assets/icons/linear/subtitles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suitcase-lines.svg b/assets/icons/linear/suitcase-lines.svg index bc42f136..ad48aafc 100644 --- a/assets/icons/linear/suitcase-lines.svg +++ b/assets/icons/linear/suitcase-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suitcase-tag.svg b/assets/icons/linear/suitcase-tag.svg index 85a7ac8a..9c6cc5bf 100644 --- a/assets/icons/linear/suitcase-tag.svg +++ b/assets/icons/linear/suitcase-tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suitcase.svg b/assets/icons/linear/suitcase.svg index 3443dff4..6ba79a4d 100644 --- a/assets/icons/linear/suitcase.svg +++ b/assets/icons/linear/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sun-2.svg b/assets/icons/linear/sun-2.svg index 0ff45b81..76ef1957 100644 --- a/assets/icons/linear/sun-2.svg +++ b/assets/icons/linear/sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sun-fog.svg b/assets/icons/linear/sun-fog.svg index c206d44c..25c57315 100644 --- a/assets/icons/linear/sun-fog.svg +++ b/assets/icons/linear/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sun.svg b/assets/icons/linear/sun.svg index f7d39fe9..38a99d28 100644 --- a/assets/icons/linear/sun.svg +++ b/assets/icons/linear/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sunrise.svg b/assets/icons/linear/sunrise.svg index 345a3fb2..21fcee5a 100644 --- a/assets/icons/linear/sunrise.svg +++ b/assets/icons/linear/sunrise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/sunset.svg b/assets/icons/linear/sunset.svg index 9e404359..efea48c9 100644 --- a/assets/icons/linear/sunset.svg +++ b/assets/icons/linear/sunset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suspension-bolt.svg b/assets/icons/linear/suspension-bolt.svg index bc733bf6..a3a112a4 100644 --- a/assets/icons/linear/suspension-bolt.svg +++ b/assets/icons/linear/suspension-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suspension-cross.svg b/assets/icons/linear/suspension-cross.svg index 0f1870e3..aa901135 100644 --- a/assets/icons/linear/suspension-cross.svg +++ b/assets/icons/linear/suspension-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/suspension.svg b/assets/icons/linear/suspension.svg index 4dc924fc..94a71a37 100644 --- a/assets/icons/linear/suspension.svg +++ b/assets/icons/linear/suspension.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/swimming.svg b/assets/icons/linear/swimming.svg index e23021dc..bb601070 100644 --- a/assets/icons/linear/swimming.svg +++ b/assets/icons/linear/swimming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/syringe.svg b/assets/icons/linear/syringe.svg index 4f082456..56de2d5c 100644 --- a/assets/icons/linear/syringe.svg +++ b/assets/icons/linear/syringe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tag-horizontal.svg b/assets/icons/linear/tag-horizontal.svg index d1eb2334..38240e17 100644 --- a/assets/icons/linear/tag-horizontal.svg +++ b/assets/icons/linear/tag-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/target.svg b/assets/icons/linear/target.svg index 221f9241..b5bde73c 100644 --- a/assets/icons/linear/target.svg +++ b/assets/icons/linear/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tea-cup.svg b/assets/icons/linear/tea-cup.svg index 5d547b48..8454e17a 100644 --- a/assets/icons/linear/tea-cup.svg +++ b/assets/icons/linear/tea-cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/telescope.svg b/assets/icons/linear/telescope.svg index 17864f30..ccb24669 100644 --- a/assets/icons/linear/telescope.svg +++ b/assets/icons/linear/telescope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/test-tube.svg b/assets/icons/linear/test-tube.svg index d3e9f8e8..7b669aea 100644 --- a/assets/icons/linear/test-tube.svg +++ b/assets/icons/linear/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-bold-circle.svg b/assets/icons/linear/text-bold-circle.svg index 35727db9..15b38283 100644 --- a/assets/icons/linear/text-bold-circle.svg +++ b/assets/icons/linear/text-bold-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-bold-square.svg b/assets/icons/linear/text-bold-square.svg index 08759acc..c196de4e 100644 --- a/assets/icons/linear/text-bold-square.svg +++ b/assets/icons/linear/text-bold-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-bold.svg b/assets/icons/linear/text-bold.svg index f701405c..e1ed2bd8 100644 --- a/assets/icons/linear/text-bold.svg +++ b/assets/icons/linear/text-bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-circle.svg b/assets/icons/linear/text-circle.svg index 2dca7083..5e35c035 100644 --- a/assets/icons/linear/text-circle.svg +++ b/assets/icons/linear/text-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-cross-circle.svg b/assets/icons/linear/text-cross-circle.svg index b21a4008..abc2ed66 100644 --- a/assets/icons/linear/text-cross-circle.svg +++ b/assets/icons/linear/text-cross-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-cross-square.svg b/assets/icons/linear/text-cross-square.svg index 0bebdaa9..282ca7c0 100644 --- a/assets/icons/linear/text-cross-square.svg +++ b/assets/icons/linear/text-cross-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-cross.svg b/assets/icons/linear/text-cross.svg index 565cfb9b..34d64324 100644 --- a/assets/icons/linear/text-cross.svg +++ b/assets/icons/linear/text-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-field-focus.svg b/assets/icons/linear/text-field-focus.svg index 942c2e18..ca32e6a7 100644 --- a/assets/icons/linear/text-field-focus.svg +++ b/assets/icons/linear/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-field.svg b/assets/icons/linear/text-field.svg index 6fbcb5af..b7e7d55d 100644 --- a/assets/icons/linear/text-field.svg +++ b/assets/icons/linear/text-field.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-format.svg b/assets/icons/linear/text-format.svg new file mode 100644 index 00000000..e904a11d --- /dev/null +++ b/assets/icons/linear/text-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/text-selection.svg b/assets/icons/linear/text-selection.svg index 9d6a416b..969335eb 100644 --- a/assets/icons/linear/text-selection.svg +++ b/assets/icons/linear/text-selection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-square-2.svg b/assets/icons/linear/text-square-2.svg index 7804544d..1c865561 100644 --- a/assets/icons/linear/text-square-2.svg +++ b/assets/icons/linear/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-square.svg b/assets/icons/linear/text-square.svg index e0106263..e3955f6b 100644 --- a/assets/icons/linear/text-square.svg +++ b/assets/icons/linear/text-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-underline-circle.svg b/assets/icons/linear/text-underline-circle.svg index c78efa21..ab3f0c07 100644 --- a/assets/icons/linear/text-underline-circle.svg +++ b/assets/icons/linear/text-underline-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-underline-cross.svg b/assets/icons/linear/text-underline-cross.svg index bfb4d4be..1bd6c697 100644 --- a/assets/icons/linear/text-underline-cross.svg +++ b/assets/icons/linear/text-underline-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text-underline.svg b/assets/icons/linear/text-underline.svg index 55760eec..7aea1574 100644 --- a/assets/icons/linear/text-underline.svg +++ b/assets/icons/linear/text-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/text.svg b/assets/icons/linear/text.svg deleted file mode 100644 index 73c7f594..00000000 --- a/assets/icons/linear/text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/ticker-star.svg b/assets/icons/linear/ticker-star.svg index eebf4122..e6263b9b 100644 --- a/assets/icons/linear/ticker-star.svg +++ b/assets/icons/linear/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ticket-sale.svg b/assets/icons/linear/ticket-sale.svg index 8db1d470..aad121aa 100644 --- a/assets/icons/linear/ticket-sale.svg +++ b/assets/icons/linear/ticket-sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ticket.svg b/assets/icons/linear/ticket.svg index b2fef285..da45534d 100644 --- a/assets/icons/linear/ticket.svg +++ b/assets/icons/linear/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/to-pip.svg b/assets/icons/linear/to-pip.svg index b2b019da..70558924 100644 --- a/assets/icons/linear/to-pip.svg +++ b/assets/icons/linear/to-pip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tornado-small.svg b/assets/icons/linear/tornado-small.svg index 42a3e137..d59a156f 100644 --- a/assets/icons/linear/tornado-small.svg +++ b/assets/icons/linear/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tornado.svg b/assets/icons/linear/tornado.svg index 10dd1d4d..fa13d3b6 100644 --- a/assets/icons/linear/tornado.svg +++ b/assets/icons/linear/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/traffic-economy.svg b/assets/icons/linear/traffic-economy.svg index d8e7eae1..b4cc6294 100644 --- a/assets/icons/linear/traffic-economy.svg +++ b/assets/icons/linear/traffic-economy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/traffic.svg b/assets/icons/linear/traffic.svg index d248e95d..3b76c6ae 100644 --- a/assets/icons/linear/traffic.svg +++ b/assets/icons/linear/traffic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tram.svg b/assets/icons/linear/tram.svg index 91468c87..7e46ba8e 100644 --- a/assets/icons/linear/tram.svg +++ b/assets/icons/linear/tram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/transfer-horizontal.svg b/assets/icons/linear/transfer-horizontal.svg index 65eba23e..32ce27bc 100644 --- a/assets/icons/linear/transfer-horizontal.svg +++ b/assets/icons/linear/transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/transfer-vertical.svg b/assets/icons/linear/transfer-vertical.svg index 56ac5a15..c2bc1d99 100644 --- a/assets/icons/linear/transfer-vertical.svg +++ b/assets/icons/linear/transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/translation.svg b/assets/icons/linear/translation.svg index d20d5343..c992f435 100644 --- a/assets/icons/linear/translation.svg +++ b/assets/icons/linear/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/transmission-circle.svg b/assets/icons/linear/transmission-circle.svg index 5af6775c..ba5b6927 100644 --- a/assets/icons/linear/transmission-circle.svg +++ b/assets/icons/linear/transmission-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/transmission-square.svg b/assets/icons/linear/transmission-square.svg index a5ff6d6a..48f27a4d 100644 --- a/assets/icons/linear/transmission-square.svg +++ b/assets/icons/linear/transmission-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/transmission.svg b/assets/icons/linear/transmission.svg index 7268816f..aba12a59 100644 --- a/assets/icons/linear/transmission.svg +++ b/assets/icons/linear/transmission.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/trash-bin-2.svg b/assets/icons/linear/trash-bin-2.svg index dceeea2f..9379cc08 100644 --- a/assets/icons/linear/trash-bin-2.svg +++ b/assets/icons/linear/trash-bin-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/trash-bin-minimalistic-2.svg b/assets/icons/linear/trash-bin-minimalistic-2.svg index 3eb35509..7d215e83 100644 --- a/assets/icons/linear/trash-bin-minimalistic-2.svg +++ b/assets/icons/linear/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/trash-bin-minimalistic.svg b/assets/icons/linear/trash-bin-minimalistic.svg index 1ff452ec..e0b01fa8 100644 --- a/assets/icons/linear/trash-bin-minimalistic.svg +++ b/assets/icons/linear/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/trash-bin-trash.svg b/assets/icons/linear/trash-bin-trash.svg index 41a4c19e..dc8cc997 100644 --- a/assets/icons/linear/trash-bin-trash.svg +++ b/assets/icons/linear/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/treadmill-round.svg b/assets/icons/linear/treadmill-round.svg index 7a00813c..b0aab9f7 100644 --- a/assets/icons/linear/treadmill-round.svg +++ b/assets/icons/linear/treadmill-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/treadmill.svg b/assets/icons/linear/treadmill.svg index fd488a32..2b4a3450 100644 --- a/assets/icons/linear/treadmill.svg +++ b/assets/icons/linear/treadmill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning-2.svg b/assets/icons/linear/tuning-2.svg index e9decd9b..290a21a0 100644 --- a/assets/icons/linear/tuning-2.svg +++ b/assets/icons/linear/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning-3.svg b/assets/icons/linear/tuning-3.svg index 7e71721c..c6582f71 100644 --- a/assets/icons/linear/tuning-3.svg +++ b/assets/icons/linear/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning-4.svg b/assets/icons/linear/tuning-4.svg index 437359c9..387a923a 100644 --- a/assets/icons/linear/tuning-4.svg +++ b/assets/icons/linear/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning-square-2.svg b/assets/icons/linear/tuning-square-2.svg index 59fb4cbb..502cf99c 100644 --- a/assets/icons/linear/tuning-square-2.svg +++ b/assets/icons/linear/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning-square.svg b/assets/icons/linear/tuning-square.svg index 8b1e2745..3f57ed12 100644 --- a/assets/icons/linear/tuning-square.svg +++ b/assets/icons/linear/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tuning.svg b/assets/icons/linear/tuning.svg index 7909c1ab..0ed77ca3 100644 --- a/assets/icons/linear/tuning.svg +++ b/assets/icons/linear/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/turntable-music-note.svg b/assets/icons/linear/turntable-music-note.svg index c4d84946..f147d56c 100644 --- a/assets/icons/linear/turntable-music-note.svg +++ b/assets/icons/linear/turntable-music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/tv.svg b/assets/icons/linear/tv.svg index f5032ee3..47aacbc3 100644 --- a/assets/icons/linear/tv.svg +++ b/assets/icons/linear/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ufo-2.svg b/assets/icons/linear/ufo-2.svg index ce3580e4..ffc840e6 100644 --- a/assets/icons/linear/ufo-2.svg +++ b/assets/icons/linear/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ufo-3.svg b/assets/icons/linear/ufo-3.svg index f79c5076..8304a272 100644 --- a/assets/icons/linear/ufo-3.svg +++ b/assets/icons/linear/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/ufo.svg b/assets/icons/linear/ufo.svg index 9b36ae72..eeb09f87 100644 --- a/assets/icons/linear/ufo.svg +++ b/assets/icons/linear/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/umbrella.svg b/assets/icons/linear/umbrella.svg index 6a94b03f..a0b60638 100644 --- a/assets/icons/linear/umbrella.svg +++ b/assets/icons/linear/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-left-round-square.svg b/assets/icons/linear/undo-left-round-square.svg index 941917cf..0e6a94f4 100644 --- a/assets/icons/linear/undo-left-round-square.svg +++ b/assets/icons/linear/undo-left-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-left-round.svg b/assets/icons/linear/undo-left-round.svg index 42abe7d4..795a0370 100644 --- a/assets/icons/linear/undo-left-round.svg +++ b/assets/icons/linear/undo-left-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-left-square.svg b/assets/icons/linear/undo-left-square.svg index 0cf904ac..0ff75986 100644 --- a/assets/icons/linear/undo-left-square.svg +++ b/assets/icons/linear/undo-left-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-left.svg b/assets/icons/linear/undo-left.svg index 729477e9..34ab6b7d 100644 --- a/assets/icons/linear/undo-left.svg +++ b/assets/icons/linear/undo-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-right-round-square.svg b/assets/icons/linear/undo-right-round-square.svg index f7942e53..9a874cb9 100644 --- a/assets/icons/linear/undo-right-round-square.svg +++ b/assets/icons/linear/undo-right-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-right-round.svg b/assets/icons/linear/undo-right-round.svg index fbadeba5..2eccee31 100644 --- a/assets/icons/linear/undo-right-round.svg +++ b/assets/icons/linear/undo-right-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-right-square.svg b/assets/icons/linear/undo-right-square.svg index 34799e2d..f617891b 100644 --- a/assets/icons/linear/undo-right-square.svg +++ b/assets/icons/linear/undo-right-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/undo-right.svg b/assets/icons/linear/undo-right.svg index 397228b0..d9b35bc5 100644 --- a/assets/icons/linear/undo-right.svg +++ b/assets/icons/linear/undo-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/unlink-minimalistic.svg b/assets/icons/linear/unlink-minimalistic.svg new file mode 100644 index 00000000..419a4ae5 --- /dev/null +++ b/assets/icons/linear/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/unlink.svg b/assets/icons/linear/unlink.svg new file mode 100644 index 00000000..d0470a90 --- /dev/null +++ b/assets/icons/linear/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/upload-minimalistic.svg b/assets/icons/linear/upload-minimalistic.svg index 306e8441..c00807e5 100644 --- a/assets/icons/linear/upload-minimalistic.svg +++ b/assets/icons/linear/upload-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/upload-square.svg b/assets/icons/linear/upload-square.svg index 74ce0512..0cefa344 100644 --- a/assets/icons/linear/upload-square.svg +++ b/assets/icons/linear/upload-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/upload-track-2.svg b/assets/icons/linear/upload-track-2.svg index ff16bb0d..7685cc76 100644 --- a/assets/icons/linear/upload-track-2.svg +++ b/assets/icons/linear/upload-track-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/upload-track.svg b/assets/icons/linear/upload-track.svg index 9456acda..c21d7e8a 100644 --- a/assets/icons/linear/upload-track.svg +++ b/assets/icons/linear/upload-track.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/upload-twice-square.svg b/assets/icons/linear/upload-twice-square.svg index 962dc72e..735a1245 100644 --- a/assets/icons/linear/upload-twice-square.svg +++ b/assets/icons/linear/upload-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/upload.svg b/assets/icons/linear/upload.svg index 64c2e3eb..198280cb 100644 --- a/assets/icons/linear/upload.svg +++ b/assets/icons/linear/upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/usb-circle.svg b/assets/icons/linear/usb-circle.svg index 6d54c243..877fe5de 100644 --- a/assets/icons/linear/usb-circle.svg +++ b/assets/icons/linear/usb-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/usb-square.svg b/assets/icons/linear/usb-square.svg index 288da88b..cd6917c7 100644 --- a/assets/icons/linear/usb-square.svg +++ b/assets/icons/linear/usb-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/usb.svg b/assets/icons/linear/usb.svg index b8f6e5ec..2eddda46 100644 --- a/assets/icons/linear/usb.svg +++ b/assets/icons/linear/usb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-block-rounded.svg b/assets/icons/linear/user-block-rounded.svg index 5e0ec249..cd5fa481 100644 --- a/assets/icons/linear/user-block-rounded.svg +++ b/assets/icons/linear/user-block-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-block.svg b/assets/icons/linear/user-block.svg index 92eee830..e2a17af8 100644 --- a/assets/icons/linear/user-block.svg +++ b/assets/icons/linear/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-heart-rounded.svg b/assets/icons/linear/user-heart-rounded.svg index dd51ae54..fb8846b3 100644 --- a/assets/icons/linear/user-heart-rounded.svg +++ b/assets/icons/linear/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-heart.svg b/assets/icons/linear/user-heart.svg index 89b0d0e4..e8f05f54 100644 --- a/assets/icons/linear/user-heart.svg +++ b/assets/icons/linear/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-id.svg b/assets/icons/linear/user-id.svg index cfd89943..3e061a9a 100644 --- a/assets/icons/linear/user-id.svg +++ b/assets/icons/linear/user-id.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-plus-rounded.svg b/assets/icons/linear/user-plus-rounded.svg index fffbc52d..f70bcc7e 100644 --- a/assets/icons/linear/user-plus-rounded.svg +++ b/assets/icons/linear/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-plus.svg b/assets/icons/linear/user-plus.svg index 8bade7be..c19d4345 100644 --- a/assets/icons/linear/user-plus.svg +++ b/assets/icons/linear/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-speak-rounded.svg b/assets/icons/linear/user-speak-rounded.svg index 8bb30411..4230e83a 100644 --- a/assets/icons/linear/user-speak-rounded.svg +++ b/assets/icons/linear/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/user-speak.svg b/assets/icons/linear/user-speak.svg index 4fa03215..ea28e815 100644 --- a/assets/icons/linear/user-speak.svg +++ b/assets/icons/linear/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/users-group-two-rounded.svg b/assets/icons/linear/users-group-two-rounded.svg index 7802a087..3f043225 100644 --- a/assets/icons/linear/users-group-two-rounded.svg +++ b/assets/icons/linear/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/vanity.svg b/assets/icons/linear/vanity.svg new file mode 100644 index 00000000..89e9e0b4 --- /dev/null +++ b/assets/icons/linear/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-2.svg b/assets/icons/linear/video-frame-2.svg index 7f506684..41fdf15f 100644 --- a/assets/icons/linear/video-frame-2.svg +++ b/assets/icons/linear/video-frame-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-cut-2.svg b/assets/icons/linear/video-frame-cut-2.svg index 1153b1bf..7495ee9f 100644 --- a/assets/icons/linear/video-frame-cut-2.svg +++ b/assets/icons/linear/video-frame-cut-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-cut.svg b/assets/icons/linear/video-frame-cut.svg index 323a8f24..fb048655 100644 --- a/assets/icons/linear/video-frame-cut.svg +++ b/assets/icons/linear/video-frame-cut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-play-horizontal.svg b/assets/icons/linear/video-frame-play-horizontal.svg index c3a35146..7f7203d0 100644 --- a/assets/icons/linear/video-frame-play-horizontal.svg +++ b/assets/icons/linear/video-frame-play-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-play-vertical.svg b/assets/icons/linear/video-frame-play-vertical.svg index e4e4288d..7b91cd99 100644 --- a/assets/icons/linear/video-frame-play-vertical.svg +++ b/assets/icons/linear/video-frame-play-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame-replace.svg b/assets/icons/linear/video-frame-replace.svg index 00e3386f..c279462b 100644 --- a/assets/icons/linear/video-frame-replace.svg +++ b/assets/icons/linear/video-frame-replace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-frame.svg b/assets/icons/linear/video-frame.svg index d42bb747..40443555 100644 --- a/assets/icons/linear/video-frame.svg +++ b/assets/icons/linear/video-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/video-library.svg b/assets/icons/linear/video-library.svg index b9c6619a..dab39f1b 100644 --- a/assets/icons/linear/video-library.svg +++ b/assets/icons/linear/video-library.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/videocamera-add.svg b/assets/icons/linear/videocamera-add.svg index 09f6bc55..d1585bf6 100644 --- a/assets/icons/linear/videocamera-add.svg +++ b/assets/icons/linear/videocamera-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/videocamera-record.svg b/assets/icons/linear/videocamera-record.svg index c69ae21b..0fda9cd6 100644 --- a/assets/icons/linear/videocamera-record.svg +++ b/assets/icons/linear/videocamera-record.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/videocamera.svg b/assets/icons/linear/videocamera.svg index 2be4c108..12a96ffe 100644 --- a/assets/icons/linear/videocamera.svg +++ b/assets/icons/linear/videocamera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/virus.svg b/assets/icons/linear/virus.svg index a21f50d5..faf9840b 100644 --- a/assets/icons/linear/virus.svg +++ b/assets/icons/linear/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/volleyball-2.svg b/assets/icons/linear/volleyball-2.svg index 159fe5cd..01dbebfc 100644 --- a/assets/icons/linear/volleyball-2.svg +++ b/assets/icons/linear/volleyball-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/volleyball.svg b/assets/icons/linear/volleyball.svg index ff206777..62145107 100644 --- a/assets/icons/linear/volleyball.svg +++ b/assets/icons/linear/volleyball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/volume-cross.svg b/assets/icons/linear/volume-cross.svg index 0b655cba..5d4fbf0b 100644 --- a/assets/icons/linear/volume-cross.svg +++ b/assets/icons/linear/volume-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/volume-knob.svg b/assets/icons/linear/volume-knob.svg index 220780c4..c470cc8c 100644 --- a/assets/icons/linear/volume-knob.svg +++ b/assets/icons/linear/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/volume-loud.svg b/assets/icons/linear/volume-loud.svg index b105acc8..da7984a4 100644 --- a/assets/icons/linear/volume-loud.svg +++ b/assets/icons/linear/volume-loud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/walking-round.svg b/assets/icons/linear/walking-round.svg index d5f5b756..b07cb257 100644 --- a/assets/icons/linear/walking-round.svg +++ b/assets/icons/linear/walking-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/walking.svg b/assets/icons/linear/walking.svg index 60627680..45b52ed2 100644 --- a/assets/icons/linear/walking.svg +++ b/assets/icons/linear/walking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wallet-2.svg b/assets/icons/linear/wallet-2.svg index ae096398..9718bf1b 100644 --- a/assets/icons/linear/wallet-2.svg +++ b/assets/icons/linear/wallet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wallet-money.svg b/assets/icons/linear/wallet-money.svg index 36799642..a955d12e 100644 --- a/assets/icons/linear/wallet-money.svg +++ b/assets/icons/linear/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wallet.svg b/assets/icons/linear/wallet.svg index f984bd77..a45f216a 100644 --- a/assets/icons/linear/wallet.svg +++ b/assets/icons/linear/wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wallpaper.svg b/assets/icons/linear/wallpaper.svg index 89626f22..67626fbd 100644 --- a/assets/icons/linear/wallpaper.svg +++ b/assets/icons/linear/wallpaper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/washing-machine-minimalistic.svg b/assets/icons/linear/washing-machine-minimalistic.svg index 1ddeb680..22e360c2 100644 --- a/assets/icons/linear/washing-machine-minimalistic.svg +++ b/assets/icons/linear/washing-machine-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/washing-machine.svg b/assets/icons/linear/washing-machine.svg index c181a519..b8ccb47d 100644 --- a/assets/icons/linear/washing-machine.svg +++ b/assets/icons/linear/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/watch-round.svg b/assets/icons/linear/watch-round.svg index 905d7d54..0da42a29 100644 --- a/assets/icons/linear/watch-round.svg +++ b/assets/icons/linear/watch-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/watch-square-minimalistic-charge.svg b/assets/icons/linear/watch-square-minimalistic-charge.svg index 76ffff54..9cd232a4 100644 --- a/assets/icons/linear/watch-square-minimalistic-charge.svg +++ b/assets/icons/linear/watch-square-minimalistic-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/watch-square-minimalistic.svg b/assets/icons/linear/watch-square-minimalistic.svg index 666471bd..54644f45 100644 --- a/assets/icons/linear/watch-square-minimalistic.svg +++ b/assets/icons/linear/watch-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/watch-square.svg b/assets/icons/linear/watch-square.svg index 00827d71..968ed115 100644 --- a/assets/icons/linear/watch-square.svg +++ b/assets/icons/linear/watch-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/water-sun.svg b/assets/icons/linear/water-sun.svg index 19762b93..f010ad88 100644 --- a/assets/icons/linear/water-sun.svg +++ b/assets/icons/linear/water-sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/water.svg b/assets/icons/linear/water.svg index 8dd8a560..af142895 100644 --- a/assets/icons/linear/water.svg +++ b/assets/icons/linear/water.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/waterdrops.svg b/assets/icons/linear/waterdrops.svg index fd5f76c2..fe81c64e 100644 --- a/assets/icons/linear/waterdrops.svg +++ b/assets/icons/linear/waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/weigher.svg b/assets/icons/linear/weigher.svg deleted file mode 100644 index a73acf58..00000000 --- a/assets/icons/linear/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/linear/wheel-angle.svg b/assets/icons/linear/wheel-angle.svg index 6828a104..b6ddc18a 100644 --- a/assets/icons/linear/wheel-angle.svg +++ b/assets/icons/linear/wheel-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wheel.svg b/assets/icons/linear/wheel.svg index 4be5b483..cc2285c3 100644 --- a/assets/icons/linear/wheel.svg +++ b/assets/icons/linear/wheel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wi-fi-router-minimalistic.svg b/assets/icons/linear/wi-fi-router-minimalistic.svg index 4bd616c2..d87e4ccc 100644 --- a/assets/icons/linear/wi-fi-router-minimalistic.svg +++ b/assets/icons/linear/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wi-fi-router-round.svg b/assets/icons/linear/wi-fi-router-round.svg index 71e29074..f6e35a92 100644 --- a/assets/icons/linear/wi-fi-router-round.svg +++ b/assets/icons/linear/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wi-fi-router.svg b/assets/icons/linear/wi-fi-router.svg index 78ac5cb5..0344bf12 100644 --- a/assets/icons/linear/wi-fi-router.svg +++ b/assets/icons/linear/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-2.svg b/assets/icons/linear/widget-2.svg index 77d7c2af..65fa0f9f 100644 --- a/assets/icons/linear/widget-2.svg +++ b/assets/icons/linear/widget-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-3.svg b/assets/icons/linear/widget-3.svg index f530f617..ded6cb7b 100644 --- a/assets/icons/linear/widget-3.svg +++ b/assets/icons/linear/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-4.svg b/assets/icons/linear/widget-4.svg index fb65ec2b..77b726af 100644 --- a/assets/icons/linear/widget-4.svg +++ b/assets/icons/linear/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-5.svg b/assets/icons/linear/widget-5.svg index 5439bd55..ed095692 100644 --- a/assets/icons/linear/widget-5.svg +++ b/assets/icons/linear/widget-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-6.svg b/assets/icons/linear/widget-6.svg index ae4d4810..d79d45b2 100644 --- a/assets/icons/linear/widget-6.svg +++ b/assets/icons/linear/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget-add.svg b/assets/icons/linear/widget-add.svg index 9653017d..b07f0960 100644 --- a/assets/icons/linear/widget-add.svg +++ b/assets/icons/linear/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/widget.svg b/assets/icons/linear/widget.svg index f289b72c..e13140c7 100644 --- a/assets/icons/linear/widget.svg +++ b/assets/icons/linear/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/winrar.svg b/assets/icons/linear/win-rar.svg similarity index 65% rename from assets/icons/linear/winrar.svg rename to assets/icons/linear/win-rar.svg index 8b84a039..4b20acc1 100644 --- a/assets/icons/linear/winrar.svg +++ b/assets/icons/linear/win-rar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wind.svg b/assets/icons/linear/wind.svg index c11c27a1..828a2a4f 100644 --- a/assets/icons/linear/wind.svg +++ b/assets/icons/linear/wind.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/window-frame.svg b/assets/icons/linear/window-frame.svg index ee060889..794bc817 100644 --- a/assets/icons/linear/window-frame.svg +++ b/assets/icons/linear/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wineglass.svg b/assets/icons/linear/wineglass.svg index 9bf0099b..5b181393 100644 --- a/assets/icons/linear/wineglass.svg +++ b/assets/icons/linear/wineglass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/wireless-charge.svg b/assets/icons/linear/wireless-charge.svg index 5c53d867..d2a6dd4e 100644 --- a/assets/icons/linear/wireless-charge.svg +++ b/assets/icons/linear/wireless-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/women.svg b/assets/icons/linear/women.svg index 26da1898..839cefd2 100644 --- a/assets/icons/linear/women.svg +++ b/assets/icons/linear/women.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/linear/zip-file.svg b/assets/icons/linear/zip-file.svg index 0852d2d8..d8cbb0d4 100644 --- a/assets/icons/linear/zip-file.svg +++ b/assets/icons/linear/zip-file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/accessibility.svg b/assets/icons/outline/accessibility.svg index 93987157..7d10d1b1 100644 --- a/assets/icons/outline/accessibility.svg +++ b/assets/icons/outline/accessibility.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/add-circle.svg b/assets/icons/outline/add-circle.svg index 44d88f5b..d3bcd07f 100644 --- a/assets/icons/outline/add-circle.svg +++ b/assets/icons/outline/add-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/add-square.svg b/assets/icons/outline/add-square.svg index 23f55986..cd4a8b0c 100644 --- a/assets/icons/outline/add-square.svg +++ b/assets/icons/outline/add-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/adhesive-plaster-2.svg b/assets/icons/outline/adhesive-plaster-2.svg index 26a22004..079a1e12 100644 --- a/assets/icons/outline/adhesive-plaster-2.svg +++ b/assets/icons/outline/adhesive-plaster-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/adhesive-plaster.svg b/assets/icons/outline/adhesive-plaster.svg index deac56ba..6728d56b 100644 --- a/assets/icons/outline/adhesive-plaster.svg +++ b/assets/icons/outline/adhesive-plaster.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/align-horizonta-spacing.svg b/assets/icons/outline/align-horizontal-spacing.svg similarity index 100% rename from assets/icons/outline/align-horizonta-spacing.svg rename to assets/icons/outline/align-horizontal-spacing.svg diff --git a/assets/icons/outline/archive-down-minimalistic.svg b/assets/icons/outline/archive-down-minimalistic.svg new file mode 100644 index 00000000..fdd6a833 --- /dev/null +++ b/assets/icons/outline/archive-down-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/archive-down-minimlistic.svg b/assets/icons/outline/archive-down-minimlistic.svg deleted file mode 100644 index 9a500d0b..00000000 --- a/assets/icons/outline/archive-down-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/archive-up-minimalistic.svg b/assets/icons/outline/archive-up-minimalistic.svg new file mode 100644 index 00000000..516d72a4 --- /dev/null +++ b/assets/icons/outline/archive-up-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/archive-up-minimlistic.svg b/assets/icons/outline/archive-up-minimlistic.svg deleted file mode 100644 index d972cc72..00000000 --- a/assets/icons/outline/archive-up-minimlistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/backpack.svg b/assets/icons/outline/backpack.svg index 9dfc5b4f..d5320a4b 100644 --- a/assets/icons/outline/backpack.svg +++ b/assets/icons/outline/backpack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/backspace.svg b/assets/icons/outline/backspace.svg index 33dcc75c..28c8cb1b 100644 --- a/assets/icons/outline/backspace.svg +++ b/assets/icons/outline/backspace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bacteria.svg b/assets/icons/outline/bacteria.svg index dd6f7231..a5927170 100644 --- a/assets/icons/outline/bacteria.svg +++ b/assets/icons/outline/bacteria.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bag-4.svg b/assets/icons/outline/bag-4.svg index c26f10ed..df353be7 100644 --- a/assets/icons/outline/bag-4.svg +++ b/assets/icons/outline/bag-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bag-5.svg b/assets/icons/outline/bag-5.svg index fa7589ae..bd863233 100644 --- a/assets/icons/outline/bag-5.svg +++ b/assets/icons/outline/bag-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/balloon.svg b/assets/icons/outline/balloon.svg index 66a2e49a..0c8d7284 100644 --- a/assets/icons/outline/balloon.svg +++ b/assets/icons/outline/balloon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/basketball.svg b/assets/icons/outline/basketball.svg index 2fde5d48..42cc8d75 100644 --- a/assets/icons/outline/basketball.svg +++ b/assets/icons/outline/basketball.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-charge-minimalistic.svg b/assets/icons/outline/battery-charge-minimalistic.svg index e021af08..bb76a429 100644 --- a/assets/icons/outline/battery-charge-minimalistic.svg +++ b/assets/icons/outline/battery-charge-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-charge.svg b/assets/icons/outline/battery-charge.svg index a3f504fe..e57ff6da 100644 --- a/assets/icons/outline/battery-charge.svg +++ b/assets/icons/outline/battery-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-full-minimalistic.svg b/assets/icons/outline/battery-full-minimalistic.svg index f57fe64d..dc4150a7 100644 --- a/assets/icons/outline/battery-full-minimalistic.svg +++ b/assets/icons/outline/battery-full-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-full.svg b/assets/icons/outline/battery-full.svg index 60487eba..b4b3cd35 100644 --- a/assets/icons/outline/battery-full.svg +++ b/assets/icons/outline/battery-full.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-half-minimalistic.svg b/assets/icons/outline/battery-half-minimalistic.svg index 32fae12b..10b1e530 100644 --- a/assets/icons/outline/battery-half-minimalistic.svg +++ b/assets/icons/outline/battery-half-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-half.svg b/assets/icons/outline/battery-half.svg index 22fa9919..14094ce5 100644 --- a/assets/icons/outline/battery-half.svg +++ b/assets/icons/outline/battery-half.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-low-minimalistic.svg b/assets/icons/outline/battery-low-minimalistic.svg index af1a22fb..ec5a9fb3 100644 --- a/assets/icons/outline/battery-low-minimalistic.svg +++ b/assets/icons/outline/battery-low-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/battery-low.svg b/assets/icons/outline/battery-low.svg index 8fddd81f..be2ce6ba 100644 --- a/assets/icons/outline/battery-low.svg +++ b/assets/icons/outline/battery-low.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bedside-table-2.svg b/assets/icons/outline/bedside-table-2.svg index c2a3bfa9..1cb6ac51 100644 --- a/assets/icons/outline/bedside-table-2.svg +++ b/assets/icons/outline/bedside-table-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bedside-table.svg b/assets/icons/outline/bedside-table.svg index 11444d8e..4a9dfe46 100644 --- a/assets/icons/outline/bedside-table.svg +++ b/assets/icons/outline/bedside-table.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bell-bing.svg b/assets/icons/outline/bell-bing.svg deleted file mode 100644 index ae389072..00000000 --- a/assets/icons/outline/bell-bing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/bell-off.svg b/assets/icons/outline/bell-off.svg index 7669d586..9cc0bc4c 100644 --- a/assets/icons/outline/bell-off.svg +++ b/assets/icons/outline/bell-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bell-ring.svg b/assets/icons/outline/bell-ring.svg new file mode 100644 index 00000000..ff402c42 --- /dev/null +++ b/assets/icons/outline/bell-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/benzene-ring.svg b/assets/icons/outline/benzene-ring.svg index 28e74bd7..a661a12e 100644 --- a/assets/icons/outline/benzene-ring.svg +++ b/assets/icons/outline/benzene-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bill-2.svg b/assets/icons/outline/bill-2.svg new file mode 100644 index 00000000..e3120f7e --- /dev/null +++ b/assets/icons/outline/bill-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/bill.svg b/assets/icons/outline/bill.svg index e3120f7e..402f9fd0 100644 --- a/assets/icons/outline/bill.svg +++ b/assets/icons/outline/bill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/black-hole.svg b/assets/icons/outline/black-hole.svg index 898fec0b..4080a94a 100644 --- a/assets/icons/outline/black-hole.svg +++ b/assets/icons/outline/black-hole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bomb-emoji.svg b/assets/icons/outline/bomb-emoji.svg index 2bc46d32..2cc47d83 100644 --- a/assets/icons/outline/bomb-emoji.svg +++ b/assets/icons/outline/bomb-emoji.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bomb-minimalistic.svg b/assets/icons/outline/bomb-minimalistic.svg index 644cf23f..d9d5f125 100644 --- a/assets/icons/outline/bomb-minimalistic.svg +++ b/assets/icons/outline/bomb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bone-broken.svg b/assets/icons/outline/bone-broken.svg deleted file mode 100644 index c567c5ea..00000000 --- a/assets/icons/outline/bone-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/bone-fracture.svg b/assets/icons/outline/bone-fracture.svg new file mode 100644 index 00000000..b2ad3c95 --- /dev/null +++ b/assets/icons/outline/bone-fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/book.svg b/assets/icons/outline/book.svg index 17ff4081..4f80dfac 100644 --- a/assets/icons/outline/book.svg +++ b/assets/icons/outline/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bookmark.svg b/assets/icons/outline/bookmark.svg index 799ca5e3..cc8193d0 100644 --- a/assets/icons/outline/bookmark.svg +++ b/assets/icons/outline/bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/bug-minimalistic.svg b/assets/icons/outline/bug-minimalistic.svg index ce4e7c51..8da867f0 100644 --- a/assets/icons/outline/bug-minimalistic.svg +++ b/assets/icons/outline/bug-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/calculator.svg b/assets/icons/outline/calculator.svg index 5dabc2a7..6fc4706e 100644 --- a/assets/icons/outline/calculator.svg +++ b/assets/icons/outline/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/calendar.svg b/assets/icons/outline/calendar.svg index e242ad7a..b005e723 100644 --- a/assets/icons/outline/calendar.svg +++ b/assets/icons/outline/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/call-cancel-rounded.svg b/assets/icons/outline/call-cancel-rounded.svg index 86b91f20..f00d4a6c 100644 --- a/assets/icons/outline/call-cancel-rounded.svg +++ b/assets/icons/outline/call-cancel-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/call-cancel.svg b/assets/icons/outline/call-cancel.svg index 80a86e81..c81d26fd 100644 --- a/assets/icons/outline/call-cancel.svg +++ b/assets/icons/outline/call-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/call-dropped-rounded.svg b/assets/icons/outline/call-dropped-rounded.svg index 6a6d44ae..3676ede1 100644 --- a/assets/icons/outline/call-dropped-rounded.svg +++ b/assets/icons/outline/call-dropped-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/call-dropped.svg b/assets/icons/outline/call-dropped.svg index c681fe39..ed4cec5a 100644 --- a/assets/icons/outline/call-dropped.svg +++ b/assets/icons/outline/call-dropped.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/call-medicine-rounded.svg b/assets/icons/outline/call-medicine-rounded.svg index b9b22a74..8001bac6 100644 --- a/assets/icons/outline/call-medicine-rounded.svg +++ b/assets/icons/outline/call-medicine-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/accumulator.svg b/assets/icons/outline/car-battery.svg similarity index 100% rename from assets/icons/outline/accumulator.svg rename to assets/icons/outline/car-battery.svg diff --git a/assets/icons/outline/card-recive.svg b/assets/icons/outline/card-receive.svg similarity index 100% rename from assets/icons/outline/card-recive.svg rename to assets/icons/outline/card-receive.svg diff --git a/assets/icons/outline/cart-3.svg b/assets/icons/outline/cart-3.svg index fe492490..caca8ee9 100644 --- a/assets/icons/outline/cart-3.svg +++ b/assets/icons/outline/cart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-4.svg b/assets/icons/outline/cart-4.svg new file mode 100644 index 00000000..4e18c443 --- /dev/null +++ b/assets/icons/outline/cart-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/cart-5.svg b/assets/icons/outline/cart-5.svg index 52fa70da..a481c20e 100644 --- a/assets/icons/outline/cart-5.svg +++ b/assets/icons/outline/cart-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-check.svg b/assets/icons/outline/cart-check.svg index 82fad6d0..337aa1c7 100644 --- a/assets/icons/outline/cart-check.svg +++ b/assets/icons/outline/cart-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-cross.svg b/assets/icons/outline/cart-cross.svg index e4984292..c8460a6e 100644 --- a/assets/icons/outline/cart-cross.svg +++ b/assets/icons/outline/cart-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-large-2.svg b/assets/icons/outline/cart-large-2.svg index 379b9592..d6614e72 100644 --- a/assets/icons/outline/cart-large-2.svg +++ b/assets/icons/outline/cart-large-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-large-3.svg b/assets/icons/outline/cart-large-3.svg index c418c449..0515d570 100644 --- a/assets/icons/outline/cart-large-3.svg +++ b/assets/icons/outline/cart-large-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-large-4.svg b/assets/icons/outline/cart-large-4.svg index 795b5f98..632eac44 100644 --- a/assets/icons/outline/cart-large-4.svg +++ b/assets/icons/outline/cart-large-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-large-minimalistic.svg b/assets/icons/outline/cart-large-minimalistic.svg index 504e5801..cd6e185f 100644 --- a/assets/icons/outline/cart-large-minimalistic.svg +++ b/assets/icons/outline/cart-large-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-large.svg b/assets/icons/outline/cart-large.svg index faca3456..ee569c65 100644 --- a/assets/icons/outline/cart-large.svg +++ b/assets/icons/outline/cart-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cart-plus.svg b/assets/icons/outline/cart-plus.svg index f17b0d0a..c5a0bc2d 100644 --- a/assets/icons/outline/cart-plus.svg +++ b/assets/icons/outline/cart-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/case-round-minimalistic.svg b/assets/icons/outline/case-round-minimalistic.svg index 36ae5c1f..0f3a6216 100644 --- a/assets/icons/outline/case-round-minimalistic.svg +++ b/assets/icons/outline/case-round-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/case-round.svg b/assets/icons/outline/case-round.svg index ddfaa449..a738a213 100644 --- a/assets/icons/outline/case-round.svg +++ b/assets/icons/outline/case-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cat.svg b/assets/icons/outline/cat.svg index 93dff8c7..1c43a7b0 100644 --- a/assets/icons/outline/cat.svg +++ b/assets/icons/outline/cat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/chart-2.svg b/assets/icons/outline/chart-2.svg index cd51b137..e9e4b344 100644 --- a/assets/icons/outline/chart-2.svg +++ b/assets/icons/outline/chart-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/chart-square.svg b/assets/icons/outline/chart-square.svg index e98b27c4..5f0fac88 100644 --- a/assets/icons/outline/chart-square.svg +++ b/assets/icons/outline/chart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/chat-dots.svg b/assets/icons/outline/chat-dots.svg index 6766680f..26fd9cdb 100644 --- a/assets/icons/outline/chat-dots.svg +++ b/assets/icons/outline/chat-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/chat-round-dots.svg b/assets/icons/outline/chat-round-dots.svg index 1ea6a4af..39213408 100644 --- a/assets/icons/outline/chat-round-dots.svg +++ b/assets/icons/outline/chat-round-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/chat-square-2.svg b/assets/icons/outline/chat-square-2.svg index 9218497f..486fbb35 100644 --- a/assets/icons/outline/chat-square-2.svg +++ b/assets/icons/outline/chat-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/check-circle.svg b/assets/icons/outline/check-circle.svg index 7775612a..d313313d 100644 --- a/assets/icons/outline/check-circle.svg +++ b/assets/icons/outline/check-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/check-read.svg b/assets/icons/outline/check-read.svg index fe31ab48..16aed9dc 100644 --- a/assets/icons/outline/check-read.svg +++ b/assets/icons/outline/check-read.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/check-square.svg b/assets/icons/outline/check-square.svg index 57ae4797..cde82588 100644 --- a/assets/icons/outline/check-square.svg +++ b/assets/icons/outline/check-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/circle-bottom-down.svg b/assets/icons/outline/circle-bottom-down.svg index 72abad34..d24235bc 100644 --- a/assets/icons/outline/circle-bottom-down.svg +++ b/assets/icons/outline/circle-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/circle-bottom-up.svg b/assets/icons/outline/circle-bottom-up.svg index ac88f386..20b03026 100644 --- a/assets/icons/outline/circle-bottom-up.svg +++ b/assets/icons/outline/circle-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/circle-top-down.svg b/assets/icons/outline/circle-top-down.svg index 60382844..9a4d57df 100644 --- a/assets/icons/outline/circle-top-down.svg +++ b/assets/icons/outline/circle-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/circle-top-up.svg b/assets/icons/outline/circle-top-up.svg index b18fee59..7fd11aab 100644 --- a/assets/icons/outline/circle-top-up.svg +++ b/assets/icons/outline/circle-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/close-circle.svg b/assets/icons/outline/close-circle.svg index 7d1ef1c9..559516f1 100644 --- a/assets/icons/outline/close-circle.svg +++ b/assets/icons/outline/close-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/close-square.svg b/assets/icons/outline/close-square.svg index ea7560fb..d3f78906 100644 --- a/assets/icons/outline/close-square.svg +++ b/assets/icons/outline/close-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-bolt-minimalistic.svg b/assets/icons/outline/cloud-bolt-minimalistic.svg index 48965ff3..44ff2b47 100644 --- a/assets/icons/outline/cloud-bolt-minimalistic.svg +++ b/assets/icons/outline/cloud-bolt-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-bolt.svg b/assets/icons/outline/cloud-bolt.svg index d4561f22..e17b2bdf 100644 --- a/assets/icons/outline/cloud-bolt.svg +++ b/assets/icons/outline/cloud-bolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-check.svg b/assets/icons/outline/cloud-check.svg index 0e70c015..0c95e76c 100644 --- a/assets/icons/outline/cloud-check.svg +++ b/assets/icons/outline/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-cross.svg b/assets/icons/outline/cloud-cross.svg index 58789889..f208d2d8 100644 --- a/assets/icons/outline/cloud-cross.svg +++ b/assets/icons/outline/cloud-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-download.svg b/assets/icons/outline/cloud-download.svg index 37bc4a11..855445c6 100644 --- a/assets/icons/outline/cloud-download.svg +++ b/assets/icons/outline/cloud-download.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-minus.svg b/assets/icons/outline/cloud-minus.svg index f2edc658..0e654583 100644 --- a/assets/icons/outline/cloud-minus.svg +++ b/assets/icons/outline/cloud-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-plus.svg b/assets/icons/outline/cloud-plus.svg index 5c1c714e..4f0ca05a 100644 --- a/assets/icons/outline/cloud-plus.svg +++ b/assets/icons/outline/cloud-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-rain.svg b/assets/icons/outline/cloud-rain.svg index 6a652aff..9c1c822d 100644 --- a/assets/icons/outline/cloud-rain.svg +++ b/assets/icons/outline/cloud-rain.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-snowfall-minimalistic.svg b/assets/icons/outline/cloud-snowfall-minimalistic.svg index 015db0b7..d949ee50 100644 --- a/assets/icons/outline/cloud-snowfall-minimalistic.svg +++ b/assets/icons/outline/cloud-snowfall-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-snowfall.svg b/assets/icons/outline/cloud-snowfall.svg index b13310bf..fa7da595 100644 --- a/assets/icons/outline/cloud-snowfall.svg +++ b/assets/icons/outline/cloud-snowfall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-storage.svg b/assets/icons/outline/cloud-storage.svg index 3797168b..f9c20e09 100644 --- a/assets/icons/outline/cloud-storage.svg +++ b/assets/icons/outline/cloud-storage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-storm.svg b/assets/icons/outline/cloud-storm.svg index c48f3ccc..277d8c01 100644 --- a/assets/icons/outline/cloud-storm.svg +++ b/assets/icons/outline/cloud-storm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-sun-2.svg b/assets/icons/outline/cloud-sun-2.svg index fe2463fe..c0037344 100644 --- a/assets/icons/outline/cloud-sun-2.svg +++ b/assets/icons/outline/cloud-sun-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-upload.svg b/assets/icons/outline/cloud-upload.svg index 04f31d09..429128da 100644 --- a/assets/icons/outline/cloud-upload.svg +++ b/assets/icons/outline/cloud-upload.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-waterdrop.svg b/assets/icons/outline/cloud-waterdrop.svg index b81a7f2a..460b255b 100644 --- a/assets/icons/outline/cloud-waterdrop.svg +++ b/assets/icons/outline/cloud-waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud-waterdrops.svg b/assets/icons/outline/cloud-waterdrops.svg index 3a16d37f..86623119 100644 --- a/assets/icons/outline/cloud-waterdrops.svg +++ b/assets/icons/outline/cloud-waterdrops.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloud.svg b/assets/icons/outline/cloud.svg index 7ea197e4..a0285f0f 100644 --- a/assets/icons/outline/cloud.svg +++ b/assets/icons/outline/cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/clouds.svg b/assets/icons/outline/clouds.svg index e5346338..9fc020f7 100644 --- a/assets/icons/outline/clouds.svg +++ b/assets/icons/outline/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cloudy-moon.svg b/assets/icons/outline/cloudy-moon.svg index dc95fd4a..82356531 100644 --- a/assets/icons/outline/cloudy-moon.svg +++ b/assets/icons/outline/cloudy-moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/code-circle.svg b/assets/icons/outline/code-circle.svg index cf719eca..a4ebb9e5 100644 --- a/assets/icons/outline/code-circle.svg +++ b/assets/icons/outline/code-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/code-square.svg b/assets/icons/outline/code-square.svg index bb91af9f..edb86a1f 100644 --- a/assets/icons/outline/code-square.svg +++ b/assets/icons/outline/code-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/code.svg b/assets/icons/outline/code.svg index 9efa398f..c85ea8f2 100644 --- a/assets/icons/outline/code.svg +++ b/assets/icons/outline/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/colour-tuneing.svg b/assets/icons/outline/colour-tuning.svg similarity index 100% rename from assets/icons/outline/colour-tuneing.svg rename to assets/icons/outline/colour-tuning.svg diff --git a/assets/icons/outline/condicioner.svg b/assets/icons/outline/condicioner.svg deleted file mode 100644 index 31785ccf..00000000 --- a/assets/icons/outline/condicioner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/condicioner-2.svg b/assets/icons/outline/conditioner-2.svg similarity index 100% rename from assets/icons/outline/condicioner-2.svg rename to assets/icons/outline/conditioner-2.svg diff --git a/assets/icons/outline/conditioner.svg b/assets/icons/outline/conditioner.svg new file mode 100644 index 00000000..5c235bb4 --- /dev/null +++ b/assets/icons/outline/conditioner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/confetti-minimalistic.svg b/assets/icons/outline/confetti-minimalistic.svg index 4c18cc1f..29241bb0 100644 --- a/assets/icons/outline/confetti-minimalistic.svg +++ b/assets/icons/outline/confetti-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/confetti.svg b/assets/icons/outline/confetti.svg index e7628121..c268aab2 100644 --- a/assets/icons/outline/confetti.svg +++ b/assets/icons/outline/confetti.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/confounded-circle.svg b/assets/icons/outline/confounded-circle.svg index 5cbd2693..6c047a16 100644 --- a/assets/icons/outline/confounded-circle.svg +++ b/assets/icons/outline/confounded-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cosmetic.svg b/assets/icons/outline/cosmetic.svg index b486f917..aa134895 100644 --- a/assets/icons/outline/cosmetic.svg +++ b/assets/icons/outline/cosmetic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/creative-commons.svg b/assets/icons/outline/creative-commons.svg index 8d2d6180..e3e21c20 100644 --- a/assets/icons/outline/creative-commons.svg +++ b/assets/icons/outline/creative-commons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/crown-line.svg b/assets/icons/outline/crown-line.svg index e42f3ed5..f07a9cf3 100644 --- a/assets/icons/outline/crown-line.svg +++ b/assets/icons/outline/crown-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/cup-first.svg b/assets/icons/outline/cup-first.svg index 844a5927..a85dc9df 100644 --- a/assets/icons/outline/cup-first.svg +++ b/assets/icons/outline/cup-first.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/danger-circle.svg b/assets/icons/outline/danger-circle.svg index 50c4508f..db57bbe8 100644 --- a/assets/icons/outline/danger-circle.svg +++ b/assets/icons/outline/danger-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/danger-square.svg b/assets/icons/outline/danger-square.svg index 302869cb..056f3948 100644 --- a/assets/icons/outline/danger-square.svg +++ b/assets/icons/outline/danger-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/danger-triangle.svg b/assets/icons/outline/danger-triangle.svg index 624beaca..71a39667 100644 --- a/assets/icons/outline/danger-triangle.svg +++ b/assets/icons/outline/danger-triangle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/danger.svg b/assets/icons/outline/danger.svg index 5146b9ed..5aa01211 100644 --- a/assets/icons/outline/danger.svg +++ b/assets/icons/outline/danger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/diagram-down.svg b/assets/icons/outline/diagram-down.svg index ac49b378..2cadb6c2 100644 --- a/assets/icons/outline/diagram-down.svg +++ b/assets/icons/outline/diagram-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/diagram-up.svg b/assets/icons/outline/diagram-up.svg index 952195b9..87064f91 100644 --- a/assets/icons/outline/diagram-up.svg +++ b/assets/icons/outline/diagram-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dialog-2.svg b/assets/icons/outline/dialog-2.svg index 30ae7f0e..8a3cd10d 100644 --- a/assets/icons/outline/dialog-2.svg +++ b/assets/icons/outline/dialog-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dialog.svg b/assets/icons/outline/dialog.svg index 821f0533..1e4f52eb 100644 --- a/assets/icons/outline/dialog.svg +++ b/assets/icons/outline/dialog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/document-2.svg b/assets/icons/outline/document-2.svg new file mode 100644 index 00000000..14456f0c --- /dev/null +++ b/assets/icons/outline/document-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/download-minimalistic.svg b/assets/icons/outline/download-minimalistic.svg index 2e25993d..ea3012ec 100644 --- a/assets/icons/outline/download-minimalistic.svg +++ b/assets/icons/outline/download-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/download-square.svg b/assets/icons/outline/download-square.svg index a1aa9b69..d04566ba 100644 --- a/assets/icons/outline/download-square.svg +++ b/assets/icons/outline/download-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/download-twice-square.svg b/assets/icons/outline/download-twice-square.svg index 5f9dad0d..7b2c99e0 100644 --- a/assets/icons/outline/download-twice-square.svg +++ b/assets/icons/outline/download-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dropper-3.svg b/assets/icons/outline/dropper-3.svg index dac083af..43199280 100644 --- a/assets/icons/outline/dropper-3.svg +++ b/assets/icons/outline/dropper-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dropper-minimalistic-2.svg b/assets/icons/outline/dropper-minimalistic-2.svg index e53fe5cd..1c6880f3 100644 --- a/assets/icons/outline/dropper-minimalistic-2.svg +++ b/assets/icons/outline/dropper-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dropper-minimalistic.svg b/assets/icons/outline/dropper-minimalistic.svg index a66de593..556ef83a 100644 --- a/assets/icons/outline/dropper-minimalistic.svg +++ b/assets/icons/outline/dropper-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/dropper.svg b/assets/icons/outline/dropper.svg index e50cb86d..cb64bf54 100644 --- a/assets/icons/outline/dropper.svg +++ b/assets/icons/outline/dropper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/emoji-funny-circle.svg b/assets/icons/outline/emoji-funny-circle.svg index e788a47c..4a13c939 100644 --- a/assets/icons/outline/emoji-funny-circle.svg +++ b/assets/icons/outline/emoji-funny-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/emoji-funny-square.svg b/assets/icons/outline/emoji-funny-square.svg index 4ae0b7bc..534560d5 100644 --- a/assets/icons/outline/emoji-funny-square.svg +++ b/assets/icons/outline/emoji-funny-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/exit.svg b/assets/icons/outline/exit.svg index 7865da42..06ca9418 100644 --- a/assets/icons/outline/exit.svg +++ b/assets/icons/outline/exit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/explicit.svg b/assets/icons/outline/explicit.svg index f2fabe5b..b0370de7 100644 --- a/assets/icons/outline/explicit.svg +++ b/assets/icons/outline/explicit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/export.svg b/assets/icons/outline/export.svg index eaec6e2b..f733b885 100644 --- a/assets/icons/outline/export.svg +++ b/assets/icons/outline/export.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/expressionless-circle.svg b/assets/icons/outline/expressionless-circle.svg index 7fe2565b..ff2420c8 100644 --- a/assets/icons/outline/expressionless-circle.svg +++ b/assets/icons/outline/expressionless-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/expressionless-square.svg b/assets/icons/outline/expressionless-square.svg index 1d7b6ce3..589edfae 100644 --- a/assets/icons/outline/expressionless-square.svg +++ b/assets/icons/outline/expressionless-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/eye-scan.svg b/assets/icons/outline/eye-scan.svg index 14638cd5..1324736a 100644 --- a/assets/icons/outline/eye-scan.svg +++ b/assets/icons/outline/eye-scan.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/face-scan-circle.svg b/assets/icons/outline/face-scan-circle.svg index 3b6d81e2..b31f9440 100644 --- a/assets/icons/outline/face-scan-circle.svg +++ b/assets/icons/outline/face-scan-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/face-scan-square.svg b/assets/icons/outline/face-scan-square.svg index 6860f864..4ce67f8e 100644 --- a/assets/icons/outline/face-scan-square.svg +++ b/assets/icons/outline/face-scan-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/facemask-circle.svg b/assets/icons/outline/facemask-circle.svg index 51b157ff..d986923e 100644 --- a/assets/icons/outline/facemask-circle.svg +++ b/assets/icons/outline/facemask-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/facemask-square.svg b/assets/icons/outline/facemask-square.svg index caa86c97..2900d9da 100644 --- a/assets/icons/outline/facemask-square.svg +++ b/assets/icons/outline/facemask-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/feed.svg b/assets/icons/outline/feed.svg index 87a97c92..f38ca5ff 100644 --- a/assets/icons/outline/feed.svg +++ b/assets/icons/outline/feed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/file-favourite.svg b/assets/icons/outline/file-favorite.svg similarity index 100% rename from assets/icons/outline/file-favourite.svg rename to assets/icons/outline/file-favorite.svg diff --git a/assets/icons/outline/file-smile.svg b/assets/icons/outline/file-smile.svg index 8754145b..48578f5e 100644 --- a/assets/icons/outline/file-smile.svg +++ b/assets/icons/outline/file-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/file-text.svg b/assets/icons/outline/file-text.svg index 0d0490b6..9df6d355 100644 --- a/assets/icons/outline/file-text.svg +++ b/assets/icons/outline/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/flashlight-on.svg b/assets/icons/outline/flashlight-on.svg index 4deafca4..86e26056 100644 --- a/assets/icons/outline/flashlight-on.svg +++ b/assets/icons/outline/flashlight-on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/flashlight.svg b/assets/icons/outline/flashlight.svg index e66183d9..d0397a3b 100644 --- a/assets/icons/outline/flashlight.svg +++ b/assets/icons/outline/flashlight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/fog.svg b/assets/icons/outline/fog.svg index a8cb1022..380bae20 100644 --- a/assets/icons/outline/fog.svg +++ b/assets/icons/outline/fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/folder-favourite-bookmark.svg b/assets/icons/outline/folder-favorite-bookmark.svg similarity index 100% rename from assets/icons/outline/folder-favourite-bookmark.svg rename to assets/icons/outline/folder-favorite-bookmark.svg diff --git a/assets/icons/outline/folder-favourite-star.svg b/assets/icons/outline/folder-favorite-star.svg similarity index 100% rename from assets/icons/outline/folder-favourite-star.svg rename to assets/icons/outline/folder-favorite-star.svg diff --git a/assets/icons/outline/forward-right.svg b/assets/icons/outline/forward-right.svg new file mode 100644 index 00000000..0254844f --- /dev/null +++ b/assets/icons/outline/forward-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/4k.svg b/assets/icons/outline/four-k.svg similarity index 100% rename from assets/icons/outline/4k.svg rename to assets/icons/outline/four-k.svg diff --git a/assets/icons/outline/fridge.svg b/assets/icons/outline/fridge.svg index 0b651e0f..1ae43d16 100644 --- a/assets/icons/outline/fridge.svg +++ b/assets/icons/outline/fridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gallery-check.svg b/assets/icons/outline/gallery-check.svg index bd3a12d2..31c39e7b 100644 --- a/assets/icons/outline/gallery-check.svg +++ b/assets/icons/outline/gallery-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gallery-favourite.svg b/assets/icons/outline/gallery-favorite.svg similarity index 100% rename from assets/icons/outline/gallery-favourite.svg rename to assets/icons/outline/gallery-favorite.svg diff --git a/assets/icons/outline/gameboy.svg b/assets/icons/outline/gameboy.svg index fc6df397..36c63ff7 100644 --- a/assets/icons/outline/gameboy.svg +++ b/assets/icons/outline/gameboy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gamepad-charge.svg b/assets/icons/outline/gamepad-charge.svg index 2df8df6d..a56fc622 100644 --- a/assets/icons/outline/gamepad-charge.svg +++ b/assets/icons/outline/gamepad-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gamepad-minimalistic.svg b/assets/icons/outline/gamepad-minimalistic.svg index 9e62a820..e633ed96 100644 --- a/assets/icons/outline/gamepad-minimalistic.svg +++ b/assets/icons/outline/gamepad-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gamepad-no-charge.svg b/assets/icons/outline/gamepad-no-charge.svg index 73b4a9be..b1b9c72b 100644 --- a/assets/icons/outline/gamepad-no-charge.svg +++ b/assets/icons/outline/gamepad-no-charge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gamepad-old.svg b/assets/icons/outline/gamepad-old.svg index 0ffc8257..f0b078b8 100644 --- a/assets/icons/outline/gamepad-old.svg +++ b/assets/icons/outline/gamepad-old.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/gamepad.svg b/assets/icons/outline/gamepad.svg index f2a8e24b..bd70387e 100644 --- a/assets/icons/outline/gamepad.svg +++ b/assets/icons/outline/gamepad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ghost-smile.svg b/assets/icons/outline/ghost-smile.svg index b8fc127e..94989f1c 100644 --- a/assets/icons/outline/ghost-smile.svg +++ b/assets/icons/outline/ghost-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ghost.svg b/assets/icons/outline/ghost.svg index 6eb92b6f..bdbce126 100644 --- a/assets/icons/outline/ghost.svg +++ b/assets/icons/outline/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/globus.svg b/assets/icons/outline/globe.svg similarity index 100% rename from assets/icons/outline/globus.svg rename to assets/icons/outline/globe.svg diff --git a/assets/icons/outline/graph-down-new.svg b/assets/icons/outline/graph-down-new.svg index 5ec71c94..54ccdffe 100644 --- a/assets/icons/outline/graph-down-new.svg +++ b/assets/icons/outline/graph-down-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/graph-down.svg b/assets/icons/outline/graph-down.svg index 7d8ebd6a..282d97c0 100644 --- a/assets/icons/outline/graph-down.svg +++ b/assets/icons/outline/graph-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/graph-new-up.svg b/assets/icons/outline/graph-new-up.svg index 04cb5963..9c8cac80 100644 --- a/assets/icons/outline/graph-new-up.svg +++ b/assets/icons/outline/graph-new-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/graph-new.svg b/assets/icons/outline/graph-new.svg index c4cfd5d7..9d77c9f9 100644 --- a/assets/icons/outline/graph-new.svg +++ b/assets/icons/outline/graph-new.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/graph-up.svg b/assets/icons/outline/graph-up.svg index 2600882e..e12d2929 100644 --- a/assets/icons/outline/graph-up.svg +++ b/assets/icons/outline/graph-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/graph.svg b/assets/icons/outline/graph.svg index 42e1da6d..2e4eab41 100644 --- a/assets/icons/outline/graph.svg +++ b/assets/icons/outline/graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/hamburger-menu.svg b/assets/icons/outline/hamburger-menu.svg index c79cd3d3..e0f02039 100644 --- a/assets/icons/outline/hamburger-menu.svg +++ b/assets/icons/outline/hamburger-menu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/hashtag-chat.svg b/assets/icons/outline/hashtag-chat.svg index 22c84daf..17f41033 100644 --- a/assets/icons/outline/hashtag-chat.svg +++ b/assets/icons/outline/hashtag-chat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/health.svg b/assets/icons/outline/health.svg index 859500e0..8dd32ceb 100644 --- a/assets/icons/outline/health.svg +++ b/assets/icons/outline/health.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/heart-broken.svg b/assets/icons/outline/heart-crack.svg similarity index 100% rename from assets/icons/outline/heart-broken.svg rename to assets/icons/outline/heart-crack.svg diff --git a/assets/icons/outline/heart-lock.svg b/assets/icons/outline/heart-lock.svg index 899940e6..109cfb54 100644 --- a/assets/icons/outline/heart-lock.svg +++ b/assets/icons/outline/heart-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/heart-pulse.svg b/assets/icons/outline/heart-pulse.svg index a4b5fdc4..44c1050d 100644 --- a/assets/icons/outline/heart-pulse.svg +++ b/assets/icons/outline/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/heart-shine.svg b/assets/icons/outline/heart-shine.svg index 611b2319..c1f33fd5 100644 --- a/assets/icons/outline/heart-shine.svg +++ b/assets/icons/outline/heart-shine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/heart-unlock.svg b/assets/icons/outline/heart-unlock.svg index 5ad7ab49..8dd34e46 100644 --- a/assets/icons/outline/heart-unlock.svg +++ b/assets/icons/outline/heart-unlock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/history-2.svg b/assets/icons/outline/history-2.svg index 56ec4913..185ef9bd 100644 --- a/assets/icons/outline/history-2.svg +++ b/assets/icons/outline/history-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/history-3.svg b/assets/icons/outline/history-3.svg index 9559f989..15b6c711 100644 --- a/assets/icons/outline/history-3.svg +++ b/assets/icons/outline/history-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-2.svg b/assets/icons/outline/home-2.svg index ef9be2dd..c60d7483 100644 --- a/assets/icons/outline/home-2.svg +++ b/assets/icons/outline/home-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-add-angle.svg b/assets/icons/outline/home-add-angle.svg index 599f9880..b2289886 100644 --- a/assets/icons/outline/home-add-angle.svg +++ b/assets/icons/outline/home-add-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-add.svg b/assets/icons/outline/home-add.svg index 4042c306..3784d927 100644 --- a/assets/icons/outline/home-add.svg +++ b/assets/icons/outline/home-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-angle-2.svg b/assets/icons/outline/home-angle-2.svg index c2761254..c8417044 100644 --- a/assets/icons/outline/home-angle-2.svg +++ b/assets/icons/outline/home-angle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-angle.svg b/assets/icons/outline/home-angle.svg index 764652be..213a77e5 100644 --- a/assets/icons/outline/home-angle.svg +++ b/assets/icons/outline/home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-smile-angle.svg b/assets/icons/outline/home-smile-angle.svg index fa18e628..aa95b3b9 100644 --- a/assets/icons/outline/home-smile-angle.svg +++ b/assets/icons/outline/home-smile-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-smile.svg b/assets/icons/outline/home-smile.svg index e2afba5b..14715350 100644 --- a/assets/icons/outline/home-smile.svg +++ b/assets/icons/outline/home-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/home-wi-fi-angle.svg b/assets/icons/outline/home-wi-fi-angle.svg new file mode 100644 index 00000000..05d22b47 --- /dev/null +++ b/assets/icons/outline/home-wi-fi-angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/home-wi-fi.svg b/assets/icons/outline/home-wi-fi.svg new file mode 100644 index 00000000..6181fc73 --- /dev/null +++ b/assets/icons/outline/home-wi-fi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/home-wifi-angle.svg b/assets/icons/outline/home-wifi-angle.svg deleted file mode 100644 index cf57c57e..00000000 --- a/assets/icons/outline/home-wifi-angle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/home-wifi.svg b/assets/icons/outline/home-wifi.svg deleted file mode 100644 index 3067afc7..00000000 --- a/assets/icons/outline/home-wifi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/home.svg b/assets/icons/outline/home.svg index 69eb2c76..68e50613 100644 --- a/assets/icons/outline/home.svg +++ b/assets/icons/outline/home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/house.svg b/assets/icons/outline/house.svg new file mode 100644 index 00000000..69eb2c76 --- /dev/null +++ b/assets/icons/outline/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/iphone.svg b/assets/icons/outline/i-phone.svg similarity index 100% rename from assets/icons/outline/iphone.svg rename to assets/icons/outline/i-phone.svg diff --git a/assets/icons/outline/import.svg b/assets/icons/outline/import.svg index 283bcf57..2f13f99b 100644 --- a/assets/icons/outline/import.svg +++ b/assets/icons/outline/import.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/incoming-call-rounded.svg b/assets/icons/outline/incoming-call-rounded.svg index bc1b79e0..cac2a9f6 100644 --- a/assets/icons/outline/incoming-call-rounded.svg +++ b/assets/icons/outline/incoming-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/incoming-call.svg b/assets/icons/outline/incoming-call.svg index fab4f62d..30e74bd0 100644 --- a/assets/icons/outline/incoming-call.svg +++ b/assets/icons/outline/incoming-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/infinity.svg b/assets/icons/outline/infinite.svg similarity index 100% rename from assets/icons/outline/infinity.svg rename to assets/icons/outline/infinite.svg diff --git a/assets/icons/outline/info-circle.svg b/assets/icons/outline/info-circle.svg index c7e86bdd..62683a39 100644 --- a/assets/icons/outline/info-circle.svg +++ b/assets/icons/outline/info-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/info-square.svg b/assets/icons/outline/info-square.svg index 22b0c73d..ec84dda4 100644 --- a/assets/icons/outline/info-square.svg +++ b/assets/icons/outline/info-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/jar-of-pills-2.svg b/assets/icons/outline/jar-of-pills-2.svg index 86b68875..48ddbfb1 100644 --- a/assets/icons/outline/jar-of-pills-2.svg +++ b/assets/icons/outline/jar-of-pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/jar-of-pills.svg b/assets/icons/outline/jar-of-pills.svg index 919e3cea..7b5a0dbf 100644 --- a/assets/icons/outline/jar-of-pills.svg +++ b/assets/icons/outline/jar-of-pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/keyboard.svg b/assets/icons/outline/keyboard.svg index bddb5ea7..2bc2755b 100644 --- a/assets/icons/outline/keyboard.svg +++ b/assets/icons/outline/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/laptop.svg b/assets/icons/outline/laptop.svg index 03b65cd9..86a39880 100644 --- a/assets/icons/outline/laptop.svg +++ b/assets/icons/outline/laptop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/lightbulb-minimalistic.svg b/assets/icons/outline/lightbulb-minimalistic.svg index 4e68eea3..4e2c016d 100644 --- a/assets/icons/outline/lightbulb-minimalistic.svg +++ b/assets/icons/outline/lightbulb-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/lightning.svg b/assets/icons/outline/lightning.svg index aee2bad2..74b2f3c0 100644 --- a/assets/icons/outline/lightning.svg +++ b/assets/icons/outline/lightning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link-broken-minimalistic.svg b/assets/icons/outline/link-broken-minimalistic.svg deleted file mode 100644 index f223f9bf..00000000 --- a/assets/icons/outline/link-broken-minimalistic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/link-broken.svg b/assets/icons/outline/link-broken.svg deleted file mode 100644 index 44d3f640..00000000 --- a/assets/icons/outline/link-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/link-circle.svg b/assets/icons/outline/link-circle.svg index 8500a4a6..14665985 100644 --- a/assets/icons/outline/link-circle.svg +++ b/assets/icons/outline/link-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link-minimalistic-2.svg b/assets/icons/outline/link-minimalistic-2.svg index 4f99b4f3..d332a6bc 100644 --- a/assets/icons/outline/link-minimalistic-2.svg +++ b/assets/icons/outline/link-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link-minimalistic.svg b/assets/icons/outline/link-minimalistic.svg index 5b8e35fd..58ef17e2 100644 --- a/assets/icons/outline/link-minimalistic.svg +++ b/assets/icons/outline/link-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link-round-angle.svg b/assets/icons/outline/link-round-angle.svg index 0d0a1a87..84cae39c 100644 --- a/assets/icons/outline/link-round-angle.svg +++ b/assets/icons/outline/link-round-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link-square.svg b/assets/icons/outline/link-square.svg index c3aa912e..59ce9f15 100644 --- a/assets/icons/outline/link-square.svg +++ b/assets/icons/outline/link-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/link.svg b/assets/icons/outline/link.svg index 573ca655..9306393e 100644 --- a/assets/icons/outline/link.svg +++ b/assets/icons/outline/link.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/list-vertical.svg b/assets/icons/outline/list-vertical.svg new file mode 100644 index 00000000..12b78bb0 --- /dev/null +++ b/assets/icons/outline/list-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/lock-keyhole-minimalistic-unlocked.svg b/assets/icons/outline/lock-keyhole-minimalistic-unlocked.svg index 6c4517c0..6fa0a222 100644 --- a/assets/icons/outline/lock-keyhole-minimalistic-unlocked.svg +++ b/assets/icons/outline/lock-keyhole-minimalistic-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/lock-keyhole-minimalistic.svg b/assets/icons/outline/lock-keyhole-minimalistic.svg index 965bfd38..e51eb006 100644 --- a/assets/icons/outline/lock-keyhole-minimalistic.svg +++ b/assets/icons/outline/lock-keyhole-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/lock-password-unlocked.svg b/assets/icons/outline/lock-password-unlocked.svg index b0bc84ea..12312f4f 100644 --- a/assets/icons/outline/lock-password-unlocked.svg +++ b/assets/icons/outline/lock-password-unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/lock-password.svg b/assets/icons/outline/lock-password.svg index 50a7e984..b3fb71b2 100644 --- a/assets/icons/outline/lock-password.svg +++ b/assets/icons/outline/lock-password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/login-2.svg b/assets/icons/outline/login-2.svg index 640ae019..6e1380e1 100644 --- a/assets/icons/outline/login-2.svg +++ b/assets/icons/outline/login-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/login-3.svg b/assets/icons/outline/login-3.svg index 00b10fa3..3c95e50f 100644 --- a/assets/icons/outline/login-3.svg +++ b/assets/icons/outline/login-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/login.svg b/assets/icons/outline/login.svg index cbffecd4..d2745919 100644 --- a/assets/icons/outline/login.svg +++ b/assets/icons/outline/login.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/logout-2.svg b/assets/icons/outline/logout-2.svg new file mode 100644 index 00000000..a970836b --- /dev/null +++ b/assets/icons/outline/logout-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/logout-3.svg b/assets/icons/outline/logout-3.svg index df15731c..2a8f6ad7 100644 --- a/assets/icons/outline/logout-3.svg +++ b/assets/icons/outline/logout-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/logout.svg b/assets/icons/outline/logout.svg new file mode 100644 index 00000000..6b408767 --- /dev/null +++ b/assets/icons/outline/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/magic-stick-3.svg b/assets/icons/outline/magic-stick-3.svg deleted file mode 100644 index 3d3d2253..00000000 --- a/assets/icons/outline/magic-stick-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/magic-stick-2.svg b/assets/icons/outline/magic-wand-2.svg similarity index 100% rename from assets/icons/outline/magic-stick-2.svg rename to assets/icons/outline/magic-wand-2.svg diff --git a/assets/icons/outline/magic-wand-3.svg b/assets/icons/outline/magic-wand-3.svg new file mode 100644 index 00000000..4f4ae48a --- /dev/null +++ b/assets/icons/outline/magic-wand-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/magic-stick.svg b/assets/icons/outline/magic-wand.svg similarity index 100% rename from assets/icons/outline/magic-stick.svg rename to assets/icons/outline/magic-wand.svg diff --git a/assets/icons/outline/magnet-wave.svg b/assets/icons/outline/magnet-wave.svg index 6a33ce9a..9562c983 100644 --- a/assets/icons/outline/magnet-wave.svg +++ b/assets/icons/outline/magnet-wave.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/magnifer-bug.svg b/assets/icons/outline/magnifier-bug.svg similarity index 100% rename from assets/icons/outline/magnifer-bug.svg rename to assets/icons/outline/magnifier-bug.svg diff --git a/assets/icons/outline/magnifer-zoom-in.svg b/assets/icons/outline/magnifier-zoom-in.svg similarity index 100% rename from assets/icons/outline/magnifer-zoom-in.svg rename to assets/icons/outline/magnifier-zoom-in.svg diff --git a/assets/icons/outline/magnifer-zoom-out.svg b/assets/icons/outline/magnifier-zoom-out.svg similarity index 100% rename from assets/icons/outline/magnifer-zoom-out.svg rename to assets/icons/outline/magnifier-zoom-out.svg diff --git a/assets/icons/outline/magnifer.svg b/assets/icons/outline/magnifier.svg similarity index 100% rename from assets/icons/outline/magnifer.svg rename to assets/icons/outline/magnifier.svg diff --git a/assets/icons/outline/map-point-favourite.svg b/assets/icons/outline/map-point-favorite.svg similarity index 100% rename from assets/icons/outline/map-point-favourite.svg rename to assets/icons/outline/map-point-favorite.svg diff --git a/assets/icons/outline/mask-happly.svg b/assets/icons/outline/mask-happly.svg deleted file mode 100644 index cdcbe079..00000000 --- a/assets/icons/outline/mask-happly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/mask-happy.svg b/assets/icons/outline/mask-happy.svg new file mode 100644 index 00000000..a5b94471 --- /dev/null +++ b/assets/icons/outline/mask-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/mask-sad.svg b/assets/icons/outline/mask-sad.svg index 6f32835e..9770e269 100644 --- a/assets/icons/outline/mask-sad.svg +++ b/assets/icons/outline/mask-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/masks.svg b/assets/icons/outline/masks.svg index 3beae35a..6089e284 100644 --- a/assets/icons/outline/masks.svg +++ b/assets/icons/outline/masks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/maximize-square-2.svg b/assets/icons/outline/maximize-square-2.svg index 1680be49..748dac86 100644 --- a/assets/icons/outline/maximize-square-2.svg +++ b/assets/icons/outline/maximize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/maximize-square-3.svg b/assets/icons/outline/maximize-square-3.svg index 47207e50..ba107584 100644 --- a/assets/icons/outline/maximize-square-3.svg +++ b/assets/icons/outline/maximize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/maximize-square-minimalistic.svg b/assets/icons/outline/maximize-square-minimalistic.svg index cb195248..cb0ce268 100644 --- a/assets/icons/outline/maximize-square-minimalistic.svg +++ b/assets/icons/outline/maximize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/maximize-square.svg b/assets/icons/outline/maximize-square.svg index c7bf881a..233f539b 100644 --- a/assets/icons/outline/maximize-square.svg +++ b/assets/icons/outline/maximize-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/maximize.svg b/assets/icons/outline/maximize.svg index df280f3b..9c81783b 100644 --- a/assets/icons/outline/maximize.svg +++ b/assets/icons/outline/maximize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/medical-kit.svg b/assets/icons/outline/medical-kit.svg index 92bfa419..421ecd8f 100644 --- a/assets/icons/outline/medical-kit.svg +++ b/assets/icons/outline/medical-kit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/menu-dots-circle.svg b/assets/icons/outline/menu-dots-circle.svg index 9c6220c6..79277f55 100644 --- a/assets/icons/outline/menu-dots-circle.svg +++ b/assets/icons/outline/menu-dots-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/menu-dots-square.svg b/assets/icons/outline/menu-dots-square.svg index 0b66030a..acfb8e65 100644 --- a/assets/icons/outline/menu-dots-square.svg +++ b/assets/icons/outline/menu-dots-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/menu-dots.svg b/assets/icons/outline/menu-dots.svg index b7f6eecb..c5905bd9 100644 --- a/assets/icons/outline/menu-dots.svg +++ b/assets/icons/outline/menu-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minimalistic-magnifer-bug.svg b/assets/icons/outline/minimalistic-magnifier-bug.svg similarity index 100% rename from assets/icons/outline/minimalistic-magnifer-bug.svg rename to assets/icons/outline/minimalistic-magnifier-bug.svg diff --git a/assets/icons/outline/minimalistic-magnifer-zoom-in.svg b/assets/icons/outline/minimalistic-magnifier-zoom-in.svg similarity index 100% rename from assets/icons/outline/minimalistic-magnifer-zoom-in.svg rename to assets/icons/outline/minimalistic-magnifier-zoom-in.svg diff --git a/assets/icons/outline/minimalistic-magnifer-zoom-out.svg b/assets/icons/outline/minimalistic-magnifier-zoom-out.svg similarity index 100% rename from assets/icons/outline/minimalistic-magnifer-zoom-out.svg rename to assets/icons/outline/minimalistic-magnifier-zoom-out.svg diff --git a/assets/icons/outline/minimalistic-magnifer.svg b/assets/icons/outline/minimalistic-magnifier.svg similarity index 100% rename from assets/icons/outline/minimalistic-magnifer.svg rename to assets/icons/outline/minimalistic-magnifier.svg diff --git a/assets/icons/outline/minimize-square-2.svg b/assets/icons/outline/minimize-square-2.svg index 2157233f..f1f04a24 100644 --- a/assets/icons/outline/minimize-square-2.svg +++ b/assets/icons/outline/minimize-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minimize-square-3.svg b/assets/icons/outline/minimize-square-3.svg index 42687a74..ca67dd8f 100644 --- a/assets/icons/outline/minimize-square-3.svg +++ b/assets/icons/outline/minimize-square-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minimize-square-minimalistic.svg b/assets/icons/outline/minimize-square-minimalistic.svg index 7790b8fd..dc298f9c 100644 --- a/assets/icons/outline/minimize-square-minimalistic.svg +++ b/assets/icons/outline/minimize-square-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minimize.svg b/assets/icons/outline/minimize.svg index df9090a6..91e41a28 100644 --- a/assets/icons/outline/minimize.svg +++ b/assets/icons/outline/minimize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minus-circle.svg b/assets/icons/outline/minus-circle.svg index b7875ae8..7c0ecd60 100644 --- a/assets/icons/outline/minus-circle.svg +++ b/assets/icons/outline/minus-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/minus-square.svg b/assets/icons/outline/minus-square.svg index ca7f9e85..ee0f051e 100644 --- a/assets/icons/outline/minus-square.svg +++ b/assets/icons/outline/minus-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/mirror-2.svg b/assets/icons/outline/mirror-2.svg new file mode 100644 index 00000000..54d950a6 --- /dev/null +++ b/assets/icons/outline/mirror-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/mirror-left.svg b/assets/icons/outline/mirror-left.svg index 748e63f5..8a4a5f0c 100644 --- a/assets/icons/outline/mirror-left.svg +++ b/assets/icons/outline/mirror-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/mirror-right.svg b/assets/icons/outline/mirror-right.svg index d136cfa8..d30f137d 100644 --- a/assets/icons/outline/mirror-right.svg +++ b/assets/icons/outline/mirror-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/mirror.svg b/assets/icons/outline/mirror.svg index 54d950a6..30ec0cd8 100644 --- a/assets/icons/outline/mirror.svg +++ b/assets/icons/outline/mirror.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wad-of-money.svg b/assets/icons/outline/money-roll.svg similarity index 100% rename from assets/icons/outline/wad-of-money.svg rename to assets/icons/outline/money-roll.svg diff --git a/assets/icons/outline/mug.svg b/assets/icons/outline/mug.svg new file mode 100644 index 00000000..bf223d7a --- /dev/null +++ b/assets/icons/outline/mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/muted.svg b/assets/icons/outline/muted.svg index d9ad856e..e2ae4a22 100644 --- a/assets/icons/outline/muted.svg +++ b/assets/icons/outline/muted.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/notebook-2.svg b/assets/icons/outline/notebook-2.svg new file mode 100644 index 00000000..2c1d0aac --- /dev/null +++ b/assets/icons/outline/notebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/notebook-bookmark.svg b/assets/icons/outline/notebook-bookmark.svg index 4dda6d4a..994aa706 100644 --- a/assets/icons/outline/notebook-bookmark.svg +++ b/assets/icons/outline/notebook-bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/notification-lines-remove.svg b/assets/icons/outline/notification-lines-remove.svg index 82deaa50..d587759c 100644 --- a/assets/icons/outline/notification-lines-remove.svg +++ b/assets/icons/outline/notification-lines-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/notification-remove.svg b/assets/icons/outline/notification-remove.svg index 0c28336f..0a6150a6 100644 --- a/assets/icons/outline/notification-remove.svg +++ b/assets/icons/outline/notification-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/notification-unread-lines.svg b/assets/icons/outline/notification-unread-lines.svg index 95395cd7..09546d5c 100644 --- a/assets/icons/outline/notification-unread-lines.svg +++ b/assets/icons/outline/notification-unread-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/notification-unread.svg b/assets/icons/outline/notification-unread.svg index d40753b1..fd335416 100644 --- a/assets/icons/outline/notification-unread.svg +++ b/assets/icons/outline/notification-unread.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/outgoing-call-rounded.svg b/assets/icons/outline/outgoing-call-rounded.svg index 5e963f8a..a32434d3 100644 --- a/assets/icons/outline/outgoing-call-rounded.svg +++ b/assets/icons/outline/outgoing-call-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/outgoing-call.svg b/assets/icons/outline/outgoing-call.svg index b4011afc..72360192 100644 --- a/assets/icons/outline/outgoing-call.svg +++ b/assets/icons/outline/outgoing-call.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pallete-2.svg b/assets/icons/outline/palette-2.svg similarity index 100% rename from assets/icons/outline/pallete-2.svg rename to assets/icons/outline/palette-2.svg diff --git a/assets/icons/outline/paragraph-spacing.svg b/assets/icons/outline/paragraph-spacing.svg index bc1644a6..9bf149bd 100644 --- a/assets/icons/outline/paragraph-spacing.svg +++ b/assets/icons/outline/paragraph-spacing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/passport.svg b/assets/icons/outline/passport.svg index ca8f5d0d..057f442a 100644 --- a/assets/icons/outline/passport.svg +++ b/assets/icons/outline/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/password-minimalistic-input.svg b/assets/icons/outline/password-minimalistic-input.svg index a4afc80a..191c8af3 100644 --- a/assets/icons/outline/password-minimalistic-input.svg +++ b/assets/icons/outline/password-minimalistic-input.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/password-minimalistic.svg b/assets/icons/outline/password-minimalistic.svg index 4f22f5b9..7253087e 100644 --- a/assets/icons/outline/password-minimalistic.svg +++ b/assets/icons/outline/password-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/password.svg b/assets/icons/outline/password.svg index b2c8e57e..7070e6c1 100644 --- a/assets/icons/outline/password.svg +++ b/assets/icons/outline/password.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/paw.svg b/assets/icons/outline/paw.svg index 7539436d..245e8205 100644 --- a/assets/icons/outline/paw.svg +++ b/assets/icons/outline/paw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/phone-calling-rounded.svg b/assets/icons/outline/phone-calling-rounded.svg index 5e6c42fb..55aa7702 100644 --- a/assets/icons/outline/phone-calling-rounded.svg +++ b/assets/icons/outline/phone-calling-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/phone-calling.svg b/assets/icons/outline/phone-calling.svg index be3a6db6..36a36d9b 100644 --- a/assets/icons/outline/phone-calling.svg +++ b/assets/icons/outline/phone-calling.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pie-chart-3.svg b/assets/icons/outline/pie-chart-3.svg index 73686eee..917e1961 100644 --- a/assets/icons/outline/pie-chart-3.svg +++ b/assets/icons/outline/pie-chart-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pie-chart.svg b/assets/icons/outline/pie-chart.svg index aea0bd36..e25d6807 100644 --- a/assets/icons/outline/pie-chart.svg +++ b/assets/icons/outline/pie-chart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pills-2.svg b/assets/icons/outline/pills-2.svg index 975ce7c6..c483c070 100644 --- a/assets/icons/outline/pills-2.svg +++ b/assets/icons/outline/pills-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pills-3.svg b/assets/icons/outline/pills-3.svg index ee920020..3001cce5 100644 --- a/assets/icons/outline/pills-3.svg +++ b/assets/icons/outline/pills-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pills.svg b/assets/icons/outline/pills.svg index 4c4ade53..027306d6 100644 --- a/assets/icons/outline/pills.svg +++ b/assets/icons/outline/pills.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pin-list.svg b/assets/icons/outline/pin-list.svg index c47ee5a5..3f7d5916 100644 --- a/assets/icons/outline/pin-list.svg +++ b/assets/icons/outline/pin-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/plain-2.svg b/assets/icons/outline/plane-2.svg similarity index 100% rename from assets/icons/outline/plain-2.svg rename to assets/icons/outline/plane-2.svg diff --git a/assets/icons/outline/plain-3.svg b/assets/icons/outline/plane-3.svg similarity index 100% rename from assets/icons/outline/plain-3.svg rename to assets/icons/outline/plane-3.svg diff --git a/assets/icons/outline/plain.svg b/assets/icons/outline/plane.svg similarity index 100% rename from assets/icons/outline/plain.svg rename to assets/icons/outline/plane.svg diff --git a/assets/icons/outline/planet-2.svg b/assets/icons/outline/planet-2.svg index 2bb5b3d5..33e6f870 100644 --- a/assets/icons/outline/planet-2.svg +++ b/assets/icons/outline/planet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/planet-4.svg b/assets/icons/outline/planet-4.svg index 28f63c21..69c9c780 100644 --- a/assets/icons/outline/planet-4.svg +++ b/assets/icons/outline/planet-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/plate.svg b/assets/icons/outline/plate.svg index 22184a3d..3f521bb3 100644 --- a/assets/icons/outline/plate.svg +++ b/assets/icons/outline/plate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/playback-speed.svg b/assets/icons/outline/playback-speed.svg index 30136de7..0b3429eb 100644 --- a/assets/icons/outline/playback-speed.svg +++ b/assets/icons/outline/playback-speed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/plaaylist-minimalistic.svg b/assets/icons/outline/playlist-minimalistic.svg similarity index 100% rename from assets/icons/outline/plaaylist-minimalistic.svg rename to assets/icons/outline/playlist-minimalistic.svg diff --git a/assets/icons/outline/posts-carousel-horizontal.svg b/assets/icons/outline/posts-carousel-horizontal.svg index 9b02baf7..79828faa 100644 --- a/assets/icons/outline/posts-carousel-horizontal.svg +++ b/assets/icons/outline/posts-carousel-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/posts-carousel-vertical.svg b/assets/icons/outline/posts-carousel-vertical.svg index 2d0bb3d6..97917564 100644 --- a/assets/icons/outline/posts-carousel-vertical.svg +++ b/assets/icons/outline/posts-carousel-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/power.svg b/assets/icons/outline/power.svg index 6a12d3a1..32701ee6 100644 --- a/assets/icons/outline/power.svg +++ b/assets/icons/outline/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/printer-2.svg b/assets/icons/outline/printer-2.svg index 55b7c4fe..59add0a8 100644 --- a/assets/icons/outline/printer-2.svg +++ b/assets/icons/outline/printer-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/printer.svg b/assets/icons/outline/printer.svg index f1b8bb02..dc0d9e1e 100644 --- a/assets/icons/outline/printer.svg +++ b/assets/icons/outline/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/programming.svg b/assets/icons/outline/programming.svg index d1ca2b08..de7ddadc 100644 --- a/assets/icons/outline/programming.svg +++ b/assets/icons/outline/programming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/pulse.svg b/assets/icons/outline/pulse.svg index 7a64bef4..5a8a490f 100644 --- a/assets/icons/outline/pulse.svg +++ b/assets/icons/outline/pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/qr-code.svg b/assets/icons/outline/qr-code.svg index 4821f010..8ff71c9f 100644 --- a/assets/icons/outline/qr-code.svg +++ b/assets/icons/outline/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/question-square.svg b/assets/icons/outline/question-square.svg index a6d27b11..c852c617 100644 --- a/assets/icons/outline/question-square.svg +++ b/assets/icons/outline/question-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/radial-blur.svg b/assets/icons/outline/radial-blur.svg index 2755ff91..9696c8a5 100644 --- a/assets/icons/outline/radial-blur.svg +++ b/assets/icons/outline/radial-blur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/receive-square.svg b/assets/icons/outline/receive-square.svg new file mode 100644 index 00000000..4c1814ac --- /dev/null +++ b/assets/icons/outline/receive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/receive-twice-square.svg b/assets/icons/outline/receive-twice-square.svg new file mode 100644 index 00000000..3b2d0612 --- /dev/null +++ b/assets/icons/outline/receive-twice-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/recive-square.svg b/assets/icons/outline/recive-square.svg deleted file mode 100644 index ff3cbb6d..00000000 --- a/assets/icons/outline/recive-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/recive-twice-square.svg b/assets/icons/outline/recive-twice-square.svg deleted file mode 100644 index 4e883cc0..00000000 --- a/assets/icons/outline/recive-twice-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/record-audio-circle.svg b/assets/icons/outline/record-audio-circle.svg new file mode 100644 index 00000000..15dc3cc7 --- /dev/null +++ b/assets/icons/outline/record-audio-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/reel-2.svg b/assets/icons/outline/reel-2.svg index aeae56d1..9d517f06 100644 --- a/assets/icons/outline/reel-2.svg +++ b/assets/icons/outline/reel-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/refresh-circle.svg b/assets/icons/outline/refresh-circle.svg index b5eea68b..eba1c2f3 100644 --- a/assets/icons/outline/refresh-circle.svg +++ b/assets/icons/outline/refresh-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/refresh-square.svg b/assets/icons/outline/refresh-square.svg index 65556f86..b5c03481 100644 --- a/assets/icons/outline/refresh-square.svg +++ b/assets/icons/outline/refresh-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/remote-controller-2.svg b/assets/icons/outline/remote-controller-2.svg index e0e45d05..340630cd 100644 --- a/assets/icons/outline/remote-controller-2.svg +++ b/assets/icons/outline/remote-controller-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/remote-controller-minimalistic.svg b/assets/icons/outline/remote-controller-minimalistic.svg index 0430c1e0..cd20440b 100644 --- a/assets/icons/outline/remote-controller-minimalistic.svg +++ b/assets/icons/outline/remote-controller-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/remote-controller.svg b/assets/icons/outline/remote-controller.svg index 88cf88c0..f8bb9fdf 100644 --- a/assets/icons/outline/remote-controller.svg +++ b/assets/icons/outline/remote-controller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/reorder-2.svg b/assets/icons/outline/reorder-2.svg new file mode 100644 index 00000000..7dd862ed --- /dev/null +++ b/assets/icons/outline/reorder-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/reorder.svg b/assets/icons/outline/reorder.svg index 623203f0..abbbdbff 100644 --- a/assets/icons/outline/reorder.svg +++ b/assets/icons/outline/reorder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/restart-circle.svg b/assets/icons/outline/restart-circle.svg index 6324e64b..d984410f 100644 --- a/assets/icons/outline/restart-circle.svg +++ b/assets/icons/outline/restart-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/restart-square.svg b/assets/icons/outline/restart-square.svg index 8a8d8c2c..7406c24f 100644 --- a/assets/icons/outline/restart-square.svg +++ b/assets/icons/outline/restart-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/revote.svg b/assets/icons/outline/revote.svg index b11a728b..8944f18e 100644 --- a/assets/icons/outline/revote.svg +++ b/assets/icons/outline/revote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/rewind-forward.svg b/assets/icons/outline/rewind-forward.svg index d7be6474..b47a5de0 100644 --- a/assets/icons/outline/rewind-forward.svg +++ b/assets/icons/outline/rewind-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/rocket-2.svg b/assets/icons/outline/rocket-2.svg index 9d7e0cf5..857a9430 100644 --- a/assets/icons/outline/rocket-2.svg +++ b/assets/icons/outline/rocket-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/round-graph.svg b/assets/icons/outline/round-graph.svg index 5a4c3268..2f0d7e54 100644 --- a/assets/icons/outline/round-graph.svg +++ b/assets/icons/outline/round-graph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/round-transfer-horizontal.svg b/assets/icons/outline/round-transfer-horizontal.svg index 15783a4e..c2ace92e 100644 --- a/assets/icons/outline/round-transfer-horizontal.svg +++ b/assets/icons/outline/round-transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/round-transfer-vertical.svg b/assets/icons/outline/round-transfer-vertical.svg index 8335726a..38b5d363 100644 --- a/assets/icons/outline/round-transfer-vertical.svg +++ b/assets/icons/outline/round-transfer-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/rounded-magnifer-bug.svg b/assets/icons/outline/rounded-magnifier-bug.svg similarity index 100% rename from assets/icons/outline/rounded-magnifer-bug.svg rename to assets/icons/outline/rounded-magnifier-bug.svg diff --git a/assets/icons/outline/rounded-magnifer-zoom-in.svg b/assets/icons/outline/rounded-magnifier-zoom-in.svg similarity index 100% rename from assets/icons/outline/rounded-magnifer-zoom-in.svg rename to assets/icons/outline/rounded-magnifier-zoom-in.svg diff --git a/assets/icons/outline/rounded-magnifer-zoom-out.svg b/assets/icons/outline/rounded-magnifier-zoom-out.svg similarity index 100% rename from assets/icons/outline/rounded-magnifer-zoom-out.svg rename to assets/icons/outline/rounded-magnifier-zoom-out.svg diff --git a/assets/icons/outline/rounded-magnifer.svg b/assets/icons/outline/rounded-magnifier.svg similarity index 100% rename from assets/icons/outline/rounded-magnifer.svg rename to assets/icons/outline/rounded-magnifier.svg diff --git a/assets/icons/outline/routing-2.svg b/assets/icons/outline/routing-2.svg index 57050163..b12332e2 100644 --- a/assets/icons/outline/routing-2.svg +++ b/assets/icons/outline/routing-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ruler-cross-pen.svg b/assets/icons/outline/ruler-cross-pen.svg index bb561088..f2f55403 100644 --- a/assets/icons/outline/ruler-cross-pen.svg +++ b/assets/icons/outline/ruler-cross-pen.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sad-circle.svg b/assets/icons/outline/sad-circle.svg index 47c9ad1f..9dd2bcef 100644 --- a/assets/icons/outline/sad-circle.svg +++ b/assets/icons/outline/sad-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sad-square.svg b/assets/icons/outline/sad-square.svg index 3551e3c7..231c01fd 100644 --- a/assets/icons/outline/sad-square.svg +++ b/assets/icons/outline/sad-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sale-square.svg b/assets/icons/outline/sale-square.svg index 110ebcbd..576041e7 100644 --- a/assets/icons/outline/sale-square.svg +++ b/assets/icons/outline/sale-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sale.svg b/assets/icons/outline/sale.svg index ffb75c05..9c291091 100644 --- a/assets/icons/outline/sale.svg +++ b/assets/icons/outline/sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/scale.svg b/assets/icons/outline/scale.svg index 0e0de1d9..d4493546 100644 --- a/assets/icons/outline/scale.svg +++ b/assets/icons/outline/scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/scaling.svg b/assets/icons/outline/scaling.svg new file mode 100644 index 00000000..5f50f42c --- /dev/null +++ b/assets/icons/outline/scaling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/scanner-2.svg b/assets/icons/outline/scanner-2.svg index 10c81785..d13d97c3 100644 --- a/assets/icons/outline/scanner-2.svg +++ b/assets/icons/outline/scanner-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/scanner.svg b/assets/icons/outline/scanner.svg index 0f451716..80bd8c36 100644 --- a/assets/icons/outline/scanner.svg +++ b/assets/icons/outline/scanner.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/screen-share.svg b/assets/icons/outline/screen-share.svg index e67fa1c8..aeac3ad7 100644 --- a/assets/icons/outline/screen-share.svg +++ b/assets/icons/outline/screen-share.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/screencast-2.svg b/assets/icons/outline/screencast-2.svg index 8b7659e0..b7c6ed09 100644 --- a/assets/icons/outline/screencast-2.svg +++ b/assets/icons/outline/screencast-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/screencast.svg b/assets/icons/outline/screencast.svg index 1758c04e..5c7fa60e 100644 --- a/assets/icons/outline/screencast.svg +++ b/assets/icons/outline/screencast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/send-square.svg b/assets/icons/outline/send-square.svg index 31524503..b64bc534 100644 --- a/assets/icons/outline/send-square.svg +++ b/assets/icons/outline/send-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/send-twice-square.svg b/assets/icons/outline/send-twice-square.svg index f9a3c95f..0e535424 100644 --- a/assets/icons/outline/send-twice-square.svg +++ b/assets/icons/outline/send-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/server-minimalistic.svg b/assets/icons/outline/server-minimalistic.svg index b91fe568..87093519 100644 --- a/assets/icons/outline/server-minimalistic.svg +++ b/assets/icons/outline/server-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/server-path.svg b/assets/icons/outline/server-path.svg index 2a78099b..8e936e6d 100644 --- a/assets/icons/outline/server-path.svg +++ b/assets/icons/outline/server-path.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/share-circle.svg b/assets/icons/outline/share-circle.svg index c7583a16..77e1a42e 100644 --- a/assets/icons/outline/share-circle.svg +++ b/assets/icons/outline/share-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-check.svg b/assets/icons/outline/shield-check.svg index a7313049..6752c7ef 100644 --- a/assets/icons/outline/shield-check.svg +++ b/assets/icons/outline/shield-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-cross.svg b/assets/icons/outline/shield-cross.svg index 03c93125..9802521b 100644 --- a/assets/icons/outline/shield-cross.svg +++ b/assets/icons/outline/shield-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-minus.svg b/assets/icons/outline/shield-minus.svg index 9a066e4f..7f35791b 100644 --- a/assets/icons/outline/shield-minus.svg +++ b/assets/icons/outline/shield-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-plus.svg b/assets/icons/outline/shield-plus.svg index 473cfd27..fbfc3c48 100644 --- a/assets/icons/outline/shield-plus.svg +++ b/assets/icons/outline/shield-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-up.svg b/assets/icons/outline/shield-up.svg index 7cfa97e1..9e586327 100644 --- a/assets/icons/outline/shield-up.svg +++ b/assets/icons/outline/shield-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-user.svg b/assets/icons/outline/shield-user.svg index a9cd9605..d5b6f893 100644 --- a/assets/icons/outline/shield-user.svg +++ b/assets/icons/outline/shield-user.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shield-warning.svg b/assets/icons/outline/shield-warning.svg index 81739d3d..0414449d 100644 --- a/assets/icons/outline/shield-warning.svg +++ b/assets/icons/outline/shield-warning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/shop-minimalistic.svg b/assets/icons/outline/shop-minimalistic.svg index b29f309c..73d7ed59 100644 --- a/assets/icons/outline/shop-minimalistic.svg +++ b/assets/icons/outline/shop-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sidebar-code.svg b/assets/icons/outline/sidebar-code.svg index e18317d5..665611ee 100644 --- a/assets/icons/outline/sidebar-code.svg +++ b/assets/icons/outline/sidebar-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sidebar.svg b/assets/icons/outline/sidebar.svg new file mode 100644 index 00000000..ba522a23 --- /dev/null +++ b/assets/icons/outline/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/siderbar.svg b/assets/icons/outline/siderbar.svg deleted file mode 100644 index caae56a9..00000000 --- a/assets/icons/outline/siderbar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/signpost-2.svg b/assets/icons/outline/signpost-2.svg index 285f2def..eafdc9d6 100644 --- a/assets/icons/outline/signpost-2.svg +++ b/assets/icons/outline/signpost-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/siren-rounded.svg b/assets/icons/outline/siren-rounded.svg index 86a3b3c0..4a9da4ff 100644 --- a/assets/icons/outline/siren-rounded.svg +++ b/assets/icons/outline/siren-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/siren.svg b/assets/icons/outline/siren.svg index 6f4bca2b..3f025c1b 100644 --- a/assets/icons/outline/siren.svg +++ b/assets/icons/outline/siren.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/skateboarding-round.svg b/assets/icons/outline/skateboarding-round.svg index 5dc8218f..8f7fd4f8 100644 --- a/assets/icons/outline/skateboarding-round.svg +++ b/assets/icons/outline/skateboarding-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/skateboarding.svg b/assets/icons/outline/skateboarding.svg index e5cdb9da..46ece8c4 100644 --- a/assets/icons/outline/skateboarding.svg +++ b/assets/icons/outline/skateboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/skip-next.svg b/assets/icons/outline/skip-next.svg index c866b2a8..f9aeb453 100644 --- a/assets/icons/outline/skip-next.svg +++ b/assets/icons/outline/skip-next.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/slash-circle.svg b/assets/icons/outline/slash-circle.svg index 20b56ed0..593394b0 100644 --- a/assets/icons/outline/slash-circle.svg +++ b/assets/icons/outline/slash-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/slash-square.svg b/assets/icons/outline/slash-square.svg index 5d33d753..b3b9a860 100644 --- a/assets/icons/outline/slash-square.svg +++ b/assets/icons/outline/slash-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sleeping-circle.svg b/assets/icons/outline/sleeping-circle.svg index 820780f2..dafb8600 100644 --- a/assets/icons/outline/sleeping-circle.svg +++ b/assets/icons/outline/sleeping-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sleeping-square.svg b/assets/icons/outline/sleeping-square.svg index a56f59f2..2bf1e9fa 100644 --- a/assets/icons/outline/sleeping-square.svg +++ b/assets/icons/outline/sleeping-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/slider-minimalistic-horizontal.svg b/assets/icons/outline/slider-minimalistic-horizontal.svg index 6cab1e38..4a3bd014 100644 --- a/assets/icons/outline/slider-minimalistic-horizontal.svg +++ b/assets/icons/outline/slider-minimalistic-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/slider-vertical-minimalistic.svg b/assets/icons/outline/slider-vertical-minimalistic.svg index 56eaa92d..a7fda7c3 100644 --- a/assets/icons/outline/slider-vertical-minimalistic.svg +++ b/assets/icons/outline/slider-vertical-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smart-home-angle.svg b/assets/icons/outline/smart-home-angle.svg index f44483b2..9a3a3ada 100644 --- a/assets/icons/outline/smart-home-angle.svg +++ b/assets/icons/outline/smart-home-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smart-home.svg b/assets/icons/outline/smart-home.svg index cdf2dc3f..a372ae6d 100644 --- a/assets/icons/outline/smart-home.svg +++ b/assets/icons/outline/smart-home.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smartphone-rotate-angle.svg b/assets/icons/outline/smartphone-rotate-angle.svg index 77a53098..94ace15a 100644 --- a/assets/icons/outline/smartphone-rotate-angle.svg +++ b/assets/icons/outline/smartphone-rotate-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smartphone-update.svg b/assets/icons/outline/smartphone-update.svg index 9b45a683..55de01da 100644 --- a/assets/icons/outline/smartphone-update.svg +++ b/assets/icons/outline/smartphone-update.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smile-circle.svg b/assets/icons/outline/smile-circle.svg index 3c356474..9c385705 100644 --- a/assets/icons/outline/smile-circle.svg +++ b/assets/icons/outline/smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/smile-square.svg b/assets/icons/outline/smile-square.svg index fb14dc6a..9e29e924 100644 --- a/assets/icons/outline/smile-square.svg +++ b/assets/icons/outline/smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/socket.svg b/assets/icons/outline/socket.svg index 2e7233e5..4969544b 100644 --- a/assets/icons/outline/socket.svg +++ b/assets/icons/outline/socket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sort-by-alphabet.svg b/assets/icons/outline/sort-alphabetically.svg similarity index 100% rename from assets/icons/outline/sort-by-alphabet.svg rename to assets/icons/outline/sort-alphabetically.svg diff --git a/assets/icons/outline/sort.svg b/assets/icons/outline/sort.svg index 8a943a5b..3d9eb394 100644 --- a/assets/icons/outline/sort.svg +++ b/assets/icons/outline/sort.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/special-effects.svg b/assets/icons/outline/special-effects.svg index 5c07e1bc..33f1072d 100644 --- a/assets/icons/outline/special-effects.svg +++ b/assets/icons/outline/special-effects.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/spedometer-low.svg b/assets/icons/outline/speedometer-low.svg similarity index 100% rename from assets/icons/outline/spedometer-low.svg rename to assets/icons/outline/speedometer-low.svg diff --git a/assets/icons/outline/spedometer-max.svg b/assets/icons/outline/speedometer-max.svg similarity index 100% rename from assets/icons/outline/spedometer-max.svg rename to assets/icons/outline/speedometer-max.svg diff --git a/assets/icons/outline/spedometer-middle.svg b/assets/icons/outline/speedometer-middle.svg similarity index 100% rename from assets/icons/outline/spedometer-middle.svg rename to assets/icons/outline/speedometer-middle.svg diff --git a/assets/icons/outline/square-academic-cap-2.svg b/assets/icons/outline/square-academic-cap-2.svg index e745b078..eac1f059 100644 --- a/assets/icons/outline/square-academic-cap-2.svg +++ b/assets/icons/outline/square-academic-cap-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/square-bottom-down.svg b/assets/icons/outline/square-bottom-down.svg index 1cedfd49..aff0e143 100644 --- a/assets/icons/outline/square-bottom-down.svg +++ b/assets/icons/outline/square-bottom-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/square-bottom-up.svg b/assets/icons/outline/square-bottom-up.svg index 83542da3..ce7049de 100644 --- a/assets/icons/outline/square-bottom-up.svg +++ b/assets/icons/outline/square-bottom-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/square-forward.svg b/assets/icons/outline/square-forward.svg index 8e43c892..847efd6a 100644 --- a/assets/icons/outline/square-forward.svg +++ b/assets/icons/outline/square-forward.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/square-top-down.svg b/assets/icons/outline/square-top-down.svg index 60376ae1..39eaffde 100644 --- a/assets/icons/outline/square-top-down.svg +++ b/assets/icons/outline/square-top-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/square-top-up.svg b/assets/icons/outline/square-top-up.svg index fe998f2c..2c826071 100644 --- a/assets/icons/outline/square-top-up.svg +++ b/assets/icons/outline/square-top-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/star-2.svg b/assets/icons/outline/star-2.svg new file mode 100644 index 00000000..3da095b6 --- /dev/null +++ b/assets/icons/outline/star-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/star-angle.svg b/assets/icons/outline/star-angle.svg index 4a55dbfa..eb2127f6 100644 --- a/assets/icons/outline/star-angle.svg +++ b/assets/icons/outline/star-angle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/star-fall.svg b/assets/icons/outline/star-fall.svg index 6b7f228e..15c6db64 100644 --- a/assets/icons/outline/star-fall.svg +++ b/assets/icons/outline/star-fall.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/star-ring.svg b/assets/icons/outline/star-ring.svg index f510922e..f77871c0 100644 --- a/assets/icons/outline/star-ring.svg +++ b/assets/icons/outline/star-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/star-rings.svg b/assets/icons/outline/star-rings.svg index 7a18fa5d..876010cf 100644 --- a/assets/icons/outline/star-rings.svg +++ b/assets/icons/outline/star-rings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/stars-2.svg b/assets/icons/outline/stars-2.svg new file mode 100644 index 00000000..06cf61c0 --- /dev/null +++ b/assets/icons/outline/stars-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/stars-minimalistic.svg b/assets/icons/outline/stars-minimalistic.svg index 5080d2ba..a76d2970 100644 --- a/assets/icons/outline/stars-minimalistic.svg +++ b/assets/icons/outline/stars-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/stars.svg b/assets/icons/outline/stars.svg index 06cf61c0..e0f0ea28 100644 --- a/assets/icons/outline/stars.svg +++ b/assets/icons/outline/stars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/station-minimalistic.svg b/assets/icons/outline/station-minimalistic.svg index 43a38162..203928ec 100644 --- a/assets/icons/outline/station-minimalistic.svg +++ b/assets/icons/outline/station-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/station.svg b/assets/icons/outline/station.svg index 44e48472..40f008d5 100644 --- a/assets/icons/outline/station.svg +++ b/assets/icons/outline/station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sticker-smile-circle-2.svg b/assets/icons/outline/sticker-smile-circle-2.svg index 12c38b71..3f3358c6 100644 --- a/assets/icons/outline/sticker-smile-circle-2.svg +++ b/assets/icons/outline/sticker-smile-circle-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sticker-smile-circle.svg b/assets/icons/outline/sticker-smile-circle.svg index 50878c37..34bc5869 100644 --- a/assets/icons/outline/sticker-smile-circle.svg +++ b/assets/icons/outline/sticker-smile-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sticker-smile-square.svg b/assets/icons/outline/sticker-smile-square.svg index 99e1f03f..62d3a426 100644 --- a/assets/icons/outline/sticker-smile-square.svg +++ b/assets/icons/outline/sticker-smile-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/stopwatch-pause.svg b/assets/icons/outline/stopwatch-pause.svg index 84a58566..9baeeb3a 100644 --- a/assets/icons/outline/stopwatch-pause.svg +++ b/assets/icons/outline/stopwatch-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/streets-map-point.svg b/assets/icons/outline/streets-map-point.svg index 69a8aad3..4cdf0c31 100644 --- a/assets/icons/outline/streets-map-point.svg +++ b/assets/icons/outline/streets-map-point.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/subtitles.svg b/assets/icons/outline/subtitles.svg index af2befb7..d5378fc4 100644 --- a/assets/icons/outline/subtitles.svg +++ b/assets/icons/outline/subtitles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/suitcase.svg b/assets/icons/outline/suitcase.svg index e3c06554..c7b41ba6 100644 --- a/assets/icons/outline/suitcase.svg +++ b/assets/icons/outline/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/sun-fog.svg b/assets/icons/outline/sun-fog.svg index c206d44c..5d9e396a 100644 --- a/assets/icons/outline/sun-fog.svg +++ b/assets/icons/outline/sun-fog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/target.svg b/assets/icons/outline/target.svg index eb2a1e3c..44ceb8b4 100644 --- a/assets/icons/outline/target.svg +++ b/assets/icons/outline/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/test-tube.svg b/assets/icons/outline/test-tube.svg index 1e66950d..25ab669b 100644 --- a/assets/icons/outline/test-tube.svg +++ b/assets/icons/outline/test-tube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-circle.svg b/assets/icons/outline/text-circle.svg index fb5e2449..c5b6a7b5 100644 --- a/assets/icons/outline/text-circle.svg +++ b/assets/icons/outline/text-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-cross-circle.svg b/assets/icons/outline/text-cross-circle.svg index 21849864..cecfe084 100644 --- a/assets/icons/outline/text-cross-circle.svg +++ b/assets/icons/outline/text-cross-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-cross-square.svg b/assets/icons/outline/text-cross-square.svg index 59ed07f2..2e221456 100644 --- a/assets/icons/outline/text-cross-square.svg +++ b/assets/icons/outline/text-cross-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-cross.svg b/assets/icons/outline/text-cross.svg index dc6df138..e9955e0b 100644 --- a/assets/icons/outline/text-cross.svg +++ b/assets/icons/outline/text-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-field-focus.svg b/assets/icons/outline/text-field-focus.svg index becd1847..6ceebe19 100644 --- a/assets/icons/outline/text-field-focus.svg +++ b/assets/icons/outline/text-field-focus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-field.svg b/assets/icons/outline/text-field.svg index 94f06306..3118c5aa 100644 --- a/assets/icons/outline/text-field.svg +++ b/assets/icons/outline/text-field.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text.svg b/assets/icons/outline/text-format.svg similarity index 100% rename from assets/icons/outline/text.svg rename to assets/icons/outline/text-format.svg diff --git a/assets/icons/outline/text-italic-circle.svg b/assets/icons/outline/text-italic-circle.svg index 7063c58a..650d5f0a 100644 --- a/assets/icons/outline/text-italic-circle.svg +++ b/assets/icons/outline/text-italic-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-italic-square.svg b/assets/icons/outline/text-italic-square.svg index 8a1e5874..85a0e35a 100644 --- a/assets/icons/outline/text-italic-square.svg +++ b/assets/icons/outline/text-italic-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-selection.svg b/assets/icons/outline/text-selection.svg index 2d3a344d..25003086 100644 --- a/assets/icons/outline/text-selection.svg +++ b/assets/icons/outline/text-selection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-square-2.svg b/assets/icons/outline/text-square-2.svg index ac6b1536..9e643c9f 100644 --- a/assets/icons/outline/text-square-2.svg +++ b/assets/icons/outline/text-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-square.svg b/assets/icons/outline/text-square.svg index bbe6304c..87ec4262 100644 --- a/assets/icons/outline/text-square.svg +++ b/assets/icons/outline/text-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-underline-circle.svg b/assets/icons/outline/text-underline-circle.svg index 8cac6f02..5ec62ac0 100644 --- a/assets/icons/outline/text-underline-circle.svg +++ b/assets/icons/outline/text-underline-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-underline-cross.svg b/assets/icons/outline/text-underline-cross.svg index 08830030..f770349b 100644 --- a/assets/icons/outline/text-underline-cross.svg +++ b/assets/icons/outline/text-underline-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/text-underline.svg b/assets/icons/outline/text-underline.svg index b5223f9b..0aec2d5e 100644 --- a/assets/icons/outline/text-underline.svg +++ b/assets/icons/outline/text-underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/thermometer.svg b/assets/icons/outline/thermometer.svg index 3d3d55cb..ce5f2c74 100644 --- a/assets/icons/outline/thermometer.svg +++ b/assets/icons/outline/thermometer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ticker-star.svg b/assets/icons/outline/ticker-star.svg index 6f960929..634e1bc3 100644 --- a/assets/icons/outline/ticker-star.svg +++ b/assets/icons/outline/ticker-star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ticket-sale.svg b/assets/icons/outline/ticket-sale.svg index f7e013ec..4dd368e0 100644 --- a/assets/icons/outline/ticket-sale.svg +++ b/assets/icons/outline/ticket-sale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ticket.svg b/assets/icons/outline/ticket.svg index b2fef285..266b1752 100644 --- a/assets/icons/outline/ticket.svg +++ b/assets/icons/outline/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tornado-small.svg b/assets/icons/outline/tornado-small.svg index 2c568318..8a46b7df 100644 --- a/assets/icons/outline/tornado-small.svg +++ b/assets/icons/outline/tornado-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tornado.svg b/assets/icons/outline/tornado.svg index 91b4039c..17f26061 100644 --- a/assets/icons/outline/tornado.svg +++ b/assets/icons/outline/tornado.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/traffic-economy.svg b/assets/icons/outline/traffic-economy.svg index 0196de5d..7d5e6e7b 100644 --- a/assets/icons/outline/traffic-economy.svg +++ b/assets/icons/outline/traffic-economy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/traffic.svg b/assets/icons/outline/traffic.svg index 923816d2..829a01c3 100644 --- a/assets/icons/outline/traffic.svg +++ b/assets/icons/outline/traffic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/transfer-horizontal.svg b/assets/icons/outline/transfer-horizontal.svg index 817c8198..1c7ea016 100644 --- a/assets/icons/outline/transfer-horizontal.svg +++ b/assets/icons/outline/transfer-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/translation-2.svg b/assets/icons/outline/translation-2.svg index 63d4ca14..9918add2 100644 --- a/assets/icons/outline/translation-2.svg +++ b/assets/icons/outline/translation-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/translation.svg b/assets/icons/outline/translation.svg index 7ab6621a..c1e1b97f 100644 --- a/assets/icons/outline/translation.svg +++ b/assets/icons/outline/translation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/trash-bin-2.svg b/assets/icons/outline/trash-bin-2.svg index 1508abdb..ef8bdce9 100644 --- a/assets/icons/outline/trash-bin-2.svg +++ b/assets/icons/outline/trash-bin-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/trash-bin-minimalistic-2.svg b/assets/icons/outline/trash-bin-minimalistic-2.svg index 142857ff..ad0c0dc4 100644 --- a/assets/icons/outline/trash-bin-minimalistic-2.svg +++ b/assets/icons/outline/trash-bin-minimalistic-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/trash-bin-minimalistic.svg b/assets/icons/outline/trash-bin-minimalistic.svg index b12fe11f..1dd39db1 100644 --- a/assets/icons/outline/trash-bin-minimalistic.svg +++ b/assets/icons/outline/trash-bin-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/trash-bin-trash.svg b/assets/icons/outline/trash-bin-trash.svg index 61db4c07..d1326f0f 100644 --- a/assets/icons/outline/trash-bin-trash.svg +++ b/assets/icons/outline/trash-bin-trash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning-2.svg b/assets/icons/outline/tuning-2.svg index 85d14ac1..428d9f59 100644 --- a/assets/icons/outline/tuning-2.svg +++ b/assets/icons/outline/tuning-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning-3.svg b/assets/icons/outline/tuning-3.svg index bede2eef..e63b0dcb 100644 --- a/assets/icons/outline/tuning-3.svg +++ b/assets/icons/outline/tuning-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning-4.svg b/assets/icons/outline/tuning-4.svg index 71783bf9..a6fd4b42 100644 --- a/assets/icons/outline/tuning-4.svg +++ b/assets/icons/outline/tuning-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning-square-2.svg b/assets/icons/outline/tuning-square-2.svg index 07601d16..9902fa2f 100644 --- a/assets/icons/outline/tuning-square-2.svg +++ b/assets/icons/outline/tuning-square-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning-square.svg b/assets/icons/outline/tuning-square.svg index 57ec12bb..4a1eadc3 100644 --- a/assets/icons/outline/tuning-square.svg +++ b/assets/icons/outline/tuning-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tuning.svg b/assets/icons/outline/tuning.svg index a7b1dce1..90a26c9d 100644 --- a/assets/icons/outline/tuning.svg +++ b/assets/icons/outline/tuning.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/tv.svg b/assets/icons/outline/tv.svg index 61614535..a64e1bbc 100644 --- a/assets/icons/outline/tv.svg +++ b/assets/icons/outline/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ufo-2.svg b/assets/icons/outline/ufo-2.svg index 586af692..1ebb14c0 100644 --- a/assets/icons/outline/ufo-2.svg +++ b/assets/icons/outline/ufo-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ufo-3.svg b/assets/icons/outline/ufo-3.svg index c8fc4ca7..2719784f 100644 --- a/assets/icons/outline/ufo-3.svg +++ b/assets/icons/outline/ufo-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/ufo.svg b/assets/icons/outline/ufo.svg index 0b341f86..2c8ac836 100644 --- a/assets/icons/outline/ufo.svg +++ b/assets/icons/outline/ufo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/undo-left-round-square.svg b/assets/icons/outline/undo-left-round-square.svg index ceafb958..f10d894f 100644 --- a/assets/icons/outline/undo-left-round-square.svg +++ b/assets/icons/outline/undo-left-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/undo-left-square.svg b/assets/icons/outline/undo-left-square.svg index acb97e03..50b7eec5 100644 --- a/assets/icons/outline/undo-left-square.svg +++ b/assets/icons/outline/undo-left-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/undo-right-round-square.svg b/assets/icons/outline/undo-right-round-square.svg index dd0aa955..bafb9ace 100644 --- a/assets/icons/outline/undo-right-round-square.svg +++ b/assets/icons/outline/undo-right-round-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/undo-right-square.svg b/assets/icons/outline/undo-right-square.svg index 445634ed..d99511c5 100644 --- a/assets/icons/outline/undo-right-square.svg +++ b/assets/icons/outline/undo-right-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/unlink-minimalistic.svg b/assets/icons/outline/unlink-minimalistic.svg new file mode 100644 index 00000000..a19271ee --- /dev/null +++ b/assets/icons/outline/unlink-minimalistic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/unlink.svg b/assets/icons/outline/unlink.svg new file mode 100644 index 00000000..f8fa31ea --- /dev/null +++ b/assets/icons/outline/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/upload-minimalistic.svg b/assets/icons/outline/upload-minimalistic.svg index ba0e6957..755d7e72 100644 --- a/assets/icons/outline/upload-minimalistic.svg +++ b/assets/icons/outline/upload-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/upload-square.svg b/assets/icons/outline/upload-square.svg index 053205c1..36e1e52a 100644 --- a/assets/icons/outline/upload-square.svg +++ b/assets/icons/outline/upload-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/upload-twice-square.svg b/assets/icons/outline/upload-twice-square.svg index 5255dfa7..dde7d3bf 100644 --- a/assets/icons/outline/upload-twice-square.svg +++ b/assets/icons/outline/upload-twice-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-block-rounded.svg b/assets/icons/outline/user-block-rounded.svg index c98ab8d3..c90cbf92 100644 --- a/assets/icons/outline/user-block-rounded.svg +++ b/assets/icons/outline/user-block-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-block.svg b/assets/icons/outline/user-block.svg index 2da8d4cc..89a6790a 100644 --- a/assets/icons/outline/user-block.svg +++ b/assets/icons/outline/user-block.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-check-rounded.svg b/assets/icons/outline/user-check-rounded.svg index 0171d8de..a24271fe 100644 --- a/assets/icons/outline/user-check-rounded.svg +++ b/assets/icons/outline/user-check-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-check.svg b/assets/icons/outline/user-check.svg index 7a06709d..7256c9c1 100644 --- a/assets/icons/outline/user-check.svg +++ b/assets/icons/outline/user-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-cross-rounded.svg b/assets/icons/outline/user-cross-rounded.svg index 6ea00c3c..004b4838 100644 --- a/assets/icons/outline/user-cross-rounded.svg +++ b/assets/icons/outline/user-cross-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-cross.svg b/assets/icons/outline/user-cross.svg index aa98b791..0d669f79 100644 --- a/assets/icons/outline/user-cross.svg +++ b/assets/icons/outline/user-cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-hands.svg b/assets/icons/outline/user-hands.svg index 36849f90..d832a7d9 100644 --- a/assets/icons/outline/user-hands.svg +++ b/assets/icons/outline/user-hands.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-heart-rounded.svg b/assets/icons/outline/user-heart-rounded.svg index a6b83c99..0c511ff7 100644 --- a/assets/icons/outline/user-heart-rounded.svg +++ b/assets/icons/outline/user-heart-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-heart.svg b/assets/icons/outline/user-heart.svg index 695589c5..a1f1780f 100644 --- a/assets/icons/outline/user-heart.svg +++ b/assets/icons/outline/user-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-id.svg b/assets/icons/outline/user-id.svg index 6390778a..36199603 100644 --- a/assets/icons/outline/user-id.svg +++ b/assets/icons/outline/user-id.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-minus-rounded.svg b/assets/icons/outline/user-minus-rounded.svg index c6e378b5..8b0a2f50 100644 --- a/assets/icons/outline/user-minus-rounded.svg +++ b/assets/icons/outline/user-minus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-minus.svg b/assets/icons/outline/user-minus.svg index 5f98e07d..69e3f0d6 100644 --- a/assets/icons/outline/user-minus.svg +++ b/assets/icons/outline/user-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-plus-rounded.svg b/assets/icons/outline/user-plus-rounded.svg index 54b6a14d..553d935c 100644 --- a/assets/icons/outline/user-plus-rounded.svg +++ b/assets/icons/outline/user-plus-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-plus.svg b/assets/icons/outline/user-plus.svg index b06f24cf..6d87159f 100644 --- a/assets/icons/outline/user-plus.svg +++ b/assets/icons/outline/user-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-rounded.svg b/assets/icons/outline/user-rounded.svg index 9fbf2af2..816b6149 100644 --- a/assets/icons/outline/user-rounded.svg +++ b/assets/icons/outline/user-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-speak-rounded.svg b/assets/icons/outline/user-speak-rounded.svg index 4fbc65b5..e1d8dc25 100644 --- a/assets/icons/outline/user-speak-rounded.svg +++ b/assets/icons/outline/user-speak-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user-speak.svg b/assets/icons/outline/user-speak.svg index 94142598..02d3b6ae 100644 --- a/assets/icons/outline/user-speak.svg +++ b/assets/icons/outline/user-speak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/user.svg b/assets/icons/outline/user.svg index e30938e8..242fb050 100644 --- a/assets/icons/outline/user.svg +++ b/assets/icons/outline/user.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/users-group-rounded.svg b/assets/icons/outline/users-group-rounded.svg index 8bbe5331..f27a806c 100644 --- a/assets/icons/outline/users-group-rounded.svg +++ b/assets/icons/outline/users-group-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/users-group-two-rounded.svg b/assets/icons/outline/users-group-two-rounded.svg index dee1e668..357d12bb 100644 --- a/assets/icons/outline/users-group-two-rounded.svg +++ b/assets/icons/outline/users-group-two-rounded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/vanity.svg b/assets/icons/outline/vanity.svg new file mode 100644 index 00000000..dd519a03 --- /dev/null +++ b/assets/icons/outline/vanity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/video-frame-cut.svg b/assets/icons/outline/video-frame-cut.svg index ae11799d..b88722a8 100644 --- a/assets/icons/outline/video-frame-cut.svg +++ b/assets/icons/outline/video-frame-cut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/virus.svg b/assets/icons/outline/virus.svg index 7e95b1a8..ac06b215 100644 --- a/assets/icons/outline/virus.svg +++ b/assets/icons/outline/virus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/volume-knob.svg b/assets/icons/outline/volume-knob.svg index 07a3d2c4..7c068a75 100644 --- a/assets/icons/outline/volume-knob.svg +++ b/assets/icons/outline/volume-knob.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/volume-small.svg b/assets/icons/outline/volume-small.svg index d3974fc0..70c0cad1 100644 --- a/assets/icons/outline/volume-small.svg +++ b/assets/icons/outline/volume-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wallet-2.svg b/assets/icons/outline/wallet-2.svg index a1ae7d52..aec0f63c 100644 --- a/assets/icons/outline/wallet-2.svg +++ b/assets/icons/outline/wallet-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wallet-money.svg b/assets/icons/outline/wallet-money.svg index 577a8abe..84763fcf 100644 --- a/assets/icons/outline/wallet-money.svg +++ b/assets/icons/outline/wallet-money.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wallet.svg b/assets/icons/outline/wallet.svg index 338f9f3e..91235fb2 100644 --- a/assets/icons/outline/wallet.svg +++ b/assets/icons/outline/wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/washing-machine.svg b/assets/icons/outline/washing-machine.svg index 02f6f31b..f6b0607e 100644 --- a/assets/icons/outline/washing-machine.svg +++ b/assets/icons/outline/washing-machine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/waterdrop.svg b/assets/icons/outline/waterdrop.svg index 444e60b1..e54f3c12 100644 --- a/assets/icons/outline/waterdrop.svg +++ b/assets/icons/outline/waterdrop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/weigher.svg b/assets/icons/outline/weigher.svg deleted file mode 100644 index d4493546..00000000 --- a/assets/icons/outline/weigher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/outline/wi-fi-router-minimalistic.svg b/assets/icons/outline/wi-fi-router-minimalistic.svg index 32310263..50579867 100644 --- a/assets/icons/outline/wi-fi-router-minimalistic.svg +++ b/assets/icons/outline/wi-fi-router-minimalistic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wi-fi-router-round.svg b/assets/icons/outline/wi-fi-router-round.svg index 1e87cc96..cdf4f25c 100644 --- a/assets/icons/outline/wi-fi-router-round.svg +++ b/assets/icons/outline/wi-fi-router-round.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/wi-fi-router.svg b/assets/icons/outline/wi-fi-router.svg index 1a36d926..963fe7a4 100644 --- a/assets/icons/outline/wi-fi-router.svg +++ b/assets/icons/outline/wi-fi-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-2.svg b/assets/icons/outline/widget-2.svg index a01540a2..941ed602 100644 --- a/assets/icons/outline/widget-2.svg +++ b/assets/icons/outline/widget-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-3.svg b/assets/icons/outline/widget-3.svg index e4f8dcab..1f95c0dd 100644 --- a/assets/icons/outline/widget-3.svg +++ b/assets/icons/outline/widget-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-4.svg b/assets/icons/outline/widget-4.svg index da3bb47d..87f8ff65 100644 --- a/assets/icons/outline/widget-4.svg +++ b/assets/icons/outline/widget-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-5.svg b/assets/icons/outline/widget-5.svg index 7b2e9c26..1b6cd4a7 100644 --- a/assets/icons/outline/widget-5.svg +++ b/assets/icons/outline/widget-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-6.svg b/assets/icons/outline/widget-6.svg index 9da1a555..da8b31cd 100644 --- a/assets/icons/outline/widget-6.svg +++ b/assets/icons/outline/widget-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget-add.svg b/assets/icons/outline/widget-add.svg index 2766d2ee..b959bb70 100644 --- a/assets/icons/outline/widget-add.svg +++ b/assets/icons/outline/widget-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/widget.svg b/assets/icons/outline/widget.svg index 188f177b..36424cd5 100644 --- a/assets/icons/outline/widget.svg +++ b/assets/icons/outline/widget.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/win-rar.svg b/assets/icons/outline/win-rar.svg new file mode 100644 index 00000000..ab0cb4a5 --- /dev/null +++ b/assets/icons/outline/win-rar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/outline/window-frame.svg b/assets/icons/outline/window-frame.svg index 44d16728..85b4e3c4 100644 --- a/assets/icons/outline/window-frame.svg +++ b/assets/icons/outline/window-frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/outline/winrar.svg b/assets/icons/outline/winrar.svg deleted file mode 100644 index 455f03af..00000000 --- a/assets/icons/outline/winrar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/example/lib/main.dart b/example/lib/main.dart index 627492fa..f37ae0fa 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -294,10 +294,10 @@ class _ControlsPanel extends StatelessWidget { decoration: InputDecoration( filled: true, fillColor: scheme.surfaceContainerHighest, - hintText: 'Search 1,231 icons...', + hintText: 'Search 1,247 icons...', prefixIcon: const Padding( padding: EdgeInsets.symmetric(horizontal: 14), - child: SolarIcon(SolarIcons.magnifer, size: 18), + child: SolarIcon(SolarIcons.magnifier, size: 18), ), prefixIconConstraints: const BoxConstraints(minWidth: 48, minHeight: 48), @@ -573,7 +573,7 @@ class _EmptyState extends StatelessWidget { mainAxisSize: MainAxisSize.min, children: [ SolarIcon( - SolarIcons.magniferBug, + SolarIcons.magnifierBug, style: SolarIconStyle.boldDuotone, size: 48, color: scheme.onSurfaceVariant, diff --git a/lib/solar_iconkit.dart b/lib/solar_iconkit.dart index 8966605c..7952dd47 100644 --- a/lib/solar_iconkit.dart +++ b/lib/solar_iconkit.dart @@ -1,6 +1,6 @@ /// Solar icon kit for Flutter. /// -/// 1,231 icons across 6 native styles: linear, outline, broken, bold, +/// 1,247 icons across 6 native styles: linear, outline, broken, bold, /// line-duotone, bold-duotone. Sourced from the Solar icon set (MIT licensed). /// /// ## Quick start diff --git a/lib/src/solar_icon.dart b/lib/src/solar_icon.dart index 71b7ab06..3f15cee9 100644 --- a/lib/src/solar_icon.dart +++ b/lib/src/solar_icon.dart @@ -158,8 +158,19 @@ class SolarIcon extends StatelessWidget { /// /// Useful for advanced cases where you need the raw path — for example when /// preloading with [precachePicture] or embedding the SVG in a custom widget. + /// + /// Retired names are resolved through [SolarIcons.legacyAliases] first, so + /// `assetPath('magnifer', ...)` returns the path to `magnifier.svg`. static String assetPath(String name, SolarIconStyle style) => - 'assets/icons/${style.folderName}/$name.svg'; + 'assets/icons/${style.folderName}/${resolveName(name)}.svg'; + + /// Maps a possibly-retired icon name to the name actually shipped as an + /// asset. Returns [name] unchanged when it is already current. + /// + /// Solar renames icons upstream from time to time. This package keeps the + /// old names working — see [SolarIcons.legacyAliases] for the full table. + static String resolveName(String name) => + SolarIcons.legacyAliases[name] ?? name; /// The package name used when loading assets. Consumers rarely need this; /// exposed for advanced integrations. @@ -279,6 +290,7 @@ class SolarIcon extends StatelessWidget { /// consumers a stack trace that points to the offending call site. bool _debugAssertKnownIcon(String name) { if (_iconNameLookup.contains(name)) return true; + if (SolarIcons.legacyAliases.containsKey(name)) return true; throw FlutterError.fromParts([ ErrorSummary('SolarIcon received an unknown icon name: "$name".'), ErrorDescription( diff --git a/lib/src/solar_iconkit_data.g.dart b/lib/src/solar_iconkit_data.g.dart index f9c21212..2d7d01a0 100644 --- a/lib/src/solar_iconkit_data.g.dart +++ b/lib/src/solar_iconkit_data.g.dart @@ -1,5 +1,5 @@ // GENERATED FILE. Do not edit by hand. -// Run `python tools/fetch_icons.py` to regenerate. +// Run `python tool/fetch_icons.py` to regenerate. // ignore_for_file: constant_identifier_names @@ -12,15 +12,9 @@ class SolarIcons { const SolarIcons._(); - /// Solar icon `4k`. - static const String i4k = '4k'; - /// Solar icon `accessibility`. static const String accessibility = 'accessibility'; - /// Solar icon `accumulator`. - static const String accumulator = 'accumulator'; - /// Solar icon `add-circle`. static const String addCircle = 'add-circle'; @@ -93,12 +87,12 @@ class SolarIcons { /// Solar icon `align-bottom`. static const String alignBottom = 'align-bottom'; - /// Solar icon `align-horizonta-spacing`. - static const String alignHorizontaSpacing = 'align-horizonta-spacing'; - /// Solar icon `align-horizontal-center`. static const String alignHorizontalCenter = 'align-horizontal-center'; + /// Solar icon `align-horizontal-spacing`. + static const String alignHorizontalSpacing = 'align-horizontal-spacing'; + /// Solar icon `align-left`. static const String alignLeft = 'align-left'; @@ -135,8 +129,8 @@ class SolarIcons { /// Solar icon `archive-down`. static const String archiveDown = 'archive-down'; - /// Solar icon `archive-down-minimlistic`. - static const String archiveDownMinimlistic = 'archive-down-minimlistic'; + /// Solar icon `archive-down-minimalistic`. + static const String archiveDownMinimalistic = 'archive-down-minimalistic'; /// Solar icon `archive-minimalistic`. static const String archiveMinimalistic = 'archive-minimalistic'; @@ -144,8 +138,8 @@ class SolarIcons { /// Solar icon `archive-up`. static const String archiveUp = 'archive-up'; - /// Solar icon `archive-up-minimlistic`. - static const String archiveUpMinimlistic = 'archive-up-minimlistic'; + /// Solar icon `archive-up-minimalistic`. + static const String archiveUpMinimalistic = 'archive-up-minimalistic'; /// Solar icon `armchair`. static const String armchair = 'armchair'; @@ -303,12 +297,12 @@ class SolarIcons { /// Solar icon `bell`. static const String bell = 'bell'; - /// Solar icon `bell-bing`. - static const String bellBing = 'bell-bing'; - /// Solar icon `bell-off`. static const String bellOff = 'bell-off'; + /// Solar icon `bell-ring`. + static const String bellRing = 'bell-ring'; + /// Solar icon `benzene-ring`. static const String benzeneRing = 'benzene-ring'; @@ -321,6 +315,9 @@ class SolarIcons { /// Solar icon `bill`. static const String bill = 'bill'; + /// Solar icon `bill-2`. + static const String bill2 = 'bill-2'; + /// Solar icon `bill-check`. static const String billCheck = 'bill-check'; @@ -378,12 +375,12 @@ class SolarIcons { /// Solar icon `bone`. static const String bone = 'bone'; - /// Solar icon `bone-broken`. - static const String boneBroken = 'bone-broken'; - /// Solar icon `bone-crack`. static const String boneCrack = 'bone-crack'; + /// Solar icon `bone-fracture`. + static const String boneFracture = 'bone-fracture'; + /// Solar icon `bones`. static const String bones = 'bones'; @@ -526,14 +523,17 @@ class SolarIcons { /// Solar icon `camera-square`. static const String cameraSquare = 'camera-square'; + /// Solar icon `car-battery`. + static const String carBattery = 'car-battery'; + /// Solar icon `card`. static const String card = 'card'; /// Solar icon `card-2`. static const String card2 = 'card-2'; - /// Solar icon `card-recive`. - static const String cardRecive = 'card-recive'; + /// Solar icon `card-receive`. + static const String cardReceive = 'card-receive'; /// Solar icon `card-search`. static const String cardSearch = 'card-search'; @@ -556,6 +556,9 @@ class SolarIcons { /// Solar icon `cart-3`. static const String cart3 = 'cart-3'; + /// Solar icon `cart-4`. + static const String cart4 = 'cart-4'; + /// Solar icon `cart-5`. static const String cart5 = 'cart-5'; @@ -859,8 +862,8 @@ class SolarIcons { /// Solar icon `code-square`. static const String codeSquare = 'code-square'; - /// Solar icon `colour-tuneing`. - static const String colourTuneing = 'colour-tuneing'; + /// Solar icon `colour-tuning`. + static const String colourTuning = 'colour-tuning'; /// Solar icon `command`. static const String command = 'command'; @@ -874,11 +877,11 @@ class SolarIcons { /// Solar icon `compass-square`. static const String compassSquare = 'compass-square'; - /// Solar icon `condicioner`. - static const String condicioner = 'condicioner'; + /// Solar icon `conditioner`. + static const String conditioner = 'conditioner'; - /// Solar icon `condicioner-2`. - static const String condicioner2 = 'condicioner-2'; + /// Solar icon `conditioner-2`. + static const String conditioner2 = 'conditioner-2'; /// Solar icon `confetti`. static const String confetti = 'confetti'; @@ -1015,6 +1018,9 @@ class SolarIcons { /// Solar icon `document`. static const String document = 'document'; + /// Solar icon `document-2`. + static const String document2 = 'document-2'; + /// Solar icon `document-add`. static const String documentAdd = 'document-add'; @@ -1136,7 +1142,7 @@ class SolarIcons { static const String explicit = 'explicit'; /// Solar icon `export`. - static const String export = 'export'; + static const String exportIcon = 'export'; /// Solar icon `expressionless-circle`. static const String expressionlessCircle = 'expressionless-circle'; @@ -1189,8 +1195,8 @@ class SolarIcons { /// Solar icon `file-download`. static const String fileDownload = 'file-download'; - /// Solar icon `file-favourite`. - static const String fileFavourite = 'file-favourite'; + /// Solar icon `file-favorite`. + static const String fileFavorite = 'file-favorite'; /// Solar icon `file-left`. static const String fileLeft = 'file-left'; @@ -1273,11 +1279,11 @@ class SolarIcons { /// Solar icon `folder-error`. static const String folderError = 'folder-error'; - /// Solar icon `folder-favourite-bookmark`. - static const String folderFavouriteBookmark = 'folder-favourite-bookmark'; + /// Solar icon `folder-favorite-bookmark`. + static const String folderFavoriteBookmark = 'folder-favorite-bookmark'; - /// Solar icon `folder-favourite-star`. - static const String folderFavouriteStar = 'folder-favourite-star'; + /// Solar icon `folder-favorite-star`. + static const String folderFavoriteStar = 'folder-favorite-star'; /// Solar icon `folder-open`. static const String folderOpen = 'folder-open'; @@ -1306,6 +1312,12 @@ class SolarIcons { /// Solar icon `forward-2`. static const String forward2 = 'forward-2'; + /// Solar icon `forward-right`. + static const String forwardRight = 'forward-right'; + + /// Solar icon `four-k`. + static const String fourK = 'four-k'; + /// Solar icon `fridge`. static const String fridge = 'fridge'; @@ -1339,8 +1351,8 @@ class SolarIcons { /// Solar icon `gallery-edit`. static const String galleryEdit = 'gallery-edit'; - /// Solar icon `gallery-favourite`. - static const String galleryFavourite = 'gallery-favourite'; + /// Solar icon `gallery-favorite`. + static const String galleryFavorite = 'gallery-favorite'; /// Solar icon `gallery-minimalistic`. static const String galleryMinimalistic = 'gallery-minimalistic'; @@ -1394,10 +1406,10 @@ class SolarIcons { static const String glasses = 'glasses'; /// Solar icon `global`. - static const String globalIcon = 'global'; + static const String global = 'global'; - /// Solar icon `globus`. - static const String globus = 'globus'; + /// Solar icon `globe`. + static const String globe = 'globe'; /// Solar icon `golf`. static const String golf = 'golf'; @@ -1480,8 +1492,8 @@ class SolarIcons { /// Solar icon `heart-angle`. static const String heartAngle = 'heart-angle'; - /// Solar icon `heart-broken`. - static const String heartBroken = 'heart-broken'; + /// Solar icon `heart-crack`. + static const String heartCrack = 'heart-crack'; /// Solar icon `heart-lock`. static const String heartLock = 'heart-lock'; @@ -1552,11 +1564,11 @@ class SolarIcons { /// Solar icon `home-smile-angle`. static const String homeSmileAngle = 'home-smile-angle'; - /// Solar icon `home-wifi`. - static const String homeWifi = 'home-wifi'; + /// Solar icon `home-wi-fi`. + static const String homeWiFi = 'home-wi-fi'; - /// Solar icon `home-wifi-angle`. - static const String homeWifiAngle = 'home-wifi-angle'; + /// Solar icon `home-wi-fi-angle`. + static const String homeWiFiAngle = 'home-wi-fi-angle'; /// Solar icon `hospital`. static const String hospital = 'hospital'; @@ -1567,6 +1579,12 @@ class SolarIcons { /// Solar icon `hourglass-line`. static const String hourglassLine = 'hourglass-line'; + /// Solar icon `house`. + static const String house = 'house'; + + /// Solar icon `i-phone`. + static const String iPhone = 'i-phone'; + /// Solar icon `import`. static const String importIcon = 'import'; @@ -1597,8 +1615,8 @@ class SolarIcons { /// Solar icon `incoming-call-rounded`. static const String incomingCallRounded = 'incoming-call-rounded'; - /// Solar icon `infinity`. - static const String infinity = 'infinity'; + /// Solar icon `infinite`. + static const String infinite = 'infinite'; /// Solar icon `info-circle`. static const String infoCircle = 'info-circle'; @@ -1606,9 +1624,6 @@ class SolarIcons { /// Solar icon `info-square`. static const String infoSquare = 'info-square'; - /// Solar icon `iphone`. - static const String iphone = 'iphone'; - /// Solar icon `jar-of-pills`. static const String jarOfPills = 'jar-of-pills'; @@ -1702,12 +1717,6 @@ class SolarIcons { /// Solar icon `link`. static const String link = 'link'; - /// Solar icon `link-broken`. - static const String linkBroken = 'link-broken'; - - /// Solar icon `link-broken-minimalistic`. - static const String linkBrokenMinimalistic = 'link-broken-minimalistic'; - /// Solar icon `link-circle`. static const String linkCircle = 'link-circle'; @@ -1772,6 +1781,9 @@ class SolarIcons { /// Solar icon `list-up-minimalistic`. static const String listUpMinimalistic = 'list-up-minimalistic'; + /// Solar icon `list-vertical`. + static const String listVertical = 'list-vertical'; + /// Solar icon `lock`. static const String lock = 'lock'; @@ -1806,17 +1818,23 @@ class SolarIcons { /// Solar icon `login-3`. static const String login3 = 'login-3'; + /// Solar icon `logout`. + static const String logout = 'logout'; + + /// Solar icon `logout-2`. + static const String logout2 = 'logout-2'; + /// Solar icon `logout-3`. static const String logout3 = 'logout-3'; - /// Solar icon `magic-stick`. - static const String magicStick = 'magic-stick'; + /// Solar icon `magic-wand`. + static const String magicWand = 'magic-wand'; - /// Solar icon `magic-stick-2`. - static const String magicStick2 = 'magic-stick-2'; + /// Solar icon `magic-wand-2`. + static const String magicWand2 = 'magic-wand-2'; - /// Solar icon `magic-stick-3`. - static const String magicStick3 = 'magic-stick-3'; + /// Solar icon `magic-wand-3`. + static const String magicWand3 = 'magic-wand-3'; /// Solar icon `magnet`. static const String magnet = 'magnet'; @@ -1824,17 +1842,17 @@ class SolarIcons { /// Solar icon `magnet-wave`. static const String magnetWave = 'magnet-wave'; - /// Solar icon `magnifer`. - static const String magnifer = 'magnifer'; + /// Solar icon `magnifier`. + static const String magnifier = 'magnifier'; - /// Solar icon `magnifer-bug`. - static const String magniferBug = 'magnifer-bug'; + /// Solar icon `magnifier-bug`. + static const String magnifierBug = 'magnifier-bug'; - /// Solar icon `magnifer-zoom-in`. - static const String magniferZoomIn = 'magnifer-zoom-in'; + /// Solar icon `magnifier-zoom-in`. + static const String magnifierZoomIn = 'magnifier-zoom-in'; - /// Solar icon `magnifer-zoom-out`. - static const String magniferZoomOut = 'magnifer-zoom-out'; + /// Solar icon `magnifier-zoom-out`. + static const String magnifierZoomOut = 'magnifier-zoom-out'; /// Solar icon `mailbox`. static const String mailbox = 'mailbox'; @@ -1863,8 +1881,8 @@ class SolarIcons { /// Solar icon `map-point-add`. static const String mapPointAdd = 'map-point-add'; - /// Solar icon `map-point-favourite`. - static const String mapPointFavourite = 'map-point-favourite'; + /// Solar icon `map-point-favorite`. + static const String mapPointFavorite = 'map-point-favorite'; /// Solar icon `map-point-hospital`. static const String mapPointHospital = 'map-point-hospital'; @@ -1884,8 +1902,8 @@ class SolarIcons { /// Solar icon `map-point-wave`. static const String mapPointWave = 'map-point-wave'; - /// Solar icon `mask-happly`. - static const String maskHapply = 'mask-happly'; + /// Solar icon `mask-happy`. + static const String maskHappy = 'mask-happy'; /// Solar icon `mask-sad`. static const String maskSad = 'mask-sad'; @@ -1966,19 +1984,19 @@ class SolarIcons { /// Solar icon `microphone-large`. static const String microphoneLarge = 'microphone-large'; - /// Solar icon `minimalistic-magnifer`. - static const String minimalisticMagnifer = 'minimalistic-magnifer'; + /// Solar icon `minimalistic-magnifier`. + static const String minimalisticMagnifier = 'minimalistic-magnifier'; - /// Solar icon `minimalistic-magnifer-bug`. - static const String minimalisticMagniferBug = 'minimalistic-magnifer-bug'; + /// Solar icon `minimalistic-magnifier-bug`. + static const String minimalisticMagnifierBug = 'minimalistic-magnifier-bug'; - /// Solar icon `minimalistic-magnifer-zoom-in`. - static const String minimalisticMagniferZoomIn = - 'minimalistic-magnifer-zoom-in'; + /// Solar icon `minimalistic-magnifier-zoom-in`. + static const String minimalisticMagnifierZoomIn = + 'minimalistic-magnifier-zoom-in'; - /// Solar icon `minimalistic-magnifer-zoom-out`. - static const String minimalisticMagniferZoomOut = - 'minimalistic-magnifer-zoom-out'; + /// Solar icon `minimalistic-magnifier-zoom-out`. + static const String minimalisticMagnifierZoomOut = + 'minimalistic-magnifier-zoom-out'; /// Solar icon `minimize`. static const String minimize = 'minimize'; @@ -2005,6 +2023,9 @@ class SolarIcons { /// Solar icon `mirror`. static const String mirror = 'mirror'; + /// Solar icon `mirror-2`. + static const String mirror2 = 'mirror-2'; + /// Solar icon `mirror-left`. static const String mirrorLeft = 'mirror-left'; @@ -2014,6 +2035,9 @@ class SolarIcons { /// Solar icon `money-bag`. static const String moneyBag = 'money-bag'; + /// Solar icon `money-roll`. + static const String moneyRoll = 'money-roll'; + /// Solar icon `monitor`. static const String monitor = 'monitor'; @@ -2047,6 +2071,9 @@ class SolarIcons { /// Solar icon `move-to-folder`. static const String moveToFolder = 'move-to-folder'; + /// Solar icon `mug`. + static const String mug = 'mug'; + /// Solar icon `multiple-forward-left`. static const String multipleForwardLeft = 'multiple-forward-left'; @@ -2086,6 +2113,9 @@ class SolarIcons { /// Solar icon `notebook`. static const String notebook = 'notebook'; + /// Solar icon `notebook-2`. + static const String notebook2 = 'notebook-2'; + /// Solar icon `notebook-bookmark`. static const String notebookBookmark = 'notebook-bookmark'; @@ -2134,12 +2164,12 @@ class SolarIcons { /// Solar icon `palette`. static const String palette = 'palette'; + /// Solar icon `palette-2`. + static const String palette2 = 'palette-2'; + /// Solar icon `palette-round`. static const String paletteRound = 'palette-round'; - /// Solar icon `pallete-2`. - static const String pallete2 = 'pallete-2'; - /// Solar icon `panorama`. static const String panorama = 'panorama'; @@ -2254,17 +2284,14 @@ class SolarIcons { /// Solar icon `pipette`. static const String pipette = 'pipette'; - /// Solar icon `plaaylist-minimalistic`. - static const String plaaylistMinimalistic = 'plaaylist-minimalistic'; + /// Solar icon `plane`. + static const String plane = 'plane'; - /// Solar icon `plain`. - static const String plain = 'plain'; + /// Solar icon `plane-2`. + static const String plane2 = 'plane-2'; - /// Solar icon `plain-2`. - static const String plain2 = 'plain-2'; - - /// Solar icon `plain-3`. - static const String plain3 = 'plain-3'; + /// Solar icon `plane-3`. + static const String plane3 = 'plane-3'; /// Solar icon `planet`. static const String planet = 'planet'; @@ -2299,6 +2326,9 @@ class SolarIcons { /// Solar icon `playlist-2`. static const String playlist2 = 'playlist-2'; + /// Solar icon `playlist-minimalistic`. + static const String playlistMinimalistic = 'playlist-minimalistic'; + /// Solar icon `playlist-minimalistic-2`. static const String playlistMinimalistic2 = 'playlist-minimalistic-2'; @@ -2392,15 +2422,18 @@ class SolarIcons { /// Solar icon `ranking`. static const String ranking = 'ranking'; - /// Solar icon `recive-square`. - static const String reciveSquare = 'recive-square'; + /// Solar icon `receive-square`. + static const String receiveSquare = 'receive-square'; - /// Solar icon `recive-twice-square`. - static const String reciveTwiceSquare = 'recive-twice-square'; + /// Solar icon `receive-twice-square`. + static const String receiveTwiceSquare = 'receive-twice-square'; /// Solar icon `record`. static const String record = 'record'; + /// Solar icon `record-audio-circle`. + static const String recordAudioCircle = 'record-audio-circle'; + /// Solar icon `record-circle`. static const String recordCircle = 'record-circle'; @@ -2441,6 +2474,9 @@ class SolarIcons { /// Solar icon `reorder`. static const String reorder = 'reorder'; + /// Solar icon `reorder-2`. + static const String reorder2 = 'reorder-2'; + /// Solar icon `repeat`. static const String repeat = 'repeat'; @@ -2573,17 +2609,17 @@ class SolarIcons { /// Solar icon `round-transfer-vertical`. static const String roundTransferVertical = 'round-transfer-vertical'; - /// Solar icon `rounded-magnifer`. - static const String roundedMagnifer = 'rounded-magnifer'; + /// Solar icon `rounded-magnifier`. + static const String roundedMagnifier = 'rounded-magnifier'; - /// Solar icon `rounded-magnifer-bug`. - static const String roundedMagniferBug = 'rounded-magnifer-bug'; + /// Solar icon `rounded-magnifier-bug`. + static const String roundedMagnifierBug = 'rounded-magnifier-bug'; - /// Solar icon `rounded-magnifer-zoom-in`. - static const String roundedMagniferZoomIn = 'rounded-magnifer-zoom-in'; + /// Solar icon `rounded-magnifier-zoom-in`. + static const String roundedMagnifierZoomIn = 'rounded-magnifier-zoom-in'; - /// Solar icon `rounded-magnifer-zoom-out`. - static const String roundedMagniferZoomOut = 'rounded-magnifer-zoom-out'; + /// Solar icon `rounded-magnifier-zoom-out`. + static const String roundedMagnifierZoomOut = 'rounded-magnifier-zoom-out'; /// Solar icon `route`. static const String route = 'route'; @@ -2651,6 +2687,9 @@ class SolarIcons { /// Solar icon `scale`. static const String scale = 'scale'; + /// Solar icon `scaling`. + static const String scaling = 'scaling'; + /// Solar icon `scanner`. static const String scanner = 'scanner'; @@ -2771,15 +2810,15 @@ class SolarIcons { /// Solar icon `shuffle`. static const String shuffle = 'shuffle'; + /// Solar icon `sidebar`. + static const String sidebar = 'sidebar'; + /// Solar icon `sidebar-code`. static const String sidebarCode = 'sidebar-code'; /// Solar icon `sidebar-minimalistic`. static const String sidebarMinimalistic = 'sidebar-minimalistic'; - /// Solar icon `siderbar`. - static const String siderbar = 'siderbar'; - /// Solar icon `signpost`. static const String signpost = 'signpost'; @@ -2918,8 +2957,8 @@ class SolarIcons { /// Solar icon `sort`. static const String sort = 'sort'; - /// Solar icon `sort-by-alphabet`. - static const String sortByAlphabet = 'sort-by-alphabet'; + /// Solar icon `sort-alphabetically`. + static const String sortAlphabetically = 'sort-alphabetically'; /// Solar icon `sort-by-time`. static const String sortByTime = 'sort-by-time'; @@ -2954,14 +2993,14 @@ class SolarIcons { /// Solar icon `special-effects`. static const String specialEffects = 'special-effects'; - /// Solar icon `spedometer-low`. - static const String spedometerLow = 'spedometer-low'; + /// Solar icon `speedometer-low`. + static const String speedometerLow = 'speedometer-low'; - /// Solar icon `spedometer-max`. - static const String spedometerMax = 'spedometer-max'; + /// Solar icon `speedometer-max`. + static const String speedometerMax = 'speedometer-max'; - /// Solar icon `spedometer-middle`. - static const String spedometerMiddle = 'spedometer-middle'; + /// Solar icon `speedometer-middle`. + static const String speedometerMiddle = 'speedometer-middle'; /// Solar icon `square-academic-cap`. static const String squareAcademicCap = 'square-academic-cap'; @@ -3057,6 +3096,9 @@ class SolarIcons { /// Solar icon `star`. static const String star = 'star'; + /// Solar icon `star-2`. + static const String star2 = 'star-2'; + /// Solar icon `star-angle`. static const String starAngle = 'star-angle'; @@ -3090,6 +3132,9 @@ class SolarIcons { /// Solar icon `stars`. static const String stars = 'stars'; + /// Solar icon `stars-2`. + static const String stars2 = 'stars-2'; + /// Solar icon `stars-line`. static const String starsLine = 'stars-line'; @@ -3237,9 +3282,6 @@ class SolarIcons { /// Solar icon `test-tube-minimalistic`. static const String testTubeMinimalistic = 'test-tube-minimalistic'; - /// Solar icon `text`. - static const String text = 'text'; - /// Solar icon `text-bold`. static const String textBold = 'text-bold'; @@ -3267,6 +3309,9 @@ class SolarIcons { /// Solar icon `text-field-focus`. static const String textFieldFocus = 'text-field-focus'; + /// Solar icon `text-format`. + static const String textFormat = 'text-format'; + /// Solar icon `text-italic`. static const String textItalic = 'text-italic'; @@ -3435,6 +3480,12 @@ class SolarIcons { /// Solar icon `undo-right-square`. static const String undoRightSquare = 'undo-right-square'; + /// Solar icon `unlink`. + static const String unlink = 'unlink'; + + /// Solar icon `unlink-minimalistic`. + static const String unlinkMinimalistic = 'unlink-minimalistic'; + /// Solar icon `unread`. static const String unread = 'unread'; @@ -3531,6 +3582,9 @@ class SolarIcons { /// Solar icon `users-group-two-rounded`. static const String usersGroupTwoRounded = 'users-group-two-rounded'; + /// Solar icon `vanity`. + static const String vanity = 'vanity'; + /// Solar icon `verified-check`. static const String verifiedCheck = 'verified-check'; @@ -3597,9 +3651,6 @@ class SolarIcons { /// Solar icon `volume-small`. static const String volumeSmall = 'volume-small'; - /// Solar icon `wad-of-money`. - static const String wadOfMoney = 'wad-of-money'; - /// Solar icon `walking`. static const String walking = 'walking'; @@ -3650,9 +3701,6 @@ class SolarIcons { /// Solar icon `waterdrops`. static const String waterdrops = 'waterdrops'; - /// Solar icon `weigher`. - static const String weigher = 'weigher'; - /// Solar icon `wheel`. static const String wheel = 'wheel'; @@ -3692,6 +3740,9 @@ class SolarIcons { /// Solar icon `widget-add`. static const String widgetAdd = 'widget-add'; + /// Solar icon `win-rar`. + static const String winRar = 'win-rar'; + /// Solar icon `wind`. static const String wind = 'wind'; @@ -3704,9 +3755,6 @@ class SolarIcons { /// Solar icon `wineglass-triangle`. static const String wineglassTriangle = 'wineglass-triangle'; - /// Solar icon `winrar`. - static const String winrar = 'winrar'; - /// Solar icon `wireless-charge`. static const String wirelessCharge = 'wireless-charge'; @@ -3719,11 +3767,318 @@ class SolarIcons { /// Solar icon `zip-file`. static const String zipFile = 'zip-file'; - /// Every icon in the set, sorted alphabetically (1,231 entries). + // ---- Retired names ---- + // + // Solar renamed these icons upstream. Each constant now + // resolves to its replacement so existing code keeps + // compiling and rendering the same glyph. + + /// Solar icon `4k`, renamed to `four-k`. + @Deprecated("'4k' was renamed to 'four-k' upstream. " + "Use SolarIcons.fourK instead.") + static const String i4k = 'four-k'; + + /// Solar icon `accumulator`, renamed to `car-battery`. + @Deprecated("'accumulator' was renamed to 'car-battery' upstream. " + "Use SolarIcons.carBattery instead.") + static const String accumulator = 'car-battery'; + + /// Solar icon `align-horizonta-spacing`, renamed to `align-horizontal-spacing`. + @Deprecated( + "'align-horizonta-spacing' was renamed to 'align-horizontal-spacing' upstream. " + "Use SolarIcons.alignHorizontalSpacing instead.") + static const String alignHorizontaSpacing = 'align-horizontal-spacing'; + + /// Solar icon `archive-down-minimlistic`, renamed to `archive-down-minimalistic`. + @Deprecated( + "'archive-down-minimlistic' was renamed to 'archive-down-minimalistic' upstream. " + "Use SolarIcons.archiveDownMinimalistic instead.") + static const String archiveDownMinimlistic = 'archive-down-minimalistic'; + + /// Solar icon `archive-up-minimlistic`, renamed to `archive-up-minimalistic`. + @Deprecated( + "'archive-up-minimlistic' was renamed to 'archive-up-minimalistic' upstream. " + "Use SolarIcons.archiveUpMinimalistic instead.") + static const String archiveUpMinimlistic = 'archive-up-minimalistic'; + + /// Solar icon `bell-bing`, renamed to `bell-ring`. + @Deprecated("'bell-bing' was renamed to 'bell-ring' upstream. " + "Use SolarIcons.bellRing instead.") + static const String bellBing = 'bell-ring'; + + /// Solar icon `bone-broken`, renamed to `bone-fracture`. + @Deprecated("'bone-broken' was renamed to 'bone-fracture' upstream. " + "Use SolarIcons.boneFracture instead.") + static const String boneBroken = 'bone-fracture'; + + /// Solar icon `card-recive`, renamed to `card-receive`. + @Deprecated("'card-recive' was renamed to 'card-receive' upstream. " + "Use SolarIcons.cardReceive instead.") + static const String cardRecive = 'card-receive'; + + /// Solar icon `colour-tuneing`, renamed to `colour-tuning`. + @Deprecated("'colour-tuneing' was renamed to 'colour-tuning' upstream. " + "Use SolarIcons.colourTuning instead.") + static const String colourTuneing = 'colour-tuning'; + + /// Solar icon `condicioner`, renamed to `conditioner`. + @Deprecated("'condicioner' was renamed to 'conditioner' upstream. " + "Use SolarIcons.conditioner instead.") + static const String condicioner = 'conditioner'; + + /// Solar icon `condicioner-2`, renamed to `conditioner-2`. + @Deprecated("'condicioner-2' was renamed to 'conditioner-2' upstream. " + "Use SolarIcons.conditioner2 instead.") + static const String condicioner2 = 'conditioner-2'; + + /// Solar icon `file-favourite`, renamed to `file-favorite`. + @Deprecated("'file-favourite' was renamed to 'file-favorite' upstream. " + "Use SolarIcons.fileFavorite instead.") + static const String fileFavourite = 'file-favorite'; + + /// Solar icon `folder-favourite-bookmark`, renamed to `folder-favorite-bookmark`. + @Deprecated( + "'folder-favourite-bookmark' was renamed to 'folder-favorite-bookmark' upstream. " + "Use SolarIcons.folderFavoriteBookmark instead.") + static const String folderFavouriteBookmark = 'folder-favorite-bookmark'; + + /// Solar icon `folder-favourite-star`, renamed to `folder-favorite-star`. + @Deprecated( + "'folder-favourite-star' was renamed to 'folder-favorite-star' upstream. " + "Use SolarIcons.folderFavoriteStar instead.") + static const String folderFavouriteStar = 'folder-favorite-star'; + + /// Solar icon `gallery-favourite`, renamed to `gallery-favorite`. + @Deprecated("'gallery-favourite' was renamed to 'gallery-favorite' upstream. " + "Use SolarIcons.galleryFavorite instead.") + static const String galleryFavourite = 'gallery-favorite'; + + /// Solar icon `globus`, renamed to `globe`. + @Deprecated("'globus' was renamed to 'globe' upstream. " + "Use SolarIcons.globe instead.") + static const String globus = 'globe'; + + /// Solar icon `heart-broken`, renamed to `heart-crack`. + @Deprecated("'heart-broken' was renamed to 'heart-crack' upstream. " + "Use SolarIcons.heartCrack instead.") + static const String heartBroken = 'heart-crack'; + + /// Solar icon `home-wifi`, renamed to `home-wi-fi`. + @Deprecated("'home-wifi' was renamed to 'home-wi-fi' upstream. " + "Use SolarIcons.homeWiFi instead.") + static const String homeWifi = 'home-wi-fi'; + + /// Solar icon `home-wifi-angle`, renamed to `home-wi-fi-angle`. + @Deprecated("'home-wifi-angle' was renamed to 'home-wi-fi-angle' upstream. " + "Use SolarIcons.homeWiFiAngle instead.") + static const String homeWifiAngle = 'home-wi-fi-angle'; + + /// Solar icon `infinity`, renamed to `infinite`. + @Deprecated("'infinity' was renamed to 'infinite' upstream. " + "Use SolarIcons.infinite instead.") + static const String infinity = 'infinite'; + + /// Solar icon `iphone`, renamed to `i-phone`. + @Deprecated("'iphone' was renamed to 'i-phone' upstream. " + "Use SolarIcons.iPhone instead.") + static const String iphone = 'i-phone'; + + /// Solar icon `link-broken`, renamed to `unlink`. + @Deprecated("'link-broken' was renamed to 'unlink' upstream. " + "Use SolarIcons.unlink instead.") + static const String linkBroken = 'unlink'; + + /// Solar icon `link-broken-minimalistic`, renamed to `unlink-minimalistic`. + @Deprecated( + "'link-broken-minimalistic' was renamed to 'unlink-minimalistic' upstream. " + "Use SolarIcons.unlinkMinimalistic instead.") + static const String linkBrokenMinimalistic = 'unlink-minimalistic'; + + /// Solar icon `magic-stick`, renamed to `magic-wand`. + @Deprecated("'magic-stick' was renamed to 'magic-wand' upstream. " + "Use SolarIcons.magicWand instead.") + static const String magicStick = 'magic-wand'; + + /// Solar icon `magic-stick-2`, renamed to `magic-wand-2`. + @Deprecated("'magic-stick-2' was renamed to 'magic-wand-2' upstream. " + "Use SolarIcons.magicWand2 instead.") + static const String magicStick2 = 'magic-wand-2'; + + /// Solar icon `magic-stick-3`, renamed to `magic-wand-3`. + @Deprecated("'magic-stick-3' was renamed to 'magic-wand-3' upstream. " + "Use SolarIcons.magicWand3 instead.") + static const String magicStick3 = 'magic-wand-3'; + + /// Solar icon `magnifer`, renamed to `magnifier`. + @Deprecated("'magnifer' was renamed to 'magnifier' upstream. " + "Use SolarIcons.magnifier instead.") + static const String magnifer = 'magnifier'; + + /// Solar icon `magnifer-bug`, renamed to `magnifier-bug`. + @Deprecated("'magnifer-bug' was renamed to 'magnifier-bug' upstream. " + "Use SolarIcons.magnifierBug instead.") + static const String magniferBug = 'magnifier-bug'; + + /// Solar icon `magnifer-zoom-in`, renamed to `magnifier-zoom-in`. + @Deprecated("'magnifer-zoom-in' was renamed to 'magnifier-zoom-in' upstream. " + "Use SolarIcons.magnifierZoomIn instead.") + static const String magniferZoomIn = 'magnifier-zoom-in'; + + /// Solar icon `magnifer-zoom-out`, renamed to `magnifier-zoom-out`. + @Deprecated( + "'magnifer-zoom-out' was renamed to 'magnifier-zoom-out' upstream. " + "Use SolarIcons.magnifierZoomOut instead.") + static const String magniferZoomOut = 'magnifier-zoom-out'; + + /// Solar icon `map-point-favourite`, renamed to `map-point-favorite`. + @Deprecated( + "'map-point-favourite' was renamed to 'map-point-favorite' upstream. " + "Use SolarIcons.mapPointFavorite instead.") + static const String mapPointFavourite = 'map-point-favorite'; + + /// Solar icon `mask-happly`, renamed to `mask-happy`. + @Deprecated("'mask-happly' was renamed to 'mask-happy' upstream. " + "Use SolarIcons.maskHappy instead.") + static const String maskHapply = 'mask-happy'; + + /// Solar icon `minimalistic-magnifer`, renamed to `minimalistic-magnifier`. + @Deprecated( + "'minimalistic-magnifer' was renamed to 'minimalistic-magnifier' upstream. " + "Use SolarIcons.minimalisticMagnifier instead.") + static const String minimalisticMagnifer = 'minimalistic-magnifier'; + + /// Solar icon `minimalistic-magnifer-bug`, renamed to `minimalistic-magnifier-bug`. + @Deprecated( + "'minimalistic-magnifer-bug' was renamed to 'minimalistic-magnifier-bug' upstream. " + "Use SolarIcons.minimalisticMagnifierBug instead.") + static const String minimalisticMagniferBug = 'minimalistic-magnifier-bug'; + + /// Solar icon `minimalistic-magnifer-zoom-in`, renamed to `minimalistic-magnifier-zoom-in`. + @Deprecated( + "'minimalistic-magnifer-zoom-in' was renamed to 'minimalistic-magnifier-zoom-in' upstream. " + "Use SolarIcons.minimalisticMagnifierZoomIn instead.") + static const String minimalisticMagniferZoomIn = + 'minimalistic-magnifier-zoom-in'; + + /// Solar icon `minimalistic-magnifer-zoom-out`, renamed to `minimalistic-magnifier-zoom-out`. + @Deprecated( + "'minimalistic-magnifer-zoom-out' was renamed to 'minimalistic-magnifier-zoom-out' upstream. " + "Use SolarIcons.minimalisticMagnifierZoomOut instead.") + static const String minimalisticMagniferZoomOut = + 'minimalistic-magnifier-zoom-out'; + + /// Solar icon `pallete-2`, renamed to `palette-2`. + @Deprecated("'pallete-2' was renamed to 'palette-2' upstream. " + "Use SolarIcons.palette2 instead.") + static const String pallete2 = 'palette-2'; + + /// Solar icon `plaaylist-minimalistic`, renamed to `playlist-minimalistic`. + @Deprecated( + "'plaaylist-minimalistic' was renamed to 'playlist-minimalistic' upstream. " + "Use SolarIcons.playlistMinimalistic instead.") + static const String plaaylistMinimalistic = 'playlist-minimalistic'; + + /// Solar icon `plain`, renamed to `plane`. + @Deprecated("'plain' was renamed to 'plane' upstream. " + "Use SolarIcons.plane instead.") + static const String plain = 'plane'; + + /// Solar icon `plain-2`, renamed to `plane-2`. + @Deprecated("'plain-2' was renamed to 'plane-2' upstream. " + "Use SolarIcons.plane2 instead.") + static const String plain2 = 'plane-2'; + + /// Solar icon `plain-3`, renamed to `plane-3`. + @Deprecated("'plain-3' was renamed to 'plane-3' upstream. " + "Use SolarIcons.plane3 instead.") + static const String plain3 = 'plane-3'; + + /// Solar icon `recive-square`, renamed to `receive-square`. + @Deprecated("'recive-square' was renamed to 'receive-square' upstream. " + "Use SolarIcons.receiveSquare instead.") + static const String reciveSquare = 'receive-square'; + + /// Solar icon `recive-twice-square`, renamed to `receive-twice-square`. + @Deprecated( + "'recive-twice-square' was renamed to 'receive-twice-square' upstream. " + "Use SolarIcons.receiveTwiceSquare instead.") + static const String reciveTwiceSquare = 'receive-twice-square'; + + /// Solar icon `rounded-magnifer`, renamed to `rounded-magnifier`. + @Deprecated("'rounded-magnifer' was renamed to 'rounded-magnifier' upstream. " + "Use SolarIcons.roundedMagnifier instead.") + static const String roundedMagnifer = 'rounded-magnifier'; + + /// Solar icon `rounded-magnifer-bug`, renamed to `rounded-magnifier-bug`. + @Deprecated( + "'rounded-magnifer-bug' was renamed to 'rounded-magnifier-bug' upstream. " + "Use SolarIcons.roundedMagnifierBug instead.") + static const String roundedMagniferBug = 'rounded-magnifier-bug'; + + /// Solar icon `rounded-magnifer-zoom-in`, renamed to `rounded-magnifier-zoom-in`. + @Deprecated( + "'rounded-magnifer-zoom-in' was renamed to 'rounded-magnifier-zoom-in' upstream. " + "Use SolarIcons.roundedMagnifierZoomIn instead.") + static const String roundedMagniferZoomIn = 'rounded-magnifier-zoom-in'; + + /// Solar icon `rounded-magnifer-zoom-out`, renamed to `rounded-magnifier-zoom-out`. + @Deprecated( + "'rounded-magnifer-zoom-out' was renamed to 'rounded-magnifier-zoom-out' upstream. " + "Use SolarIcons.roundedMagnifierZoomOut instead.") + static const String roundedMagniferZoomOut = 'rounded-magnifier-zoom-out'; + + /// Solar icon `siderbar`, renamed to `sidebar`. + @Deprecated("'siderbar' was renamed to 'sidebar' upstream. " + "Use SolarIcons.sidebar instead.") + static const String siderbar = 'sidebar'; + + /// Solar icon `sort-by-alphabet`, renamed to `sort-alphabetically`. + @Deprecated( + "'sort-by-alphabet' was renamed to 'sort-alphabetically' upstream. " + "Use SolarIcons.sortAlphabetically instead.") + static const String sortByAlphabet = 'sort-alphabetically'; + + /// Solar icon `spedometer-low`, renamed to `speedometer-low`. + @Deprecated("'spedometer-low' was renamed to 'speedometer-low' upstream. " + "Use SolarIcons.speedometerLow instead.") + static const String spedometerLow = 'speedometer-low'; + + /// Solar icon `spedometer-max`, renamed to `speedometer-max`. + @Deprecated("'spedometer-max' was renamed to 'speedometer-max' upstream. " + "Use SolarIcons.speedometerMax instead.") + static const String spedometerMax = 'speedometer-max'; + + /// Solar icon `spedometer-middle`, renamed to `speedometer-middle`. + @Deprecated( + "'spedometer-middle' was renamed to 'speedometer-middle' upstream. " + "Use SolarIcons.speedometerMiddle instead.") + static const String spedometerMiddle = 'speedometer-middle'; + + /// Solar icon `text`, renamed to `text-format`. + @Deprecated("'text' was renamed to 'text-format' upstream. " + "Use SolarIcons.textFormat instead.") + static const String text = 'text-format'; + + /// Solar icon `wad-of-money`, renamed to `money-roll`. + @Deprecated("'wad-of-money' was renamed to 'money-roll' upstream. " + "Use SolarIcons.moneyRoll instead.") + static const String wadOfMoney = 'money-roll'; + + /// Solar icon `weigher`, renamed to `scale`. + @Deprecated("'weigher' was renamed to 'scale' upstream. " + "Use SolarIcons.scale instead.") + static const String weigher = 'scale'; + + /// Solar icon `winrar`, renamed to `win-rar`. + @Deprecated("'winrar' was renamed to 'win-rar' upstream. " + "Use SolarIcons.winRar instead.") + static const String winrar = 'win-rar'; + + /// Every icon in the set, sorted alphabetically (1,247 entries). + /// + /// Retired names are excluded — see [legacyAliases]. static const List all = [ - '4k', 'accessibility', - 'accumulator', 'add-circle', 'add-folder', 'add-square', @@ -3748,8 +4103,8 @@ class SolarIcons { 'alarm-turn-off', 'album', 'align-bottom', - 'align-horizonta-spacing', 'align-horizontal-center', + 'align-horizontal-spacing', 'align-left', 'align-right', 'align-top', @@ -3762,10 +4117,10 @@ class SolarIcons { 'archive', 'archive-check', 'archive-down', - 'archive-down-minimlistic', + 'archive-down-minimalistic', 'archive-minimalistic', 'archive-up', - 'archive-up-minimlistic', + 'archive-up-minimalistic', 'armchair', 'armchair-2', 'arrow-down', @@ -3818,12 +4173,13 @@ class SolarIcons { 'bedside-table-3', 'bedside-table-4', 'bell', - 'bell-bing', 'bell-off', + 'bell-ring', 'benzene-ring', 'bicycling', 'bicycling-round', 'bill', + 'bill-2', 'bill-check', 'bill-cross', 'bill-list', @@ -3843,8 +4199,8 @@ class SolarIcons { 'bomb-emoji', 'bomb-minimalistic', 'bone', - 'bone-broken', 'bone-crack', + 'bone-fracture', 'bones', 'bonfire', 'book', @@ -3892,9 +4248,10 @@ class SolarIcons { 'camera-minimalistic', 'camera-rotate', 'camera-square', + 'car-battery', 'card', 'card-2', - 'card-recive', + 'card-receive', 'card-search', 'card-send', 'card-transfer', @@ -3902,6 +4259,7 @@ class SolarIcons { 'cart', 'cart-2', 'cart-3', + 'cart-4', 'cart-5', 'cart-check', 'cart-cross', @@ -4003,13 +4361,13 @@ class SolarIcons { 'code-file', 'code-scan', 'code-square', - 'colour-tuneing', + 'colour-tuning', 'command', 'compass', 'compass-big', 'compass-square', - 'condicioner', - 'condicioner-2', + 'conditioner', + 'conditioner-2', 'confetti', 'confetti-minimalistic', 'confounded-circle', @@ -4055,6 +4413,7 @@ class SolarIcons { 'display', 'dna', 'document', + 'document-2', 'document-add', 'document-medicine', 'document-text', @@ -4113,7 +4472,7 @@ class SolarIcons { 'file-check', 'file-corrupted', 'file-download', - 'file-favourite', + 'file-favorite', 'file-left', 'file-remove', 'file-right', @@ -4141,8 +4500,8 @@ class SolarIcons { 'folder-check', 'folder-cloud', 'folder-error', - 'folder-favourite-bookmark', - 'folder-favourite-star', + 'folder-favorite-bookmark', + 'folder-favorite-star', 'folder-open', 'folder-path-connect', 'folder-security', @@ -4152,6 +4511,8 @@ class SolarIcons { 'forbidden-circle', 'forward', 'forward-2', + 'forward-right', + 'four-k', 'fridge', 'fuel', 'full-screen', @@ -4163,7 +4524,7 @@ class SolarIcons { 'gallery-circle', 'gallery-download', 'gallery-edit', - 'gallery-favourite', + 'gallery-favorite', 'gallery-minimalistic', 'gallery-remove', 'gallery-round', @@ -4182,7 +4543,7 @@ class SolarIcons { 'gift', 'glasses', 'global', - 'globus', + 'globe', 'golf', 'gps', 'graph', @@ -4210,7 +4571,7 @@ class SolarIcons { 'health', 'heart', 'heart-angle', - 'heart-broken', + 'heart-crack', 'heart-lock', 'heart-pulse', 'heart-pulse-2', @@ -4234,11 +4595,13 @@ class SolarIcons { 'home-angle-2', 'home-smile', 'home-smile-angle', - 'home-wifi', - 'home-wifi-angle', + 'home-wi-fi', + 'home-wi-fi-angle', 'hospital', 'hourglass', 'hourglass-line', + 'house', + 'i-phone', 'import', 'inbox', 'inbox-archive', @@ -4249,10 +4612,9 @@ class SolarIcons { 'incognito', 'incoming-call', 'incoming-call-rounded', - 'infinity', + 'infinite', 'info-circle', 'info-square', - 'iphone', 'jar-of-pills', 'jar-of-pills-2', 'key', @@ -4284,8 +4646,6 @@ class SolarIcons { 'lightning', 'like', 'link', - 'link-broken', - 'link-broken-minimalistic', 'link-circle', 'link-minimalistic', 'link-minimalistic-2', @@ -4307,6 +4667,7 @@ class SolarIcons { 'list-heart-minimalistic', 'list-up', 'list-up-minimalistic', + 'list-vertical', 'lock', 'lock-keyhole', 'lock-keyhole-minimalistic', @@ -4318,16 +4679,18 @@ class SolarIcons { 'login', 'login-2', 'login-3', + 'logout', + 'logout-2', 'logout-3', - 'magic-stick', - 'magic-stick-2', - 'magic-stick-3', + 'magic-wand', + 'magic-wand-2', + 'magic-wand-3', 'magnet', 'magnet-wave', - 'magnifer', - 'magnifer-bug', - 'magnifer-zoom-in', - 'magnifer-zoom-out', + 'magnifier', + 'magnifier-bug', + 'magnifier-zoom-in', + 'magnifier-zoom-out', 'mailbox', 'map', 'map-arrow-down', @@ -4337,14 +4700,14 @@ class SolarIcons { 'map-arrow-up', 'map-point', 'map-point-add', - 'map-point-favourite', + 'map-point-favorite', 'map-point-hospital', 'map-point-remove', 'map-point-rotate', 'map-point-school', 'map-point-search', 'map-point-wave', - 'mask-happly', + 'mask-happy', 'mask-sad', 'masks', 'maximize', @@ -4371,10 +4734,10 @@ class SolarIcons { 'microphone-2', 'microphone-3', 'microphone-large', - 'minimalistic-magnifer', - 'minimalistic-magnifer-bug', - 'minimalistic-magnifer-zoom-in', - 'minimalistic-magnifer-zoom-out', + 'minimalistic-magnifier', + 'minimalistic-magnifier-bug', + 'minimalistic-magnifier-zoom-in', + 'minimalistic-magnifier-zoom-out', 'minimize', 'minimize-square', 'minimize-square-2', @@ -4383,9 +4746,11 @@ class SolarIcons { 'minus-circle', 'minus-square', 'mirror', + 'mirror-2', 'mirror-left', 'mirror-right', 'money-bag', + 'money-roll', 'monitor', 'monitor-camera', 'monitor-smartphone', @@ -4397,6 +4762,7 @@ class SolarIcons { 'mouse-circle', 'mouse-minimalistic', 'move-to-folder', + 'mug', 'multiple-forward-left', 'multiple-forward-right', 'music-library', @@ -4410,6 +4776,7 @@ class SolarIcons { 'music-notes', 'muted', 'notebook', + 'notebook-2', 'notebook-bookmark', 'notebook-minimalistic', 'notebook-square', @@ -4426,8 +4793,8 @@ class SolarIcons { 'oven-mitts-minimalistic', 'paint-roller', 'palette', + 'palette-2', 'palette-round', - 'pallete-2', 'panorama', 'paper-bin', 'paperclip', @@ -4466,10 +4833,9 @@ class SolarIcons { 'pip', 'pip-2', 'pipette', - 'plaaylist-minimalistic', - 'plain', - 'plain-2', - 'plain-3', + 'plane', + 'plane-2', + 'plane-3', 'planet', 'planet-2', 'planet-3', @@ -4481,6 +4847,7 @@ class SolarIcons { 'playback-speed', 'playlist', 'playlist-2', + 'playlist-minimalistic', 'playlist-minimalistic-2', 'playlist-minimalistic-3', 'plug-circle', @@ -4512,9 +4879,10 @@ class SolarIcons { 'radio', 'radio-minimalistic', 'ranking', - 'recive-square', - 'recive-twice-square', + 'receive-square', + 'receive-twice-square', 'record', + 'record-audio-circle', 'record-circle', 'record-minimalistic', 'record-square', @@ -4528,6 +4896,7 @@ class SolarIcons { 'remote-controller-minimalistic', 'remove-folder', 'reorder', + 'reorder-2', 'repeat', 'repeat-one', 'repeat-one-minimalistic', @@ -4572,10 +4941,10 @@ class SolarIcons { 'round-transfer-diagonal', 'round-transfer-horizontal', 'round-transfer-vertical', - 'rounded-magnifer', - 'rounded-magnifer-bug', - 'rounded-magnifer-zoom-in', - 'rounded-magnifer-zoom-out', + 'rounded-magnifier', + 'rounded-magnifier-bug', + 'rounded-magnifier-zoom-in', + 'rounded-magnifier-zoom-out', 'route', 'routing', 'routing-2', @@ -4598,6 +4967,7 @@ class SolarIcons { 'sale-square', 'satellite', 'scale', + 'scaling', 'scanner', 'scanner-2', 'scissors', @@ -4638,9 +5008,9 @@ class SolarIcons { 'shop-2', 'shop-minimalistic', 'shuffle', + 'sidebar', 'sidebar-code', 'sidebar-minimalistic', - 'siderbar', 'signpost', 'signpost-2', 'sim-card', @@ -4686,7 +5056,7 @@ class SolarIcons { 'sofa-2', 'sofa-3', 'sort', - 'sort-by-alphabet', + 'sort-alphabetically', 'sort-by-time', 'sort-from-bottom-to-top', 'sort-from-top-to-bottom', @@ -4698,9 +5068,9 @@ class SolarIcons { 'speaker', 'speaker-minimalistic', 'special-effects', - 'spedometer-low', - 'spedometer-max', - 'spedometer-middle', + 'speedometer-low', + 'speedometer-max', + 'speedometer-middle', 'square-academic-cap', 'square-academic-cap-2', 'square-alt-arrow-down', @@ -4732,6 +5102,7 @@ class SolarIcons { 'ssd-round', 'ssd-square', 'star', + 'star-2', 'star-angle', 'star-circle', 'star-fall', @@ -4743,6 +5114,7 @@ class SolarIcons { 'star-rings', 'star-shine', 'stars', + 'stars-2', 'stars-line', 'stars-minimalistic', 'station', @@ -4792,7 +5164,6 @@ class SolarIcons { 'tennis-2', 'test-tube', 'test-tube-minimalistic', - 'text', 'text-bold', 'text-bold-circle', 'text-bold-square', @@ -4802,6 +5173,7 @@ class SolarIcons { 'text-cross-square', 'text-field', 'text-field-focus', + 'text-format', 'text-italic', 'text-italic-circle', 'text-italic-square', @@ -4858,6 +5230,8 @@ class SolarIcons { 'undo-right-round', 'undo-right-round-square', 'undo-right-square', + 'unlink', + 'unlink-minimalistic', 'unread', 'upload', 'upload-minimalistic', @@ -4890,6 +5264,7 @@ class SolarIcons { 'user-speak-rounded', 'users-group-rounded', 'users-group-two-rounded', + 'vanity', 'verified-check', 'video-frame', 'video-frame-2', @@ -4912,7 +5287,6 @@ class SolarIcons { 'volume-knob', 'volume-loud', 'volume-small', - 'wad-of-money', 'walking', 'walking-round', 'wallet', @@ -4929,7 +5303,6 @@ class SolarIcons { 'water-sun', 'waterdrop', 'waterdrops', - 'weigher', 'wheel', 'wheel-angle', 'whisk', @@ -4943,14 +5316,78 @@ class SolarIcons { 'widget-5', 'widget-6', 'widget-add', + 'win-rar', 'wind', 'window-frame', 'wineglass', 'wineglass-triangle', - 'winrar', 'wireless-charge', 'women', 'xxx', 'zip-file', ]; + + /// Maps each retired icon name to its current replacement. + /// + /// [SolarIcon] consults this map so raw strings such as + /// `SolarIcon('magnifer')` keep resolving after the rename. + /// (56 entries.) + static const Map legacyAliases = { + '4k': 'four-k', + 'accumulator': 'car-battery', + 'align-horizonta-spacing': 'align-horizontal-spacing', + 'archive-down-minimlistic': 'archive-down-minimalistic', + 'archive-up-minimlistic': 'archive-up-minimalistic', + 'bell-bing': 'bell-ring', + 'bone-broken': 'bone-fracture', + 'card-recive': 'card-receive', + 'colour-tuneing': 'colour-tuning', + 'condicioner': 'conditioner', + 'condicioner-2': 'conditioner-2', + 'file-favourite': 'file-favorite', + 'folder-favourite-bookmark': 'folder-favorite-bookmark', + 'folder-favourite-star': 'folder-favorite-star', + 'gallery-favourite': 'gallery-favorite', + 'globus': 'globe', + 'heart-broken': 'heart-crack', + 'home-wifi': 'home-wi-fi', + 'home-wifi-angle': 'home-wi-fi-angle', + 'infinity': 'infinite', + 'iphone': 'i-phone', + 'link-broken': 'unlink', + 'link-broken-minimalistic': 'unlink-minimalistic', + 'magic-stick': 'magic-wand', + 'magic-stick-2': 'magic-wand-2', + 'magic-stick-3': 'magic-wand-3', + 'magnifer': 'magnifier', + 'magnifer-bug': 'magnifier-bug', + 'magnifer-zoom-in': 'magnifier-zoom-in', + 'magnifer-zoom-out': 'magnifier-zoom-out', + 'map-point-favourite': 'map-point-favorite', + 'mask-happly': 'mask-happy', + 'minimalistic-magnifer': 'minimalistic-magnifier', + 'minimalistic-magnifer-bug': 'minimalistic-magnifier-bug', + 'minimalistic-magnifer-zoom-in': 'minimalistic-magnifier-zoom-in', + 'minimalistic-magnifer-zoom-out': 'minimalistic-magnifier-zoom-out', + 'pallete-2': 'palette-2', + 'plaaylist-minimalistic': 'playlist-minimalistic', + 'plain': 'plane', + 'plain-2': 'plane-2', + 'plain-3': 'plane-3', + 'recive-square': 'receive-square', + 'recive-twice-square': 'receive-twice-square', + 'rounded-magnifer': 'rounded-magnifier', + 'rounded-magnifer-bug': 'rounded-magnifier-bug', + 'rounded-magnifer-zoom-in': 'rounded-magnifier-zoom-in', + 'rounded-magnifer-zoom-out': 'rounded-magnifier-zoom-out', + 'siderbar': 'sidebar', + 'sort-by-alphabet': 'sort-alphabetically', + 'spedometer-low': 'speedometer-low', + 'spedometer-max': 'speedometer-max', + 'spedometer-middle': 'speedometer-middle', + 'text': 'text-format', + 'wad-of-money': 'money-roll', + 'weigher': 'scale', + 'winrar': 'win-rar', + }; } diff --git a/pubspec.yaml b/pubspec.yaml index 6871d982..f8f10049 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,8 +1,8 @@ name: solar_iconkit description: >- - Solar icon kit for Flutter. 1,231 icons in 6 native styles — linear, outline, + Solar icon kit for Flutter. 1,247 icons in 6 native styles — linear, outline, broken, bold, line-duotone, bold-duotone — behind a single SolarIcon widget. -version: 1.0.3 +version: 1.1.0 homepage: https://solar-icons-web.vercel.app repository: https://github.com/sovanken/solar_iconkit @@ -20,7 +20,7 @@ topics: - widgets screenshots: - - description: The interactive icon browser — 1,231 Solar icons across 6 native styles, filterable by category + - description: The interactive icon browser — 1,247 Solar icons across 6 native styles, filterable by category path: screenshots/browser-grid.png - description: Icon detail view — each icon in all 6 native styles, with Flutter widget code and download formats path: screenshots/style-comparison.png diff --git a/test/goldens/home-2-broken.png b/test/goldens/home-2-broken.png index 0d1345f1..de66bd69 100644 Binary files a/test/goldens/home-2-broken.png and b/test/goldens/home-2-broken.png differ diff --git a/test/solar_icon_test.dart b/test/solar_icon_test.dart index 25549e55..2c2928d1 100644 --- a/test/solar_icon_test.dart +++ b/test/solar_icon_test.dart @@ -366,7 +366,11 @@ void main() { }); test('digit-prefixed icons rename with an `i` prefix', () { - expect(SolarIcons.i4k, '4k'); + // Solar renamed `4k` to `four-k`, so the identifier survives only as a + // retired constant — but the `i` prefix rule is what keeps it legal. + // ignore: deprecated_member_use_from_same_package + expect(SolarIcons.i4k, 'four-k'); + expect(SolarIcons.legacyAliases['4k'], 'four-k'); }); test('common icons are reachable via camelCase identifiers', () { @@ -376,6 +380,50 @@ void main() { }); }); + group('retired icon names', () { + test('every retired name maps to a name that actually ships', () { + for (final entry in SolarIcons.legacyAliases.entries) { + expect(SolarIcons.all, contains(entry.value), + reason: '${entry.key} points at missing icon ${entry.value}'); + } + }); + + test('retired names are excluded from all', () { + for (final old in SolarIcons.legacyAliases.keys) { + expect(SolarIcons.all, isNot(contains(old))); + } + }); + + test('deprecated constants resolve to their replacement value', () { + // ignore: deprecated_member_use_from_same_package + expect(SolarIcons.magnifer, 'magnifier'); + // ignore: deprecated_member_use_from_same_package + expect(SolarIcons.iphone, 'i-phone'); + // ignore: deprecated_member_use_from_same_package + expect(SolarIcons.heartBroken, 'heart-crack'); + }); + + test('resolveName maps retired names and passes current ones through', () { + expect(SolarIcon.resolveName('magnifer'), 'magnifier'); + expect(SolarIcon.resolveName('magnifier'), 'magnifier'); + expect(SolarIcon.resolveName('home-2'), 'home-2'); + }); + + test('assetPath redirects a retired raw string to the shipped asset', () { + expect( + SolarIcon.assetPath('magnifer', SolarIconStyle.linear), + 'assets/icons/linear/magnifier.svg', + ); + }); + + testWidgets('a retired raw string still renders without throwing', + (tester) async { + await tester.pumpWidget(const MaterialApp(home: SolarIcon('magnifer'))); + expect(tester.takeException(), isNull); + expect(find.byType(SolarIcon), findsOneWidget); + }); + }); + group('SolarIcon.assetPath', () { test('matches folder layout for every style', () { for (final s in SolarIconStyle.values) { diff --git a/tool/fetch_icons.py b/tool/fetch_icons.py index 2e0e1648..4cea2850 100644 --- a/tool/fetch_icons.py +++ b/tool/fetch_icons.py @@ -1,22 +1,42 @@ """Fetch all Solar SVGs from Iconify and generate the Dart constants file. Run once from the package root: - python tools/fetch_icons.py + python tool/fetch_icons.py -Requires: Python 3.10+, `requests` (pip install requests). +Requires: Python 3.10+ (standard library only). Writes: - assets/icons/{style}/{name}.svg (7,401 files) - lib/src/solar_iconkit_data.g.dart (~1,231 constants) + assets/icons/{style}/{name}.svg (one file per canonical name, per style) + lib/src/solar_iconkit_data.g.dart (canonical + deprecated legacy constants) + +## Why this script is not a plain "download everything" loop + +Upstream Solar renames icons. Iconify keeps the old names reachable — some as +`aliases`, some merely as `hidden` entries — but drops them from the browsable +collection listing. A naive regeneration that reads only the visible listing +would silently delete every renamed constant, breaking consumers who upgrade. + +So the script computes two sets: + +* **canonical** — the names Solar currently advertises. These get SVG assets + and normal constants. +* **legacy** — names a previous release shipped that are no longer canonical. + These get `@Deprecated` constants whose *value* is the canonical name, plus + an entry in [SolarIcons.legacyAliases] so raw-string callers still resolve. + They cost no extra SVG files. + +A legacy name that cannot be mapped to any canonical name keeps its own assets +rather than disappearing. """ from __future__ import annotations import json import re +import subprocess import sys import time -import urllib.request import urllib.error +import urllib.request from pathlib import Path # ---- config ---- @@ -32,14 +52,42 @@ ] BATCH_SIZE = 60 # icons per fetch — under URL length limit BASE_STYLE_SUFFIX = "-linear" +# Longest-first so `-line-duotone` is stripped before `-linear` never matches it. +API_SUFFIXES = sorted((s for s, _ in STYLES), key=len, reverse=True) ROOT = Path(__file__).resolve().parent.parent ASSETS = ROOT / "assets" / "icons" DART_OUT = ROOT / "lib" / "src" / "solar_iconkit_data.g.dart" +# Renames Iconify records only as `hidden` entries, with no alias target to +# follow. Each pair below was confirmed by rasterising both glyphs and diffing +# the pixels — they are the same drawing under a corrected name. +HIDDEN_RENAMES = { + "4k": "four-k", + "archive-down-minimlistic": "archive-down-minimalistic", + "archive-up-minimlistic": "archive-up-minimalistic", + "card-recive": "card-receive", + "file-favourite": "file-favorite", + "gallery-favourite": "gallery-favorite", + "magic-stick": "magic-wand", + "magic-stick-2": "magic-wand-2", + "map-point-favourite": "map-point-favorite", + "pallete-2": "palette-2", + "plain": "plane", + "recive-square": "receive-square", + "recive-twice-square": "receive-twice-square", + "winrar": "win-rar", +} + +# Aliases whose recorded parent is circular or points at a style-specific +# entry, so the generic resolver cannot use it. +ALIAS_OVERRIDES = { + "sort-by-alphabet": "sort-alphabetically", +} + _USER_AGENT = ( - "solar_iconkit-fetcher/0.1 " + "solar_iconkit-fetcher/0.2 " "(+https://github.com/sovanken/solar_iconkit; regeneration script)" ) @@ -50,9 +98,21 @@ def _http_json(url: str) -> dict: return json.loads(r.read().decode("utf-8")) -def fetch_base_names() -> list[str]: +def strip_style(full_name: str) -> str: + """Strip whichever style suffix `full_name` carries.""" + for suffix in API_SUFFIXES: + if full_name.endswith("-" + suffix): + return full_name[: -len(suffix) - 1] + return full_name + + +def fetch_collection() -> dict: print("Fetching collection metadata...") - data = _http_json(f"{API}/collection?prefix={PREFIX}") + return _http_json(f"{API}/collection?prefix={PREFIX}") + + +def canonical_names(data: dict) -> list[str]: + """The base names Solar currently advertises in its browsable listing.""" bases: set[str] = set() for names in data.get("categories", {}).values(): for n in names: @@ -62,18 +122,72 @@ def fetch_base_names() -> list[str]: if n.endswith(BASE_STYLE_SUFFIX): bases.add(n[: -len(BASE_STYLE_SUFFIX)]) result = sorted(bases) - print(f" found {len(result):,} base icons") + print(f" found {len(result):,} canonical icons") return result -def fetch_style(base_names: list[str], api_suffix: str, folder: str) -> int: +def previously_shipped() -> list[str]: + """Names in the committed catalog, i.e. what the last release exposed.""" + if not DART_OUT.exists(): + return [] + text = DART_OUT.read_text(encoding="utf-8") + match = re.search( + r"static const List all = \[(.*?)\];", text, re.S) + if not match: + return [] + return re.findall(r"'([^']+)'", match.group(1)) + + +def resolve_legacy( + data: dict, canonical: set[str], previous: list[str] +) -> tuple[dict[str, str], list[str]]: + """Map each retired name to its canonical replacement. + + Returns (mapping, unresolved) where `unresolved` names must keep shipping + their own SVG assets because no replacement could be determined. + """ + aliases = data.get("aliases", {}) + mapping: dict[str, str] = {} + unresolved: list[str] = [] + for name in previous: + if name in canonical: + continue + target = ALIAS_OVERRIDES.get(name) or HIDDEN_RENAMES.get(name) + if target is None: + # `/collection` records an alias as a bare parent name; the icon + # data endpoint uses {"parent": ...}. Accept either shape. + entry = aliases.get(name + BASE_STYLE_SUFFIX) + if isinstance(entry, dict): + entry = entry.get("parent") + if isinstance(entry, str) and entry: + candidate = strip_style(entry) + if candidate != name and candidate in canonical: + target = candidate + if target in canonical: + mapping[name] = target + else: + unresolved.append(name) + print(f" {len(mapping):,} retired names mapped to replacements") + if unresolved: + print(f" {len(unresolved)} kept as standalone assets: " + f"{', '.join(unresolved)}") + return mapping, unresolved + + +def fetch_style(names: list[str], api_suffix: str, folder: str) -> int: style_dir = ASSETS / folder style_dir.mkdir(parents=True, exist_ok=True) + keep = {f"{n}.svg" for n in names} + removed = 0 + for existing in style_dir.glob("*.svg"): + if existing.name not in keep: + existing.unlink() + removed += 1 written = 0 - total = len(base_names) + total = len(names) print(f"\nFetching style '{folder}' ({total:,} icons)...") for i in range(0, total, BATCH_SIZE): - chunk = base_names[i : i + BATCH_SIZE] + chunk = names[i: i + BATCH_SIZE] names_param = ",".join(f"{n}-{api_suffix}" for n in chunk) url = f"{API}/{PREFIX}.json?icons={names_param}" try: @@ -82,11 +196,13 @@ def fetch_style(base_names: list[str], api_suffix: str, folder: str) -> int: print(f" batch {i // BATCH_SIZE + 1} failed: {e}", file=sys.stderr) continue icons = data.get("icons", {}) + default_w = data.get("width", 24) + default_h = data.get("height", 24) suffix_len = len(f"-{api_suffix}") for full_name, meta in icons.items(): base = full_name[:-suffix_len] - width = meta.get("width", 24) - height = meta.get("height", 24) + width = meta.get("width", default_w) + height = meta.get("height", default_h) body = meta["body"] svg = ( f' int: done = min(i + BATCH_SIZE, total) print(f" {done:>5,} / {total:,}", end="\r", flush=True) time.sleep(0.05) # gentle on the API - print(f" wrote {written:,} SVGs to {style_dir}") + note = f" ({removed} stale removed)" if removed else "" + print(f" wrote {written:,} SVGs to {style_dir}{note}") return written @@ -118,6 +235,8 @@ def fetch_style(base_names: list[str], api_suffix: str, folder: str) -> int: # Contextual keywords "async", "await", "hide", "of", "on", "show", "sync", "when", "yield", "base", + # Members declared on this class itself. + "all", "legacyAliases", } @@ -136,11 +255,11 @@ def to_camel_case(name: str) -> str: return ident -def generate_dart(base_names: list[str]) -> None: +def generate_dart(canonical: list[str], legacy: dict[str, str]) -> None: print(f"\nGenerating {DART_OUT.relative_to(ROOT)}...") lines: list[str] = [] lines.append("// GENERATED FILE. Do not edit by hand.") - lines.append("// Run `python tools/fetch_icons.py` to regenerate.") + lines.append("// Run `python tool/fetch_icons.py` to regenerate.") lines.append("") lines.append("// ignore_for_file: constant_identifier_names") lines.append("") @@ -155,42 +274,105 @@ def generate_dart(base_names: list[str]) -> None: lines.append("") seen: dict[str, str] = {} - for name in base_names: - ident = to_camel_case(name) - # Handle collisions by appending an index + + def unique(ident: str) -> str: original = ident n = 2 while ident in seen: ident = f"{original}{n}" n += 1 + return ident + + for name in canonical: + ident = unique(to_camel_case(name)) seen[ident] = name lines.append(f" /// Solar icon `{name}`.") lines.append(f" static const String {ident} = '{name}';") + if legacy: + lines.append("") + lines.append(" // ---- Retired names ----") + lines.append(" //") + lines.append(" // Solar renamed these icons upstream. Each constant now") + lines.append(" // resolves to its replacement so existing code keeps") + lines.append(" // compiling and rendering the same glyph.") + lines.append("") + for name in sorted(legacy): + target = legacy[name] + ident = unique(to_camel_case(name)) + seen[ident] = name + lines.append(f" /// Solar icon `{name}`, renamed to `{target}`.") + lines.append( + f" @Deprecated(\"'{name}' was renamed to '{target}' upstream. \"") + lines.append( + f" \"Use SolarIcons.{to_camel_case(target)} instead.\")") + lines.append(f" static const String {ident} = '{target}';") + lines.append("") - lines.append(f" /// Every icon in the set, sorted alphabetically ({len(base_names):,} entries).") + lines.append(" /// Every icon in the set, sorted alphabetically " + f"({len(canonical):,} entries).") + lines.append(" ///") + lines.append(" /// Retired names are excluded — see [legacyAliases].") lines.append(" static const List all = [") - for name in base_names: + for name in canonical: lines.append(f" '{name}',") lines.append(" ];") + lines.append("") + lines.append(" /// Maps each retired icon name to its current replacement.") + lines.append(" ///") + lines.append(" /// [SolarIcon] consults this map so raw strings such as") + lines.append(" /// `SolarIcon('magnifer')` keep resolving after the rename.") + lines.append(f" /// ({len(legacy):,} entries.)") + lines.append(" static const Map legacyAliases = " + "{") + for name in sorted(legacy): + lines.append(f" '{name}': '{legacy[name]}',") + lines.append(" };") lines.append("}") lines.append("") DART_OUT.parent.mkdir(parents=True, exist_ok=True) DART_OUT.write_text("\n".join(lines), encoding="utf-8") - print(f" wrote {len(base_names):,} constants + all[] list") + print(f" wrote {len(canonical):,} constants, " + f"{len(legacy):,} deprecated aliases, and all[]") + + # CI verifies `dart format`, so normalise the generated file here rather + # than leaving a formatting failure for the next push to discover. + try: + subprocess.run(["dart", "format", str(DART_OUT)], + check=True, capture_output=True, shell=(sys.platform == "win32")) + print(" formatted with `dart format`") + except (OSError, subprocess.CalledProcessError) as e: + print(f" WARNING: could not run `dart format` ({e}). " + f"Run it manually before committing.", file=sys.stderr) def main() -> int: - bases = fetch_base_names() - if not bases: + data = fetch_collection() + canonical = canonical_names(data) + if not canonical: print("No icons found — aborting.", file=sys.stderr) return 1 + + previous = previously_shipped() + legacy, unresolved = resolve_legacy(data, set(canonical), previous) + + # Names that lost their upstream listing but have no replacement still need + # their own assets, otherwise upgrading would break existing callers. + to_download = sorted(set(canonical) | set(unresolved)) + + dropped = sorted(set(previous) - set(to_download) - set(legacy)) + if dropped: + print(f"\nREFUSING TO DROP {len(dropped)} shipped names: " + f"{', '.join(dropped)}", file=sys.stderr) + return 1 + total = 0 for api_suffix, folder in STYLES: - total += fetch_style(bases, api_suffix, folder) - generate_dart(bases) - print(f"\nDone. {total:,} SVGs, {len(bases):,} Dart constants.") + total += fetch_style(to_download, api_suffix, folder) + generate_dart(to_download, legacy) + print(f"\nDone. {total:,} SVGs, {len(to_download):,} Dart constants, " + f"{len(legacy):,} deprecated aliases.") return 0