@coyalabs/bts-style 1.0.8 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/Base/BaseContainer.svelte +85 -0
  2. package/dist/{BaseContainer.svelte.d.ts → Base/BaseContainer.svelte.d.ts} +12 -2
  3. package/dist/Base/BaseIcon.svelte +42 -0
  4. package/dist/Base/BaseIcon.svelte.d.ts +30 -0
  5. package/dist/Base/BasePage.svelte +73 -0
  6. package/dist/Base/BasePage.svelte.d.ts +37 -0
  7. package/dist/{Text.svelte → Base/BaseText.svelte} +9 -11
  8. package/dist/{Text.svelte.d.ts → Base/BaseText.svelte.d.ts} +5 -3
  9. package/dist/Components/Button.svelte +151 -0
  10. package/dist/Components/Button.svelte.d.ts +65 -0
  11. package/dist/Components/Dropdown.svelte +191 -0
  12. package/dist/Components/Dropdown.svelte.d.ts +54 -0
  13. package/dist/Components/IconButton.svelte +44 -0
  14. package/dist/Components/IconButton.svelte.d.ts +34 -0
  15. package/dist/Components/InputBox.svelte +103 -0
  16. package/dist/Components/InputBox.svelte.d.ts +56 -0
  17. package/dist/Components/Popup/AlertPopup.svelte +27 -0
  18. package/dist/Components/Popup/AlertPopup.svelte.d.ts +28 -0
  19. package/dist/Components/Popup/ConfirmPopup.svelte +39 -0
  20. package/dist/Components/Popup/ConfirmPopup.svelte.d.ts +32 -0
  21. package/dist/Components/Popup/Popup.svelte +67 -0
  22. package/dist/{BasePage.svelte.d.ts → Components/Popup/Popup.svelte.d.ts} +15 -9
  23. package/dist/Components/Popup/PromptPopup.svelte +61 -0
  24. package/dist/Components/Popup/PromptPopup.svelte.d.ts +36 -0
  25. package/dist/Components/Separator.svelte +63 -0
  26. package/dist/Components/Separator.svelte.d.ts +30 -0
  27. package/dist/Components/Special/SpecialAction.svelte +46 -0
  28. package/dist/Components/Special/SpecialAction.svelte.d.ts +32 -0
  29. package/dist/Components/Special/SpecialParagraph.svelte +159 -0
  30. package/dist/Components/Special/SpecialParagraph.svelte.d.ts +52 -0
  31. package/dist/Components/TabBar.svelte +128 -0
  32. package/dist/Components/TabBar.svelte.d.ts +40 -0
  33. package/dist/Components/Toggle.svelte +59 -0
  34. package/dist/{Testing.svelte.d.ts → Components/Toggle.svelte.d.ts} +5 -9
  35. package/dist/Components/Tooltip.svelte +132 -0
  36. package/dist/Components/Tooltip.svelte.d.ts +28 -0
  37. package/dist/Components/TreeDirectory.svelte +148 -0
  38. package/dist/Components/TreeDirectory.svelte.d.ts +58 -0
  39. package/dist/Components/popupStore.d.ts +31 -0
  40. package/dist/Components/popupStore.js +99 -0
  41. package/dist/Structure/BG/AssetGear.d.ts +2 -0
  42. package/dist/Structure/BG/AssetGear.js +2 -0
  43. package/dist/Structure/BG/BGChain.svelte +188 -0
  44. package/dist/Structure/BG/BGChain.svelte.d.ts +36 -0
  45. package/dist/Structure/BG/BGDetails.svelte +130 -0
  46. package/dist/Structure/BG/BGDetails.svelte.d.ts +36 -0
  47. package/dist/Structure/BG/BGGears.svelte +188 -0
  48. package/dist/Structure/BG/BGGears.svelte.d.ts +38 -0
  49. package/dist/Structure/TextHeader.svelte +32 -0
  50. package/dist/Structure/TextHeader.svelte.d.ts +28 -0
  51. package/dist/icons.d.ts +11 -0
  52. package/dist/icons.js +11 -0
  53. package/dist/index.d.ts +25 -3
  54. package/dist/index.js +30 -3
  55. package/package.json +2 -1
  56. package/public/favicon.png +0 -0
  57. package/README.md +0 -35
  58. package/dist/BaseContainer.svelte +0 -43
  59. package/dist/BasePage.svelte +0 -30
  60. package/dist/Testing.svelte +0 -26
@@ -0,0 +1,59 @@
1
+ <script>
2
+ /**
3
+ * @type {boolean}
4
+ */
5
+ export let checked = false;
6
+
7
+ function toggle() {
8
+ checked = !checked;
9
+ }
10
+ </script>
11
+
12
+ <button class="toggle" class:checked on:click={toggle} aria-label="Toggle switch">
13
+ <div class="pill"></div>
14
+ </button>
15
+
16
+ <style>
17
+ .toggle {
18
+ all: unset;
19
+ cursor: pointer;
20
+ position: relative;
21
+ width: 50px;
22
+ height: 25px;
23
+ border-radius: 25px;
24
+ border: 2px solid rgba(255, 255, 255, 0.13);
25
+ box-sizing: border-box;
26
+ transition: all 0.3s ease;
27
+ user-select: none;
28
+ -webkit-user-select: none;
29
+ }
30
+
31
+ /* Off state */
32
+ .toggle {
33
+ background: rgba(121, 92, 105, 0.25);
34
+ box-shadow: inset 0px 0px 9px 2px rgba(102, 88, 128, 0.48);
35
+ }
36
+
37
+ /* On state */
38
+ .toggle.checked {
39
+ background: #ffa1cb6c;
40
+ box-shadow:
41
+ 0px 0px 13px 0px rgba(255, 255, 255, 0.07),
42
+ inset 0px 0px 9px 2px rgba(193, 182, 212, 0.5);
43
+ }
44
+
45
+ .pill {
46
+ position: absolute;
47
+ width: calc(50% - 4px);
48
+ height: calc(100% - 4px);
49
+ background: #FFEFF6;
50
+ border-radius: 25px;
51
+ top: 2px;
52
+ left: 2px;
53
+ transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
54
+ }
55
+
56
+ .toggle.checked .pill {
57
+ transform: translateX(calc(100% + 4px));
58
+ }
59
+ </style>
@@ -1,18 +1,14 @@
1
- export default Testing;
2
- type Testing = SvelteComponent<{
3
- name?: string | undefined;
1
+ export default Toggle;
2
+ type Toggle = SvelteComponent<{
3
+ checked?: boolean | undefined;
4
4
  }, {
5
- ping: CustomEvent<any>;
6
- } & {
7
5
  [evt: string]: CustomEvent<any>;
8
6
  }, {}> & {
9
7
  $$bindings?: string | undefined;
10
8
  };
11
- declare const Testing: $$__sveltets_2_IsomorphicComponent<{
12
- name?: string | undefined;
9
+ declare const Toggle: $$__sveltets_2_IsomorphicComponent<{
10
+ checked?: boolean | undefined;
13
11
  }, {
14
- ping: CustomEvent<any>;
15
- } & {
16
12
  [evt: string]: CustomEvent<any>;
17
13
  }, {}, {}, string>;
18
14
  interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
@@ -0,0 +1,132 @@
1
+ <script>
2
+ import BaseContainer from '../Base/BaseContainer.svelte';
3
+ import BaseIcon from '../Base/BaseIcon.svelte';
4
+ import BaseText from '../Base/BaseText.svelte';
5
+ import { icons } from '../icons.js';
6
+ /**
7
+ * @type {string}
8
+ */
9
+ export let text;
10
+
11
+ /**
12
+ * @type {string}
13
+ */
14
+ export let iconSize = '12px';
15
+
16
+ let showTooltip = false;
17
+ /**
18
+ * @type {HTMLDivElement}
19
+ */
20
+ let tooltipElement;
21
+ /**
22
+ * @type {HTMLDivElement}
23
+ */
24
+ let iconElement;
25
+ let positionBelow = false;
26
+
27
+ function handleMouseEnter() {
28
+ showTooltip = true;
29
+
30
+ // Check position after tooltip is rendered
31
+ setTimeout(() => {
32
+ if (tooltipElement && iconElement) {
33
+ const iconRect = iconElement.getBoundingClientRect();
34
+ const tooltipRect = tooltipElement.getBoundingClientRect();
35
+
36
+ // Check if there's enough space above
37
+ const spaceAbove = iconRect.top;
38
+ const spaceBelow = window.innerHeight - iconRect.bottom;
39
+
40
+ positionBelow = spaceAbove < tooltipRect.height + 10;
41
+ }
42
+ }, 0);
43
+ }
44
+
45
+ function handleMouseLeave() {
46
+ showTooltip = false;
47
+ }
48
+ </script>
49
+
50
+ <div class="tooltip-wrapper">
51
+ <div
52
+ class="icon-trigger"
53
+ bind:this={iconElement}
54
+ on:mouseenter={handleMouseEnter}
55
+ on:mouseleave={handleMouseLeave}
56
+ role="tooltip"
57
+ >
58
+ <BaseIcon variant="toned" svg={icons.help} size={iconSize} />
59
+ </div>
60
+
61
+ {#if showTooltip}
62
+ <div
63
+ class="tooltip"
64
+ class:below={positionBelow}
65
+ bind:this={tooltipElement}
66
+ >
67
+ <BaseContainer theme="filled" padding="0.75rem" borderRadiusTopLeft="15px" borderRadiusTopRight="15px" borderRadiusBottomLeft="15px" borderRadiusBottomRight="15px">
68
+ <BaseText textModifier="-5px">{text}</BaseText>
69
+ </BaseContainer>
70
+ </div>
71
+ {/if}
72
+ </div>
73
+
74
+ <style>
75
+ .tooltip-wrapper {
76
+ position: relative;
77
+ display: inline-flex;
78
+ }
79
+
80
+ .icon-trigger {
81
+ cursor: help;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ padding: 8px;
86
+ margin: -8px;
87
+ }
88
+
89
+ .tooltip {
90
+ position: absolute;
91
+ bottom: calc(100% + 8px);
92
+ left: 50%;
93
+ transform: translateX(-50%);
94
+ min-width: 150px;
95
+ max-width: 500px;
96
+ white-space: normal;
97
+ z-index: 10000;
98
+ pointer-events: none;
99
+ animation: fadeIn 0.2s ease;
100
+ }
101
+
102
+ .tooltip.below {
103
+ bottom: auto;
104
+ top: calc(100% + 8px);
105
+ }
106
+
107
+ @keyframes fadeIn {
108
+ from {
109
+ opacity: 0;
110
+ transform: translateX(-50%) translateY(-5px);
111
+ }
112
+ to {
113
+ opacity: 1;
114
+ transform: translateX(-50%) translateY(0);
115
+ }
116
+ }
117
+
118
+ .tooltip.below {
119
+ animation: fadeInBelow 0.2s ease;
120
+ }
121
+
122
+ @keyframes fadeInBelow {
123
+ from {
124
+ opacity: 0;
125
+ transform: translateX(-50%) translateY(5px);
126
+ }
127
+ to {
128
+ opacity: 1;
129
+ transform: translateX(-50%) translateY(0);
130
+ }
131
+ }
132
+ </style>
@@ -0,0 +1,28 @@
1
+ export default Tooltip;
2
+ type Tooltip = SvelteComponent<{
3
+ text: string;
4
+ iconSize?: string | undefined;
5
+ }, {
6
+ [evt: string]: CustomEvent<any>;
7
+ }, {}> & {
8
+ $$bindings?: string | undefined;
9
+ };
10
+ declare const Tooltip: $$__sveltets_2_IsomorphicComponent<{
11
+ text: string;
12
+ iconSize?: string | undefined;
13
+ }, {
14
+ [evt: string]: CustomEvent<any>;
15
+ }, {}, {}, string>;
16
+ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
17
+ new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
18
+ $$bindings?: Bindings;
19
+ } & Exports;
20
+ (internal: unknown, props: Props & {
21
+ $$events?: Events;
22
+ $$slots?: Slots;
23
+ }): Exports & {
24
+ $set?: any;
25
+ $on?: any;
26
+ };
27
+ z_$$bindings?: Bindings;
28
+ }
@@ -0,0 +1,148 @@
1
+ <script>
2
+ import { slide } from 'svelte/transition';
3
+ import Button from './Button.svelte';
4
+ import { icons } from '../icons.js';
5
+
6
+ /** @type {{ name: string, type: 'file' | 'folder', children?: any[] }[]} */
7
+ export let items = [];
8
+
9
+ /** @type {boolean} */
10
+ export let showCount = true;
11
+
12
+ /** @type {string | null} */
13
+ export let itemIcon = null;
14
+
15
+ /** @type {number} */
16
+ export let level = 0;
17
+
18
+ let expanded = new Set();
19
+
20
+ /**
21
+ * @param {string} id
22
+ */
23
+ function toggle(id) {
24
+ if (expanded.has(id)) expanded.delete(id);
25
+ else expanded.add(id);
26
+ expanded = expanded;
27
+ }
28
+
29
+ /**
30
+ * Get the current expanded state
31
+ * @returns {string[]}
32
+ */
33
+ export function getState() {
34
+ return Array.from(expanded);
35
+ }
36
+
37
+ /**
38
+ * Set the expanded state
39
+ * @param {string[]} state
40
+ */
41
+ export function setState(state) {
42
+ expanded = new Set(state);
43
+ }
44
+
45
+ /**
46
+ * Expand all folders
47
+ */
48
+ export function expandAll() {
49
+ /** @type {string[]} */
50
+ const allIds = [];
51
+ /**
52
+ * @param {any[]} items
53
+ * @param {number} lvl
54
+ */
55
+ function collectIds(items, lvl) {
56
+ items.forEach((/** @type {any} */ item, /** @type {number} */ i) => {
57
+ if (item.type === 'folder') {
58
+ const id = `${lvl}-${i}`;
59
+ allIds.push(id);
60
+ if (item.children) collectIds(item.children, lvl + 1);
61
+ }
62
+ });
63
+ }
64
+ collectIds(items, level);
65
+ expanded = new Set(allIds);
66
+ }
67
+
68
+ /**
69
+ * Collapse all folders
70
+ */
71
+ export function collapseAll() {
72
+ expanded = new Set();
73
+ }
74
+
75
+ /**
76
+ * Count total items recursively in a folder
77
+ * @param {any[]} children
78
+ * @returns {number}
79
+ */
80
+ function countItems(children) {
81
+ if (!children) return 0;
82
+ let count = 0;
83
+ children.forEach((/** @type {any} */ child) => {
84
+ count++;
85
+ if (child.type === 'folder' && child.children) {
86
+ count += countItems(child.children);
87
+ }
88
+ });
89
+ return count;
90
+ }
91
+ </script>
92
+
93
+ <div class="tree" style="padding-left: {level === 0 ? level * 30 : level * 20}px;">
94
+ {#each items as item, i}
95
+ {@const id = `${level}-${i}`}
96
+ {@const open = expanded.has(id)}
97
+ {@const isLast = i === items.length - 1}
98
+ {@const isNested = level > 0}
99
+
100
+ {#if item.type === 'folder'}
101
+ <div class="folder" on:click={() => toggle(id)} on:keydown={() => {}} role="button" tabindex="0">
102
+ <Button
103
+ theme="primary"
104
+ icon={icons.folder}
105
+ actionIcon={icons.icon_expand}
106
+ actionIconSize="15px"
107
+ actionIconRotation={open ? 0 : -90}
108
+ borderRadiusTopLeft={isNested ? '15px' : '25px'}
109
+ borderRadiusTopRight={isNested ? '15px' : '25px'}
110
+ borderRadiusBottomRight="15px"
111
+ >
112
+ {item.name}{#if showCount && item.children} <span class="count">({countItems(item.children)})</span>{/if}
113
+ </Button>
114
+ </div>
115
+ {#if open && item.children}
116
+ <div transition:slide={{ duration: 150 }}>
117
+ <svelte:self items={item.children} {showCount} {itemIcon} level={level + 1} />
118
+ </div>
119
+ {/if}
120
+ {:else}
121
+ <Button
122
+ theme="secondary"
123
+ icon={itemIcon}
124
+ borderRadiusTopLeft={isNested ? '15px' : '25px'}
125
+ borderRadiusTopRight={isNested ? '15px' : '25px'}
126
+ borderRadiusBottomLeft={isNested && !isLast ? '15px' : '25px'}
127
+ borderRadiusBottomRight={isNested && !isLast ? '15px' : '25px'}
128
+ >
129
+ {item.name}
130
+ </Button>
131
+ {/if}
132
+ {/each}
133
+ </div>
134
+
135
+ <style>
136
+ .tree {
137
+ display: flex;
138
+ flex-direction: column;
139
+ gap: 8px;
140
+ }
141
+ .folder {
142
+ cursor: pointer;
143
+ }
144
+ .folder :global(.count) {
145
+ margin-left: 5px;
146
+ opacity: 0.5;
147
+ }
148
+ </style>
@@ -0,0 +1,58 @@
1
+ export default TreeDirectory;
2
+ type TreeDirectory = SvelteComponent<{
3
+ items?: {
4
+ name: string;
5
+ type: "file" | "folder";
6
+ children?: any[] | undefined;
7
+ }[] | undefined;
8
+ showCount?: boolean | undefined;
9
+ itemIcon?: string | null | undefined;
10
+ level?: number | undefined;
11
+ getState?: (() => string[]) | undefined;
12
+ setState?: ((state: string[]) => void) | undefined;
13
+ expandAll?: (() => void) | undefined;
14
+ collapseAll?: (() => void) | undefined;
15
+ }, {
16
+ [evt: string]: CustomEvent<any>;
17
+ }, {}> & {
18
+ $$bindings?: string | undefined;
19
+ } & {
20
+ getState: () => string[];
21
+ setState: (state: string[]) => void;
22
+ expandAll: () => void;
23
+ collapseAll: () => void;
24
+ };
25
+ declare const TreeDirectory: $$__sveltets_2_IsomorphicComponent<{
26
+ items?: {
27
+ name: string;
28
+ type: "file" | "folder";
29
+ children?: any[];
30
+ }[] | undefined;
31
+ showCount?: boolean | undefined;
32
+ itemIcon?: string | null | undefined;
33
+ level?: number | undefined;
34
+ getState?: (() => string[]) | undefined;
35
+ setState?: ((state: string[]) => void) | undefined;
36
+ expandAll?: (() => void) | undefined;
37
+ collapseAll?: (() => void) | undefined;
38
+ }, {
39
+ [evt: string]: CustomEvent<any>;
40
+ }, {}, {
41
+ getState: () => string[];
42
+ setState: (state: string[]) => void;
43
+ expandAll: () => void;
44
+ collapseAll: () => void;
45
+ }, string>;
46
+ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
47
+ new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
48
+ $$bindings?: Bindings;
49
+ } & Exports;
50
+ (internal: unknown, props: Props & {
51
+ $$events?: Events;
52
+ $$slots?: Slots;
53
+ }): Exports & {
54
+ $set?: any;
55
+ $on?: any;
56
+ };
57
+ z_$$bindings?: Bindings;
58
+ }
@@ -0,0 +1,31 @@
1
+ export namespace popupStore {
2
+ export { subscribe };
3
+ export function open(title: any, component: any, props?: {}, subtitle?: string): void;
4
+ export function close(): void;
5
+ export function confirm(title: string, message: string, options?: {
6
+ onConfirm?: (() => void) | undefined;
7
+ onCancel?: (() => void) | undefined;
8
+ confirmText?: string | undefined;
9
+ cancelText?: string | undefined;
10
+ }): void;
11
+ export function alert(title: string, message: string, options?: {
12
+ onOk?: (() => void) | undefined;
13
+ okText?: string | undefined;
14
+ }): void;
15
+ export function prompt(title: string, message: string, options?: {
16
+ onSubmit?: ((value: string) => void) | undefined;
17
+ onCancel?: (() => void) | undefined;
18
+ placeholder?: string | undefined;
19
+ submitText?: string | undefined;
20
+ cancelText?: string | undefined;
21
+ label?: string | undefined;
22
+ }): void;
23
+ }
24
+ declare const subscribe: (this: void, run: import("svelte/store").Subscriber<{
25
+ isOpen: boolean;
26
+ title: string;
27
+ subtitle?: string;
28
+ component: any;
29
+ props: any;
30
+ }>, invalidate?: () => void) => import("svelte/store").Unsubscriber;
31
+ export {};
@@ -0,0 +1,99 @@
1
+ import { writable } from 'svelte/store';
2
+ import ConfirmPopup from './Popup/ConfirmPopup.svelte';
3
+ import AlertPopup from './Popup/AlertPopup.svelte';
4
+ import PromptPopup from './Popup/PromptPopup.svelte';
5
+
6
+ function createPopupStore() {
7
+ /** @type {import('svelte/store').Writable<{isOpen: boolean, title: string, subtitle?: string, component: any, props: any}>} */
8
+ const { subscribe, set, update } = writable({
9
+ isOpen: false,
10
+ title: '',
11
+ subtitle: '',
12
+ component: /** @type {any} */ (null),
13
+ props: {}
14
+ });
15
+
16
+ return {
17
+ subscribe,
18
+ open: (/** @type {any} */ title, /** @type {any} */ component, props = {}, subtitle = '') => {
19
+ set({
20
+ isOpen: true,
21
+ title,
22
+ subtitle,
23
+ component,
24
+ props
25
+ });
26
+ },
27
+ close: () => {
28
+ set({
29
+ isOpen: false,
30
+ title: '',
31
+ subtitle: '',
32
+ component: null,
33
+ props: {}
34
+ });
35
+ },
36
+
37
+ /**
38
+ * Show a confirmation popup with two buttons
39
+ * @param {string} title
40
+ * @param {string} message
41
+ * @param {Object} options
42
+ * @param {() => void} [options.onConfirm]
43
+ * @param {() => void} [options.onCancel]
44
+ * @param {string} [options.confirmText]
45
+ * @param {string} [options.cancelText]
46
+ */
47
+ confirm: (title, message, options = {}) => {
48
+ set({
49
+ isOpen: true,
50
+ title,
51
+ subtitle: message,
52
+ component: ConfirmPopup,
53
+ props: options
54
+ });
55
+ },
56
+
57
+ /**
58
+ * Show an alert popup with one button
59
+ * @param {string} title
60
+ * @param {string} message
61
+ * @param {Object} options
62
+ * @param {() => void} [options.onOk]
63
+ * @param {string} [options.okText]
64
+ */
65
+ alert: (title, message, options = {}) => {
66
+ set({
67
+ isOpen: true,
68
+ title,
69
+ subtitle: message,
70
+ component: AlertPopup,
71
+ props: options
72
+ });
73
+ },
74
+
75
+ /**
76
+ * Show a prompt popup with input field
77
+ * @param {string} title
78
+ * @param {string} message
79
+ * @param {Object} options
80
+ * @param {(value: string) => void} [options.onSubmit]
81
+ * @param {() => void} [options.onCancel]
82
+ * @param {string} [options.placeholder]
83
+ * @param {string} [options.submitText]
84
+ * @param {string} [options.cancelText]
85
+ * @param {string} [options.label]
86
+ */
87
+ prompt: (title, message, options = {}) => {
88
+ set({
89
+ isOpen: true,
90
+ title,
91
+ subtitle: message,
92
+ component: PromptPopup,
93
+ props: options
94
+ });
95
+ }
96
+ };
97
+ }
98
+
99
+ export const popupStore = createPopupStore();
@@ -0,0 +1,2 @@
1
+ export const gearSVGDark: "<svg width=\"220\" height=\"215\" viewBox=\"0 0 220 215\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_2265_239)\"><path d=\"M118.931 35.6283C119.659 34.1799 121.114 33.4554 122.901 33.7185C124.554 33.982 125.745 35.233 125.943 36.9449L127.135 44.9114C130.376 45.8332 133.617 46.9532 136.793 48.3358L142.748 43.1339C144.004 41.8171 145.592 41.6854 147.246 42.5414C148.701 43.3316 149.297 44.9115 148.966 46.689L147.312 54.5248C150.024 56.4339 152.737 58.6722 155.184 60.9768L162.594 58.0142C164.248 57.2897 165.77 57.6851 167.027 59.1993C168.152 60.3845 168.282 62.0966 167.357 63.4792L163.057 70.3264C165.042 73.0918 166.63 76.0544 168.152 79.2149L176.222 78.8859C177.942 78.8201 179.397 79.742 179.993 81.3878C180.521 83.0336 179.993 84.5478 178.603 85.5356L172.319 90.6053C173.179 93.8318 173.841 97.1234 174.105 100.679L181.779 103.116C183.433 103.708 184.491 104.959 184.491 106.671C184.491 108.448 183.433 109.7 181.779 110.292L174.105 112.662C173.841 116.218 173.179 119.641 172.319 122.802L178.603 127.806C179.993 128.859 180.521 130.439 179.993 132.086C179.397 133.732 177.942 134.653 176.222 134.587L168.152 134.192C166.63 137.352 165.042 140.315 163.057 143.081L167.357 149.928C168.282 151.376 168.152 153.088 167.027 154.274C165.77 155.788 164.248 156.117 162.594 155.459L155.184 152.365C152.737 154.801 150.024 156.973 147.312 158.882L148.966 166.783C149.297 168.495 148.701 170.076 147.246 170.865C145.592 171.787 144.004 171.524 142.748 170.339L136.793 165.005C133.617 166.388 130.376 167.64 127.135 168.496L125.943 176.462C125.745 178.24 124.554 179.425 122.901 179.755C121.114 180.017 119.659 179.227 118.931 177.779L115.094 170.536C113.308 170.668 111.72 170.865 110 170.865C108.214 170.865 106.56 170.668 104.773 170.536L101.003 177.779C100.275 179.227 98.8202 180.018 96.9675 179.755C95.3133 179.425 94.1894 178.24 93.9246 176.462L92.7999 168.496C89.4922 167.64 86.2508 166.388 83.0751 165.005L77.187 170.339C75.9298 171.524 74.3418 171.787 72.6881 170.865C71.2328 170.076 70.6378 168.495 70.9685 166.783L72.6217 158.882C69.8435 156.973 67.131 154.801 64.683 152.365L57.3399 155.459C55.686 156.117 54.0986 155.788 52.8418 154.274C51.7172 153.088 51.5848 151.376 52.5772 149.928L56.8107 143.081C54.8923 140.315 53.3048 137.352 51.7834 134.192L43.6457 134.587C41.9261 134.653 40.4707 133.732 39.9414 132.086C39.4121 130.439 39.8752 128.859 41.2644 127.806L47.6154 122.802C46.7554 119.641 46.028 116.218 45.8296 112.728L38.1547 110.292C36.4347 109.7 35.5088 108.448 35.5088 106.671C35.5088 104.892 36.4349 103.642 38.1547 103.116L45.8296 100.679C46.028 97.1234 46.7553 93.8318 47.6154 90.6053L41.2644 85.5356C39.8752 84.5478 39.4122 83.0336 39.9414 81.3878C40.4706 79.742 41.926 78.8201 43.6457 78.8859L51.7834 79.2149C53.3048 76.0544 54.8925 73.0918 56.877 70.3264L52.5109 63.4127C51.6509 62.096 51.7836 60.3844 52.8418 59.1993C54.0986 57.6852 55.686 57.2898 57.3399 58.0142L64.683 60.9768C67.131 58.6723 69.8435 56.4339 72.6217 54.5248L70.9685 46.689C70.6378 44.9116 71.233 43.3316 72.6881 42.5414C74.2757 41.6854 75.8637 41.817 77.187 43.1339L83.1407 48.3358C86.2501 46.9532 89.4922 45.8332 92.7999 44.8457L93.9246 36.9449C94.1894 35.2331 95.3133 33.982 96.9675 33.7185C98.8202 33.4554 100.275 34.1799 101.003 35.6283L104.773 42.8708C106.626 42.7392 108.214 42.6071 110 42.6071C111.72 42.6071 113.308 42.7392 115.094 42.8708L118.931 35.6283ZM110.386 64.2705C86.9378 64.2705 67.9298 83.1109 67.9298 106.352C67.9299 129.594 86.9378 148.434 110.386 148.434C133.834 148.434 152.842 129.594 152.842 106.352C152.842 83.1109 133.834 64.2705 110.386 64.2705Z\" fill=\"#130F15\"/><path d=\"M110 201.849C112.54 201.849 114.885 201.559 117.522 201.365L123.188 212.021C124.263 214.151 126.412 215.314 129.05 214.927C131.492 214.441 133.251 212.699 133.544 210.083L135.302 198.362C140.089 197.103 144.876 195.263 149.565 193.228L158.358 201.074C160.213 202.818 162.558 203.206 165 201.849C167.15 200.687 168.028 198.362 167.54 195.844L165.098 184.22C169.103 181.41 173.108 178.214 176.723 174.631L187.665 179.183C190.107 180.152 192.354 179.667 194.211 177.439C195.872 175.696 196.066 173.177 194.699 171.046L188.349 160.972C191.28 156.904 193.625 152.544 195.872 147.896L207.79 148.476C210.328 148.573 212.478 147.218 213.358 144.796C214.138 142.374 213.358 140.049 211.305 138.499L202.026 131.138C203.296 126.488 204.273 121.451 204.663 116.22L215.994 112.733C218.438 111.861 220 110.021 220 107.406C220 104.887 218.438 103.046 215.994 102.175L204.663 98.5901C204.273 93.3597 203.296 88.5165 202.026 83.7704L211.305 76.3119C213.358 74.8588 214.138 72.6307 213.358 70.2092C212.478 67.7874 210.328 66.4313 207.79 66.528L195.872 67.0128C193.625 62.3629 191.28 58.0042 188.349 53.9359L194.699 43.8618C196.066 41.8276 195.872 39.309 194.211 37.5652C192.354 35.3377 190.107 34.7561 187.665 35.822L176.723 40.181C173.108 36.7903 169.103 33.4969 165.098 30.6881L167.54 19.1609C168.028 16.5456 167.15 14.2208 165 13.0582C162.558 11.7989 160.213 11.9928 158.358 13.9303L149.565 21.5828C144.876 19.5486 140.089 17.9016 135.302 16.5456L133.544 4.82504C133.251 2.30643 131.492 0.466035 129.05 0.0783659C126.412 -0.30889 124.263 0.756579 123.188 2.88752L117.522 13.543C114.885 13.3492 112.54 13.1554 110 13.1554C107.362 13.1554 105.018 13.3492 102.283 13.543L96.7143 2.88752C95.6398 0.756579 93.4907 -0.30889 90.755 0.0783659C88.3126 0.466035 86.6522 2.30643 86.2608 4.82504L84.6004 16.4489C79.7156 17.9016 74.9292 19.5486 70.3376 21.5828L61.5457 13.9303C59.5917 11.9928 57.2471 11.7989 54.9024 13.0582C52.7534 14.2208 51.8739 16.5456 52.3624 19.1609L54.8045 30.6881C50.7018 33.4969 46.6967 36.7903 43.0816 40.181L32.2382 35.822C29.7956 34.7561 27.4511 35.3377 25.595 37.5652C24.0323 39.309 23.8368 41.8276 25.1069 43.7647L31.5542 53.9359C28.6235 58.0042 26.279 62.3629 24.0323 67.0128L12.0159 66.528C9.47629 66.4313 7.32678 67.7874 6.54525 70.2092C5.76372 72.6307 6.44771 74.8588 8.49926 76.3119L17.8776 83.7704C16.6076 88.5165 15.533 93.3597 15.24 98.5901L3.90764 102.175C1.36757 102.95 0 104.79 0 107.406C0 110.021 1.36757 111.861 3.90764 112.733L15.24 116.317C15.533 121.451 16.6076 126.488 17.8776 131.138L8.49926 138.499C6.44771 140.049 5.76372 142.374 6.54525 144.796C7.32678 147.218 9.47629 148.573 12.0159 148.476L24.0323 147.896C26.279 152.544 28.6235 156.904 31.4566 160.972L25.2044 171.046C23.7388 173.177 23.9344 175.696 25.595 177.439C27.4511 179.667 29.7956 180.152 32.2382 179.183L43.0816 174.631C46.6967 178.214 50.7018 181.41 54.8045 184.22L52.3624 195.844C51.8739 198.362 52.7534 200.687 54.9024 201.849C57.3446 203.206 59.6892 202.818 61.5457 201.074L70.2401 193.228C74.9292 195.263 79.7156 197.103 84.6004 198.362L86.2608 210.083C86.6522 212.699 88.3126 214.441 90.755 214.927C93.4907 215.314 95.6398 214.151 96.7143 212.021L102.283 201.365C104.92 201.559 107.362 201.849 110 201.849ZM134.521 101.303C129.929 89.098 120.942 82.4139 109.707 82.4139C108.046 82.4139 106.092 82.6082 102.967 83.2861L74.9292 35.822C85.3824 30.6881 97.3002 27.8789 110 27.8789C152.594 27.8789 186.003 59.9414 189.032 101.303H134.521ZM30.6751 107.502C30.6751 80.5737 43.4725 56.8416 63.6948 42.5058L91.9276 90.2602C86.6522 95.685 84.2098 101.593 84.2098 107.889C84.2098 113.992 86.5549 119.61 91.9276 125.229L63.0108 172.112C43.2771 157.678 30.6751 134.237 30.6751 107.502ZM97.9841 107.793C97.9841 101.206 103.65 96.0721 109.903 96.0721C116.546 96.0721 122.017 101.206 122.017 107.793C122.017 114.283 116.546 119.61 109.903 119.61C103.65 119.61 97.9841 114.283 97.9841 107.793ZM110 187.126C97.0076 187.126 84.8937 184.123 74.2452 178.892L102.967 132.3C105.994 133.075 108.046 133.269 109.707 133.269C121.039 133.269 130.027 126.391 134.521 113.896H189.032C185.906 155.063 152.496 187.126 110 187.126Z\" fill=\"#0F0B11\"/></g><defs><clipPath id=\"clip0_2265_239\"><rect width=\"220\" height=\"215\" fill=\"white\"/></clipPath></defs></svg>";
2
+ export const gearSVGLight: "<svg width=\"220\" height=\"215\" viewBox=\"0 0 220 215\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0_2265_255)\"><path d=\"M118.931 35.6283C119.659 34.1799 121.114 33.4554 122.901 33.7185C124.554 33.982 125.745 35.233 125.943 36.9449L127.135 44.9114C130.376 45.8332 133.617 46.9532 136.793 48.3358L142.748 43.1339C144.004 41.8171 145.592 41.6854 147.246 42.5414C148.701 43.3316 149.297 44.9115 148.966 46.689L147.312 54.5248C150.024 56.4339 152.737 58.6722 155.184 60.9768L162.594 58.0142C164.248 57.2897 165.77 57.6851 167.027 59.1993C168.152 60.3845 168.282 62.0966 167.357 63.4792L163.057 70.3264C165.042 73.0918 166.63 76.0544 168.152 79.2149L176.222 78.8859C177.942 78.8201 179.397 79.742 179.993 81.3878C180.521 83.0336 179.993 84.5478 178.603 85.5356L172.319 90.6053C173.179 93.8318 173.841 97.1234 174.105 100.679L181.779 103.116C183.433 103.708 184.491 104.959 184.491 106.671C184.491 108.448 183.433 109.7 181.779 110.292L174.105 112.662C173.841 116.218 173.179 119.641 172.319 122.802L178.603 127.806C179.993 128.859 180.521 130.439 179.993 132.086C179.397 133.732 177.942 134.653 176.222 134.587L168.152 134.192C166.63 137.352 165.042 140.315 163.057 143.081L167.357 149.928C168.282 151.376 168.152 153.088 167.027 154.274C165.77 155.788 164.248 156.117 162.594 155.459L155.184 152.365C152.737 154.801 150.024 156.973 147.312 158.882L148.966 166.783C149.297 168.495 148.701 170.076 147.246 170.865C145.592 171.787 144.004 171.524 142.748 170.339L136.793 165.005C133.617 166.388 130.376 167.64 127.135 168.496L125.943 176.462C125.745 178.24 124.554 179.425 122.901 179.755C121.114 180.017 119.659 179.227 118.931 177.779L115.094 170.536C113.308 170.668 111.72 170.865 110 170.865C108.214 170.865 106.56 170.668 104.773 170.536L101.003 177.779C100.275 179.227 98.8202 180.018 96.9675 179.755C95.3133 179.425 94.1894 178.24 93.9246 176.462L92.7999 168.496C89.4922 167.64 86.2508 166.388 83.0751 165.005L77.187 170.339C75.9298 171.524 74.3418 171.787 72.6881 170.865C71.2328 170.076 70.6378 168.495 70.9685 166.783L72.6217 158.882C69.8435 156.973 67.131 154.801 64.683 152.365L57.3399 155.459C55.686 156.117 54.0986 155.788 52.8418 154.274C51.7172 153.088 51.5848 151.376 52.5772 149.928L56.8107 143.081C54.8923 140.315 53.3048 137.352 51.7834 134.192L43.6457 134.587C41.9261 134.653 40.4707 133.732 39.9414 132.086C39.4121 130.439 39.8752 128.859 41.2644 127.806L47.6154 122.802C46.7554 119.641 46.028 116.218 45.8296 112.728L38.1547 110.292C36.4347 109.7 35.5088 108.448 35.5088 106.671C35.5088 104.892 36.4349 103.642 38.1547 103.116L45.8296 100.679C46.028 97.1234 46.7553 93.8318 47.6154 90.6053L41.2644 85.5356C39.8752 84.5478 39.4122 83.0336 39.9414 81.3878C40.4706 79.742 41.926 78.8201 43.6457 78.8859L51.7834 79.2149C53.3048 76.0544 54.8925 73.0918 56.877 70.3264L52.5109 63.4127C51.6509 62.096 51.7836 60.3844 52.8418 59.1993C54.0986 57.6852 55.686 57.2898 57.3399 58.0142L64.683 60.9768C67.131 58.6723 69.8435 56.4339 72.6217 54.5248L70.9685 46.689C70.6378 44.9116 71.233 43.3316 72.6881 42.5414C74.2757 41.6854 75.8637 41.817 77.187 43.1339L83.1407 48.3358C86.2501 46.9532 89.4922 45.8332 92.7999 44.8457L93.9246 36.9449C94.1894 35.2331 95.3133 33.982 96.9675 33.7185C98.8202 33.4554 100.275 34.1799 101.003 35.6283L104.773 42.8708C106.626 42.7392 108.214 42.6071 110 42.6071C111.72 42.6071 113.308 42.7392 115.094 42.8708L118.931 35.6283ZM110.386 64.2705C86.9378 64.2705 67.9298 83.1109 67.9298 106.352C67.9299 129.594 86.9378 148.434 110.386 148.434C133.834 148.434 152.842 129.594 152.842 106.352C152.842 83.1109 133.834 64.2705 110.386 64.2705Z\" fill=\"#0F0B11\"/><path d=\"M110 201.849C112.54 201.849 114.885 201.559 117.522 201.365L123.188 212.021C124.263 214.151 126.412 215.314 129.05 214.927C131.492 214.441 133.251 212.699 133.544 210.083L135.302 198.362C140.089 197.103 144.876 195.263 149.565 193.228L158.358 201.074C160.213 202.818 162.558 203.206 165 201.849C167.15 200.687 168.028 198.362 167.54 195.844L165.098 184.22C169.103 181.41 173.108 178.214 176.723 174.631L187.665 179.183C190.107 180.152 192.354 179.667 194.211 177.439C195.872 175.696 196.066 173.177 194.699 171.046L188.349 160.972C191.28 156.904 193.625 152.544 195.872 147.896L207.79 148.476C210.328 148.573 212.478 147.218 213.358 144.796C214.138 142.374 213.358 140.049 211.305 138.499L202.026 131.138C203.296 126.488 204.273 121.451 204.663 116.22L215.994 112.733C218.438 111.861 220 110.021 220 107.406C220 104.887 218.438 103.046 215.994 102.175L204.663 98.5901C204.273 93.3597 203.296 88.5165 202.026 83.7704L211.305 76.3119C213.358 74.8588 214.138 72.6307 213.358 70.2092C212.478 67.7874 210.328 66.4313 207.79 66.528L195.872 67.0128C193.625 62.3629 191.28 58.0042 188.349 53.9359L194.699 43.8618C196.066 41.8276 195.872 39.309 194.211 37.5652C192.354 35.3377 190.107 34.7561 187.665 35.822L176.723 40.181C173.108 36.7903 169.103 33.4969 165.098 30.6881L167.54 19.1609C168.028 16.5456 167.15 14.2208 165 13.0582C162.558 11.7989 160.213 11.9928 158.358 13.9303L149.565 21.5828C144.876 19.5486 140.089 17.9016 135.302 16.5456L133.544 4.82504C133.251 2.30643 131.492 0.466035 129.05 0.0783659C126.412 -0.30889 124.263 0.756579 123.188 2.88752L117.522 13.543C114.885 13.3492 112.54 13.1554 110 13.1554C107.362 13.1554 105.018 13.3492 102.283 13.543L96.7143 2.88752C95.6398 0.756579 93.4907 -0.30889 90.755 0.0783659C88.3126 0.466035 86.6522 2.30643 86.2608 4.82504L84.6004 16.4489C79.7156 17.9016 74.9292 19.5486 70.3376 21.5828L61.5457 13.9303C59.5917 11.9928 57.2471 11.7989 54.9024 13.0582C52.7534 14.2208 51.8739 16.5456 52.3624 19.1609L54.8045 30.6881C50.7018 33.4969 46.6967 36.7903 43.0816 40.181L32.2382 35.822C29.7956 34.7561 27.4511 35.3377 25.595 37.5652C24.0323 39.309 23.8368 41.8276 25.1069 43.7647L31.5542 53.9359C28.6235 58.0042 26.279 62.3629 24.0323 67.0128L12.0159 66.528C9.47629 66.4313 7.32678 67.7874 6.54525 70.2092C5.76372 72.6307 6.44771 74.8588 8.49926 76.3119L17.8776 83.7704C16.6076 88.5165 15.533 93.3597 15.24 98.5901L3.90764 102.175C1.36757 102.95 0 104.79 0 107.406C0 110.021 1.36757 111.861 3.90764 112.733L15.24 116.317C15.533 121.451 16.6076 126.488 17.8776 131.138L8.49926 138.499C6.44771 140.049 5.76372 142.374 6.54525 144.796C7.32678 147.218 9.47629 148.573 12.0159 148.476L24.0323 147.896C26.279 152.544 28.6235 156.904 31.4566 160.972L25.2044 171.046C23.7388 173.177 23.9344 175.696 25.595 177.439C27.4511 179.667 29.7956 180.152 32.2382 179.183L43.0816 174.631C46.6967 178.214 50.7018 181.41 54.8045 184.22L52.3624 195.844C51.8739 198.362 52.7534 200.687 54.9024 201.849C57.3446 203.206 59.6892 202.818 61.5457 201.074L70.2401 193.228C74.9292 195.263 79.7156 197.103 84.6004 198.362L86.2608 210.083C86.6522 212.699 88.3126 214.441 90.755 214.927C93.4907 215.314 95.6398 214.151 96.7143 212.021L102.283 201.365C104.92 201.559 107.362 201.849 110 201.849ZM134.521 101.303C129.929 89.098 120.942 82.4139 109.707 82.4139C108.046 82.4139 106.092 82.6082 102.967 83.2861L74.9292 35.822C85.3824 30.6881 97.3002 27.8789 110 27.8789C152.594 27.8789 186.003 59.9414 189.032 101.303H134.521ZM30.6751 107.502C30.6751 80.5737 43.4725 56.8416 63.6948 42.5058L91.9276 90.2602C86.6522 95.685 84.2098 101.593 84.2098 107.889C84.2098 113.992 86.5549 119.61 91.9276 125.229L63.0108 172.112C43.2771 157.678 30.6751 134.237 30.6751 107.502ZM97.9841 107.793C97.9841 101.206 103.65 96.0721 109.903 96.0721C116.546 96.0721 122.017 101.206 122.017 107.793C122.017 114.283 116.546 119.61 109.903 119.61C103.65 119.61 97.9841 114.283 97.9841 107.793ZM110 187.126C97.0076 187.126 84.8937 184.123 74.2452 178.892L102.967 132.3C105.994 133.075 108.046 133.269 109.707 133.269C121.039 133.269 130.027 126.391 134.521 113.896H189.032C185.906 155.063 152.496 187.126 110 187.126Z\" fill=\"#130F15\"/></g><defs><clipPath id=\"clip0_2265_255\"><rect width=\"220\" height=\"215\" fill=\"white\"/></clipPath></defs></svg>";
@@ -0,0 +1,2 @@
1
+ export const gearSVGDark = '<svg width="220" height="215" viewBox="0 0 220 215" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2265_239)"><path d="M118.931 35.6283C119.659 34.1799 121.114 33.4554 122.901 33.7185C124.554 33.982 125.745 35.233 125.943 36.9449L127.135 44.9114C130.376 45.8332 133.617 46.9532 136.793 48.3358L142.748 43.1339C144.004 41.8171 145.592 41.6854 147.246 42.5414C148.701 43.3316 149.297 44.9115 148.966 46.689L147.312 54.5248C150.024 56.4339 152.737 58.6722 155.184 60.9768L162.594 58.0142C164.248 57.2897 165.77 57.6851 167.027 59.1993C168.152 60.3845 168.282 62.0966 167.357 63.4792L163.057 70.3264C165.042 73.0918 166.63 76.0544 168.152 79.2149L176.222 78.8859C177.942 78.8201 179.397 79.742 179.993 81.3878C180.521 83.0336 179.993 84.5478 178.603 85.5356L172.319 90.6053C173.179 93.8318 173.841 97.1234 174.105 100.679L181.779 103.116C183.433 103.708 184.491 104.959 184.491 106.671C184.491 108.448 183.433 109.7 181.779 110.292L174.105 112.662C173.841 116.218 173.179 119.641 172.319 122.802L178.603 127.806C179.993 128.859 180.521 130.439 179.993 132.086C179.397 133.732 177.942 134.653 176.222 134.587L168.152 134.192C166.63 137.352 165.042 140.315 163.057 143.081L167.357 149.928C168.282 151.376 168.152 153.088 167.027 154.274C165.77 155.788 164.248 156.117 162.594 155.459L155.184 152.365C152.737 154.801 150.024 156.973 147.312 158.882L148.966 166.783C149.297 168.495 148.701 170.076 147.246 170.865C145.592 171.787 144.004 171.524 142.748 170.339L136.793 165.005C133.617 166.388 130.376 167.64 127.135 168.496L125.943 176.462C125.745 178.24 124.554 179.425 122.901 179.755C121.114 180.017 119.659 179.227 118.931 177.779L115.094 170.536C113.308 170.668 111.72 170.865 110 170.865C108.214 170.865 106.56 170.668 104.773 170.536L101.003 177.779C100.275 179.227 98.8202 180.018 96.9675 179.755C95.3133 179.425 94.1894 178.24 93.9246 176.462L92.7999 168.496C89.4922 167.64 86.2508 166.388 83.0751 165.005L77.187 170.339C75.9298 171.524 74.3418 171.787 72.6881 170.865C71.2328 170.076 70.6378 168.495 70.9685 166.783L72.6217 158.882C69.8435 156.973 67.131 154.801 64.683 152.365L57.3399 155.459C55.686 156.117 54.0986 155.788 52.8418 154.274C51.7172 153.088 51.5848 151.376 52.5772 149.928L56.8107 143.081C54.8923 140.315 53.3048 137.352 51.7834 134.192L43.6457 134.587C41.9261 134.653 40.4707 133.732 39.9414 132.086C39.4121 130.439 39.8752 128.859 41.2644 127.806L47.6154 122.802C46.7554 119.641 46.028 116.218 45.8296 112.728L38.1547 110.292C36.4347 109.7 35.5088 108.448 35.5088 106.671C35.5088 104.892 36.4349 103.642 38.1547 103.116L45.8296 100.679C46.028 97.1234 46.7553 93.8318 47.6154 90.6053L41.2644 85.5356C39.8752 84.5478 39.4122 83.0336 39.9414 81.3878C40.4706 79.742 41.926 78.8201 43.6457 78.8859L51.7834 79.2149C53.3048 76.0544 54.8925 73.0918 56.877 70.3264L52.5109 63.4127C51.6509 62.096 51.7836 60.3844 52.8418 59.1993C54.0986 57.6852 55.686 57.2898 57.3399 58.0142L64.683 60.9768C67.131 58.6723 69.8435 56.4339 72.6217 54.5248L70.9685 46.689C70.6378 44.9116 71.233 43.3316 72.6881 42.5414C74.2757 41.6854 75.8637 41.817 77.187 43.1339L83.1407 48.3358C86.2501 46.9532 89.4922 45.8332 92.7999 44.8457L93.9246 36.9449C94.1894 35.2331 95.3133 33.982 96.9675 33.7185C98.8202 33.4554 100.275 34.1799 101.003 35.6283L104.773 42.8708C106.626 42.7392 108.214 42.6071 110 42.6071C111.72 42.6071 113.308 42.7392 115.094 42.8708L118.931 35.6283ZM110.386 64.2705C86.9378 64.2705 67.9298 83.1109 67.9298 106.352C67.9299 129.594 86.9378 148.434 110.386 148.434C133.834 148.434 152.842 129.594 152.842 106.352C152.842 83.1109 133.834 64.2705 110.386 64.2705Z" fill="#130F15"/><path d="M110 201.849C112.54 201.849 114.885 201.559 117.522 201.365L123.188 212.021C124.263 214.151 126.412 215.314 129.05 214.927C131.492 214.441 133.251 212.699 133.544 210.083L135.302 198.362C140.089 197.103 144.876 195.263 149.565 193.228L158.358 201.074C160.213 202.818 162.558 203.206 165 201.849C167.15 200.687 168.028 198.362 167.54 195.844L165.098 184.22C169.103 181.41 173.108 178.214 176.723 174.631L187.665 179.183C190.107 180.152 192.354 179.667 194.211 177.439C195.872 175.696 196.066 173.177 194.699 171.046L188.349 160.972C191.28 156.904 193.625 152.544 195.872 147.896L207.79 148.476C210.328 148.573 212.478 147.218 213.358 144.796C214.138 142.374 213.358 140.049 211.305 138.499L202.026 131.138C203.296 126.488 204.273 121.451 204.663 116.22L215.994 112.733C218.438 111.861 220 110.021 220 107.406C220 104.887 218.438 103.046 215.994 102.175L204.663 98.5901C204.273 93.3597 203.296 88.5165 202.026 83.7704L211.305 76.3119C213.358 74.8588 214.138 72.6307 213.358 70.2092C212.478 67.7874 210.328 66.4313 207.79 66.528L195.872 67.0128C193.625 62.3629 191.28 58.0042 188.349 53.9359L194.699 43.8618C196.066 41.8276 195.872 39.309 194.211 37.5652C192.354 35.3377 190.107 34.7561 187.665 35.822L176.723 40.181C173.108 36.7903 169.103 33.4969 165.098 30.6881L167.54 19.1609C168.028 16.5456 167.15 14.2208 165 13.0582C162.558 11.7989 160.213 11.9928 158.358 13.9303L149.565 21.5828C144.876 19.5486 140.089 17.9016 135.302 16.5456L133.544 4.82504C133.251 2.30643 131.492 0.466035 129.05 0.0783659C126.412 -0.30889 124.263 0.756579 123.188 2.88752L117.522 13.543C114.885 13.3492 112.54 13.1554 110 13.1554C107.362 13.1554 105.018 13.3492 102.283 13.543L96.7143 2.88752C95.6398 0.756579 93.4907 -0.30889 90.755 0.0783659C88.3126 0.466035 86.6522 2.30643 86.2608 4.82504L84.6004 16.4489C79.7156 17.9016 74.9292 19.5486 70.3376 21.5828L61.5457 13.9303C59.5917 11.9928 57.2471 11.7989 54.9024 13.0582C52.7534 14.2208 51.8739 16.5456 52.3624 19.1609L54.8045 30.6881C50.7018 33.4969 46.6967 36.7903 43.0816 40.181L32.2382 35.822C29.7956 34.7561 27.4511 35.3377 25.595 37.5652C24.0323 39.309 23.8368 41.8276 25.1069 43.7647L31.5542 53.9359C28.6235 58.0042 26.279 62.3629 24.0323 67.0128L12.0159 66.528C9.47629 66.4313 7.32678 67.7874 6.54525 70.2092C5.76372 72.6307 6.44771 74.8588 8.49926 76.3119L17.8776 83.7704C16.6076 88.5165 15.533 93.3597 15.24 98.5901L3.90764 102.175C1.36757 102.95 0 104.79 0 107.406C0 110.021 1.36757 111.861 3.90764 112.733L15.24 116.317C15.533 121.451 16.6076 126.488 17.8776 131.138L8.49926 138.499C6.44771 140.049 5.76372 142.374 6.54525 144.796C7.32678 147.218 9.47629 148.573 12.0159 148.476L24.0323 147.896C26.279 152.544 28.6235 156.904 31.4566 160.972L25.2044 171.046C23.7388 173.177 23.9344 175.696 25.595 177.439C27.4511 179.667 29.7956 180.152 32.2382 179.183L43.0816 174.631C46.6967 178.214 50.7018 181.41 54.8045 184.22L52.3624 195.844C51.8739 198.362 52.7534 200.687 54.9024 201.849C57.3446 203.206 59.6892 202.818 61.5457 201.074L70.2401 193.228C74.9292 195.263 79.7156 197.103 84.6004 198.362L86.2608 210.083C86.6522 212.699 88.3126 214.441 90.755 214.927C93.4907 215.314 95.6398 214.151 96.7143 212.021L102.283 201.365C104.92 201.559 107.362 201.849 110 201.849ZM134.521 101.303C129.929 89.098 120.942 82.4139 109.707 82.4139C108.046 82.4139 106.092 82.6082 102.967 83.2861L74.9292 35.822C85.3824 30.6881 97.3002 27.8789 110 27.8789C152.594 27.8789 186.003 59.9414 189.032 101.303H134.521ZM30.6751 107.502C30.6751 80.5737 43.4725 56.8416 63.6948 42.5058L91.9276 90.2602C86.6522 95.685 84.2098 101.593 84.2098 107.889C84.2098 113.992 86.5549 119.61 91.9276 125.229L63.0108 172.112C43.2771 157.678 30.6751 134.237 30.6751 107.502ZM97.9841 107.793C97.9841 101.206 103.65 96.0721 109.903 96.0721C116.546 96.0721 122.017 101.206 122.017 107.793C122.017 114.283 116.546 119.61 109.903 119.61C103.65 119.61 97.9841 114.283 97.9841 107.793ZM110 187.126C97.0076 187.126 84.8937 184.123 74.2452 178.892L102.967 132.3C105.994 133.075 108.046 133.269 109.707 133.269C121.039 133.269 130.027 126.391 134.521 113.896H189.032C185.906 155.063 152.496 187.126 110 187.126Z" fill="#0F0B11"/></g><defs><clipPath id="clip0_2265_239"><rect width="220" height="215" fill="white"/></clipPath></defs></svg>';
2
+ export const gearSVGLight = '<svg width="220" height="215" viewBox="0 0 220 215" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2265_255)"><path d="M118.931 35.6283C119.659 34.1799 121.114 33.4554 122.901 33.7185C124.554 33.982 125.745 35.233 125.943 36.9449L127.135 44.9114C130.376 45.8332 133.617 46.9532 136.793 48.3358L142.748 43.1339C144.004 41.8171 145.592 41.6854 147.246 42.5414C148.701 43.3316 149.297 44.9115 148.966 46.689L147.312 54.5248C150.024 56.4339 152.737 58.6722 155.184 60.9768L162.594 58.0142C164.248 57.2897 165.77 57.6851 167.027 59.1993C168.152 60.3845 168.282 62.0966 167.357 63.4792L163.057 70.3264C165.042 73.0918 166.63 76.0544 168.152 79.2149L176.222 78.8859C177.942 78.8201 179.397 79.742 179.993 81.3878C180.521 83.0336 179.993 84.5478 178.603 85.5356L172.319 90.6053C173.179 93.8318 173.841 97.1234 174.105 100.679L181.779 103.116C183.433 103.708 184.491 104.959 184.491 106.671C184.491 108.448 183.433 109.7 181.779 110.292L174.105 112.662C173.841 116.218 173.179 119.641 172.319 122.802L178.603 127.806C179.993 128.859 180.521 130.439 179.993 132.086C179.397 133.732 177.942 134.653 176.222 134.587L168.152 134.192C166.63 137.352 165.042 140.315 163.057 143.081L167.357 149.928C168.282 151.376 168.152 153.088 167.027 154.274C165.77 155.788 164.248 156.117 162.594 155.459L155.184 152.365C152.737 154.801 150.024 156.973 147.312 158.882L148.966 166.783C149.297 168.495 148.701 170.076 147.246 170.865C145.592 171.787 144.004 171.524 142.748 170.339L136.793 165.005C133.617 166.388 130.376 167.64 127.135 168.496L125.943 176.462C125.745 178.24 124.554 179.425 122.901 179.755C121.114 180.017 119.659 179.227 118.931 177.779L115.094 170.536C113.308 170.668 111.72 170.865 110 170.865C108.214 170.865 106.56 170.668 104.773 170.536L101.003 177.779C100.275 179.227 98.8202 180.018 96.9675 179.755C95.3133 179.425 94.1894 178.24 93.9246 176.462L92.7999 168.496C89.4922 167.64 86.2508 166.388 83.0751 165.005L77.187 170.339C75.9298 171.524 74.3418 171.787 72.6881 170.865C71.2328 170.076 70.6378 168.495 70.9685 166.783L72.6217 158.882C69.8435 156.973 67.131 154.801 64.683 152.365L57.3399 155.459C55.686 156.117 54.0986 155.788 52.8418 154.274C51.7172 153.088 51.5848 151.376 52.5772 149.928L56.8107 143.081C54.8923 140.315 53.3048 137.352 51.7834 134.192L43.6457 134.587C41.9261 134.653 40.4707 133.732 39.9414 132.086C39.4121 130.439 39.8752 128.859 41.2644 127.806L47.6154 122.802C46.7554 119.641 46.028 116.218 45.8296 112.728L38.1547 110.292C36.4347 109.7 35.5088 108.448 35.5088 106.671C35.5088 104.892 36.4349 103.642 38.1547 103.116L45.8296 100.679C46.028 97.1234 46.7553 93.8318 47.6154 90.6053L41.2644 85.5356C39.8752 84.5478 39.4122 83.0336 39.9414 81.3878C40.4706 79.742 41.926 78.8201 43.6457 78.8859L51.7834 79.2149C53.3048 76.0544 54.8925 73.0918 56.877 70.3264L52.5109 63.4127C51.6509 62.096 51.7836 60.3844 52.8418 59.1993C54.0986 57.6852 55.686 57.2898 57.3399 58.0142L64.683 60.9768C67.131 58.6723 69.8435 56.4339 72.6217 54.5248L70.9685 46.689C70.6378 44.9116 71.233 43.3316 72.6881 42.5414C74.2757 41.6854 75.8637 41.817 77.187 43.1339L83.1407 48.3358C86.2501 46.9532 89.4922 45.8332 92.7999 44.8457L93.9246 36.9449C94.1894 35.2331 95.3133 33.982 96.9675 33.7185C98.8202 33.4554 100.275 34.1799 101.003 35.6283L104.773 42.8708C106.626 42.7392 108.214 42.6071 110 42.6071C111.72 42.6071 113.308 42.7392 115.094 42.8708L118.931 35.6283ZM110.386 64.2705C86.9378 64.2705 67.9298 83.1109 67.9298 106.352C67.9299 129.594 86.9378 148.434 110.386 148.434C133.834 148.434 152.842 129.594 152.842 106.352C152.842 83.1109 133.834 64.2705 110.386 64.2705Z" fill="#0F0B11"/><path d="M110 201.849C112.54 201.849 114.885 201.559 117.522 201.365L123.188 212.021C124.263 214.151 126.412 215.314 129.05 214.927C131.492 214.441 133.251 212.699 133.544 210.083L135.302 198.362C140.089 197.103 144.876 195.263 149.565 193.228L158.358 201.074C160.213 202.818 162.558 203.206 165 201.849C167.15 200.687 168.028 198.362 167.54 195.844L165.098 184.22C169.103 181.41 173.108 178.214 176.723 174.631L187.665 179.183C190.107 180.152 192.354 179.667 194.211 177.439C195.872 175.696 196.066 173.177 194.699 171.046L188.349 160.972C191.28 156.904 193.625 152.544 195.872 147.896L207.79 148.476C210.328 148.573 212.478 147.218 213.358 144.796C214.138 142.374 213.358 140.049 211.305 138.499L202.026 131.138C203.296 126.488 204.273 121.451 204.663 116.22L215.994 112.733C218.438 111.861 220 110.021 220 107.406C220 104.887 218.438 103.046 215.994 102.175L204.663 98.5901C204.273 93.3597 203.296 88.5165 202.026 83.7704L211.305 76.3119C213.358 74.8588 214.138 72.6307 213.358 70.2092C212.478 67.7874 210.328 66.4313 207.79 66.528L195.872 67.0128C193.625 62.3629 191.28 58.0042 188.349 53.9359L194.699 43.8618C196.066 41.8276 195.872 39.309 194.211 37.5652C192.354 35.3377 190.107 34.7561 187.665 35.822L176.723 40.181C173.108 36.7903 169.103 33.4969 165.098 30.6881L167.54 19.1609C168.028 16.5456 167.15 14.2208 165 13.0582C162.558 11.7989 160.213 11.9928 158.358 13.9303L149.565 21.5828C144.876 19.5486 140.089 17.9016 135.302 16.5456L133.544 4.82504C133.251 2.30643 131.492 0.466035 129.05 0.0783659C126.412 -0.30889 124.263 0.756579 123.188 2.88752L117.522 13.543C114.885 13.3492 112.54 13.1554 110 13.1554C107.362 13.1554 105.018 13.3492 102.283 13.543L96.7143 2.88752C95.6398 0.756579 93.4907 -0.30889 90.755 0.0783659C88.3126 0.466035 86.6522 2.30643 86.2608 4.82504L84.6004 16.4489C79.7156 17.9016 74.9292 19.5486 70.3376 21.5828L61.5457 13.9303C59.5917 11.9928 57.2471 11.7989 54.9024 13.0582C52.7534 14.2208 51.8739 16.5456 52.3624 19.1609L54.8045 30.6881C50.7018 33.4969 46.6967 36.7903 43.0816 40.181L32.2382 35.822C29.7956 34.7561 27.4511 35.3377 25.595 37.5652C24.0323 39.309 23.8368 41.8276 25.1069 43.7647L31.5542 53.9359C28.6235 58.0042 26.279 62.3629 24.0323 67.0128L12.0159 66.528C9.47629 66.4313 7.32678 67.7874 6.54525 70.2092C5.76372 72.6307 6.44771 74.8588 8.49926 76.3119L17.8776 83.7704C16.6076 88.5165 15.533 93.3597 15.24 98.5901L3.90764 102.175C1.36757 102.95 0 104.79 0 107.406C0 110.021 1.36757 111.861 3.90764 112.733L15.24 116.317C15.533 121.451 16.6076 126.488 17.8776 131.138L8.49926 138.499C6.44771 140.049 5.76372 142.374 6.54525 144.796C7.32678 147.218 9.47629 148.573 12.0159 148.476L24.0323 147.896C26.279 152.544 28.6235 156.904 31.4566 160.972L25.2044 171.046C23.7388 173.177 23.9344 175.696 25.595 177.439C27.4511 179.667 29.7956 180.152 32.2382 179.183L43.0816 174.631C46.6967 178.214 50.7018 181.41 54.8045 184.22L52.3624 195.844C51.8739 198.362 52.7534 200.687 54.9024 201.849C57.3446 203.206 59.6892 202.818 61.5457 201.074L70.2401 193.228C74.9292 195.263 79.7156 197.103 84.6004 198.362L86.2608 210.083C86.6522 212.699 88.3126 214.441 90.755 214.927C93.4907 215.314 95.6398 214.151 96.7143 212.021L102.283 201.365C104.92 201.559 107.362 201.849 110 201.849ZM134.521 101.303C129.929 89.098 120.942 82.4139 109.707 82.4139C108.046 82.4139 106.092 82.6082 102.967 83.2861L74.9292 35.822C85.3824 30.6881 97.3002 27.8789 110 27.8789C152.594 27.8789 186.003 59.9414 189.032 101.303H134.521ZM30.6751 107.502C30.6751 80.5737 43.4725 56.8416 63.6948 42.5058L91.9276 90.2602C86.6522 95.685 84.2098 101.593 84.2098 107.889C84.2098 113.992 86.5549 119.61 91.9276 125.229L63.0108 172.112C43.2771 157.678 30.6751 134.237 30.6751 107.502ZM97.9841 107.793C97.9841 101.206 103.65 96.0721 109.903 96.0721C116.546 96.0721 122.017 101.206 122.017 107.793C122.017 114.283 116.546 119.61 109.903 119.61C103.65 119.61 97.9841 114.283 97.9841 107.793ZM110 187.126C97.0076 187.126 84.8937 184.123 74.2452 178.892L102.967 132.3C105.994 133.075 108.046 133.269 109.707 133.269C121.039 133.269 130.027 126.391 134.521 113.896H189.032C185.906 155.063 152.496 187.126 110 187.126Z" fill="#130F15"/></g><defs><clipPath id="clip0_2265_255"><rect width="220" height="215" fill="white"/></clipPath></defs></svg>';