urkit-ui 0.1.5 → 0.2.1
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.
- package/README.md +71 -22
- package/dist/module.json +1 -1
- package/dist/runtime/assets/css/global.css +1 -1
- package/dist/runtime/components/Alert.d.vue.ts +56 -0
- package/dist/runtime/components/Alert.vue +107 -0
- package/dist/runtime/components/Alert.vue.d.ts +56 -0
- package/dist/runtime/components/Badge.d.vue.ts +28 -0
- package/dist/runtime/components/Badge.vue +24 -0
- package/dist/runtime/components/Badge.vue.d.ts +28 -0
- package/dist/runtime/components/Button.d.vue.ts +1 -1
- package/dist/runtime/components/Button.vue.d.ts +1 -1
- package/dist/runtime/components/Input.d.vue.ts +6 -6
- package/dist/runtime/components/Input.vue +83 -22
- package/dist/runtime/components/Input.vue.d.ts +6 -6
- package/dist/runtime/public/assets/icons/alert-error.svg +3 -0
- package/dist/runtime/public/assets/icons/alert-feature.svg +3 -0
- package/dist/runtime/public/assets/icons/alert-info.svg +3 -0
- package/dist/runtime/public/assets/icons/alert-success.svg +3 -0
- package/dist/runtime/public/assets/icons/alert-warning.svg +3 -0
- package/dist/runtime/public/assets/icons/close.svg +4 -0
- package/dist/runtime/public/assets/icons/hide.svg +12 -6
- package/dist/runtime/public/assets/icons/search.svg +7 -1
- package/dist/runtime/public/assets/icons/show.svg +6 -2
- package/package.json +13 -12
- package/src/runtime/public/assets/icons/alert-error.svg +3 -0
- package/src/runtime/public/assets/icons/alert-feature.svg +3 -0
- package/src/runtime/public/assets/icons/alert-info.svg +3 -0
- package/src/runtime/public/assets/icons/alert-success.svg +3 -0
- package/src/runtime/public/assets/icons/alert-warning.svg +3 -0
- package/src/runtime/public/assets/icons/close.svg +4 -0
- package/src/runtime/public/assets/icons/hide.svg +12 -6
- package/src/runtime/public/assets/icons/search.svg +7 -1
- package/src/runtime/public/assets/icons/show.svg +6 -2
- package/dist/runtime/public/assets/icons/arrow-down.svg +0 -10
- package/dist/runtime/public/assets/icons/collapse.svg +0 -6
- package/dist/runtime/public/assets/icons/color.svg +0 -1
- package/dist/runtime/public/assets/icons/copied.svg +0 -3
- package/dist/runtime/public/assets/icons/copy.svg +0 -10
- package/dist/runtime/public/assets/icons/figma.svg +0 -1
- package/dist/runtime/public/assets/icons/heart.svg +0 -3
- package/dist/runtime/public/assets/icons/icons-icon.svg +0 -10
- package/dist/runtime/public/assets/icons/installation.svg +0 -1
- package/dist/runtime/public/assets/icons/introduction.svg +0 -1
- package/dist/runtime/public/assets/icons/loader-icon.svg +0 -6
- package/dist/runtime/public/assets/icons/profile.svg +0 -1
- package/dist/runtime/public/assets/icons/radiuss.svg +0 -4
- package/dist/runtime/public/assets/icons/star.svg +0 -3
- package/dist/runtime/public/assets/icons/toast-close.svg +0 -3
- package/dist/runtime/public/assets/icons/toast-error.svg +0 -4
- package/dist/runtime/public/assets/icons/toast-info.svg +0 -5
- package/dist/runtime/public/assets/icons/toast-success.svg +0 -4
- package/dist/runtime/public/assets/icons/toast-warning.svg +0 -5
- package/dist/runtime/public/assets/icons/typo.svg +0 -1
- package/src/runtime/public/assets/icons/arrow-down.svg +0 -10
- package/src/runtime/public/assets/icons/collapse.svg +0 -6
- package/src/runtime/public/assets/icons/color.svg +0 -1
- package/src/runtime/public/assets/icons/copied.svg +0 -3
- package/src/runtime/public/assets/icons/copy.svg +0 -10
- package/src/runtime/public/assets/icons/figma.svg +0 -1
- package/src/runtime/public/assets/icons/heart.svg +0 -3
- package/src/runtime/public/assets/icons/icons-icon.svg +0 -10
- package/src/runtime/public/assets/icons/installation.svg +0 -1
- package/src/runtime/public/assets/icons/introduction.svg +0 -1
- package/src/runtime/public/assets/icons/loader-icon.svg +0 -6
- package/src/runtime/public/assets/icons/profile.svg +0 -1
- package/src/runtime/public/assets/icons/radiuss.svg +0 -4
- package/src/runtime/public/assets/icons/star.svg +0 -3
- package/src/runtime/public/assets/icons/toast-close.svg +0 -3
- package/src/runtime/public/assets/icons/toast-error.svg +0 -4
- package/src/runtime/public/assets/icons/toast-info.svg +0 -5
- package/src/runtime/public/assets/icons/toast-success.svg +0 -4
- package/src/runtime/public/assets/icons/toast-warning.svg +0 -5
- package/src/runtime/public/assets/icons/typo.svg +0 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="field-wrapper"
|
|
4
|
+
:class="{ 'has-error': hasError, 'is-disabled': disabled }"
|
|
5
|
+
>
|
|
3
6
|
<!-- Label -->
|
|
4
7
|
<label v-if="label" class="field-label" :for="inputId">
|
|
5
8
|
{{ label }}
|
|
@@ -8,17 +11,27 @@
|
|
|
8
11
|
<!-- Input Container -->
|
|
9
12
|
<div class="field-container" :class="inputContainerClasses">
|
|
10
13
|
<!-- Left Icon -->
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
<div
|
|
15
|
+
v-if="icon && iconPosition === 'left'"
|
|
16
|
+
class="field-icon field-icon--left"
|
|
17
|
+
aria-hidden="true"
|
|
18
|
+
>
|
|
19
|
+
<Icon :name="iconName" :size="iconSize" mode="svg" />
|
|
20
|
+
</div>
|
|
14
21
|
|
|
15
22
|
<!-- Left Affix (outside input) -->
|
|
16
|
-
<span
|
|
23
|
+
<span
|
|
24
|
+
v-if="affix && affixPosition === 'left'"
|
|
25
|
+
class="field-affix field-affix--left"
|
|
26
|
+
>
|
|
17
27
|
{{ affix }}
|
|
18
28
|
</span>
|
|
19
29
|
|
|
20
30
|
<!-- Inline Left Affix (inside input) -->
|
|
21
|
-
<span
|
|
31
|
+
<span
|
|
32
|
+
v-if="inlineAffix && inlineAffixPosition === 'left'"
|
|
33
|
+
class="field-inline-affix field-inline-affix--left"
|
|
34
|
+
>
|
|
22
35
|
{{ inlineAffix }}
|
|
23
36
|
</span>
|
|
24
37
|
|
|
@@ -41,12 +54,19 @@
|
|
|
41
54
|
/>
|
|
42
55
|
|
|
43
56
|
<!-- Inline Right Affix (inside input) -->
|
|
44
|
-
<span
|
|
57
|
+
<span
|
|
58
|
+
v-if="inlineAffix && inlineAffixPosition === 'right'"
|
|
59
|
+
class="field-inline-affix field-inline-affix--right"
|
|
60
|
+
>
|
|
45
61
|
{{ inlineAffix }}
|
|
46
62
|
</span>
|
|
47
63
|
|
|
48
64
|
<!-- Right Icon / Password Toggle -->
|
|
49
|
-
<span
|
|
65
|
+
<span
|
|
66
|
+
v-if="showRightIcon"
|
|
67
|
+
class="field-icon field-icon--right"
|
|
68
|
+
aria-hidden="true"
|
|
69
|
+
>
|
|
50
70
|
<Icon
|
|
51
71
|
v-if="password && !customRightIcon"
|
|
52
72
|
:name="passwordVisible ? 'icons:hide' : 'icons:show'"
|
|
@@ -55,11 +75,18 @@
|
|
|
55
75
|
@click="togglePasswordVisibility"
|
|
56
76
|
alt=""
|
|
57
77
|
/>
|
|
58
|
-
<Icon
|
|
78
|
+
<Icon
|
|
79
|
+
v-else-if="icon && iconPosition === 'right'"
|
|
80
|
+
:name="iconName"
|
|
81
|
+
:size="iconSize"
|
|
82
|
+
/>
|
|
59
83
|
</span>
|
|
60
84
|
|
|
61
85
|
<!-- Right Affix (outside input) -->
|
|
62
|
-
<span
|
|
86
|
+
<span
|
|
87
|
+
v-if="affix && affixPosition === 'right'"
|
|
88
|
+
class="field-affix field-affix--right"
|
|
89
|
+
>
|
|
63
90
|
{{ affix }}
|
|
64
91
|
</span>
|
|
65
92
|
|
|
@@ -86,7 +113,12 @@
|
|
|
86
113
|
/>
|
|
87
114
|
<span>{{ selectedOptionData?.label || selectPlaceholder }}</span>
|
|
88
115
|
</div>
|
|
89
|
-
<Icon
|
|
116
|
+
<Icon
|
|
117
|
+
name="icons:arrow-down"
|
|
118
|
+
size="14"
|
|
119
|
+
mode="svg"
|
|
120
|
+
class="field-select-chevron"
|
|
121
|
+
/>
|
|
90
122
|
</button>
|
|
91
123
|
|
|
92
124
|
<div v-if="selectOpen" class="field-select-dropdown">
|
|
@@ -99,8 +131,18 @@
|
|
|
99
131
|
}"
|
|
100
132
|
@click="selectOption(option)"
|
|
101
133
|
>
|
|
102
|
-
<img
|
|
103
|
-
|
|
134
|
+
<img
|
|
135
|
+
v-if="option.flag"
|
|
136
|
+
:src="option.flag"
|
|
137
|
+
:alt="option.label"
|
|
138
|
+
class="select-option-flag"
|
|
139
|
+
/>
|
|
140
|
+
<Icon
|
|
141
|
+
v-else-if="option.icon"
|
|
142
|
+
:name="option.icon"
|
|
143
|
+
size="16"
|
|
144
|
+
class="select-option-icon"
|
|
145
|
+
/>
|
|
104
146
|
<span>{{ option.label }}</span>
|
|
105
147
|
<!-- <Icon v-if="option.value === selectedOption" name="heroicons:check" size="16" class="select-option-check" /> -->
|
|
106
148
|
</div>
|
|
@@ -127,7 +169,10 @@
|
|
|
127
169
|
</p>
|
|
128
170
|
|
|
129
171
|
<!-- Password Requirements -->
|
|
130
|
-
<div
|
|
172
|
+
<div
|
|
173
|
+
v-if="password && showPasswordRequirements"
|
|
174
|
+
class="password-requirements"
|
|
175
|
+
>
|
|
131
176
|
<!-- Progress Indicators -->
|
|
132
177
|
<div class="password-progress">
|
|
133
178
|
<div class="progress-bar" :class="getProgressBarColor(0)"></div>
|
|
@@ -136,11 +181,16 @@
|
|
|
136
181
|
</div>
|
|
137
182
|
<p class="requirements-title">Must contain at least;</p>
|
|
138
183
|
<div class="requirements-list">
|
|
139
|
-
<div
|
|
184
|
+
<div
|
|
185
|
+
class="requirement-item"
|
|
186
|
+
:class="{ 'requirement-met': hasUppercase }"
|
|
187
|
+
>
|
|
140
188
|
<Icon
|
|
141
189
|
:name="hasUppercase ? 'icons:show' : 'icons:hide'"
|
|
142
190
|
size="16"
|
|
143
|
-
:class="
|
|
191
|
+
:class="
|
|
192
|
+
hasUppercase ? 'requirement-icon--success' : 'requirement-icon--error'
|
|
193
|
+
"
|
|
144
194
|
/>
|
|
145
195
|
<span>At least 1 uppercase</span>
|
|
146
196
|
</div>
|
|
@@ -148,11 +198,16 @@
|
|
|
148
198
|
<Icon
|
|
149
199
|
:name="hasNumber ? 'icons:show' : 'icons:hide'"
|
|
150
200
|
size="16"
|
|
151
|
-
:class="
|
|
201
|
+
:class="
|
|
202
|
+
hasNumber ? 'requirement-icon--success' : 'requirement-icon--error'
|
|
203
|
+
"
|
|
152
204
|
/>
|
|
153
205
|
<span>At least 1 number</span>
|
|
154
206
|
</div>
|
|
155
|
-
<div
|
|
207
|
+
<div
|
|
208
|
+
class="requirement-item"
|
|
209
|
+
:class="{ 'requirement-met': hasMinLength }"
|
|
210
|
+
>
|
|
156
211
|
<Icon
|
|
157
212
|
:name="hasMinLength ? 'icons:show' : 'icons:show'"
|
|
158
213
|
size="16"
|
|
@@ -227,7 +282,7 @@ const hasError = computed(() => {
|
|
|
227
282
|
});
|
|
228
283
|
const iconName = computed(() => {
|
|
229
284
|
if (!props.icon) return "";
|
|
230
|
-
return `icons
|
|
285
|
+
return props.icon.includes(":") ? props.icon : `icons:${props.icon}`;
|
|
231
286
|
});
|
|
232
287
|
const iconSize = computed(() => {
|
|
233
288
|
const sizeMap = {
|
|
@@ -238,10 +293,14 @@ const iconSize = computed(() => {
|
|
|
238
293
|
return sizeMap[props.size];
|
|
239
294
|
});
|
|
240
295
|
const showRightIcon = computed(() => {
|
|
241
|
-
return Boolean(
|
|
296
|
+
return Boolean(
|
|
297
|
+
props.password || props.icon && props.iconPosition === "right"
|
|
298
|
+
);
|
|
242
299
|
});
|
|
243
300
|
const customRightIcon = computed(() => {
|
|
244
|
-
return Boolean(
|
|
301
|
+
return Boolean(
|
|
302
|
+
!props.password && props.icon && props.iconPosition === "right"
|
|
303
|
+
);
|
|
245
304
|
});
|
|
246
305
|
const inputContainerClasses = computed(() => {
|
|
247
306
|
return [
|
|
@@ -309,7 +368,9 @@ const getProgressBarColor = (index) => {
|
|
|
309
368
|
}
|
|
310
369
|
};
|
|
311
370
|
const selectedOptionData = computed(() => {
|
|
312
|
-
return props.selectOptions?.find(
|
|
371
|
+
return props.selectOptions?.find(
|
|
372
|
+
(option) => option.value === props.selectedOption
|
|
373
|
+
);
|
|
313
374
|
});
|
|
314
375
|
const handleInput = (event) => {
|
|
315
376
|
const target = event.target;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Input size types
|
|
3
3
|
*/
|
|
4
|
-
type InputSize =
|
|
4
|
+
type InputSize = "sm" | "md" | "lg";
|
|
5
5
|
/**
|
|
6
6
|
* Icon position types
|
|
7
7
|
*/
|
|
8
|
-
type IconPosition =
|
|
8
|
+
type IconPosition = "left" | "right";
|
|
9
9
|
/**
|
|
10
10
|
* Affix position types
|
|
11
11
|
*/
|
|
12
|
-
type AffixPosition =
|
|
12
|
+
type AffixPosition = "left" | "right";
|
|
13
13
|
/**
|
|
14
14
|
* Button variant types
|
|
15
15
|
*/
|
|
16
|
-
type ButtonVariant =
|
|
16
|
+
type ButtonVariant = "primary" | "error" | "success" | "neutral";
|
|
17
17
|
/**
|
|
18
18
|
* Button size types
|
|
19
19
|
*/
|
|
20
|
-
type ButtonSize =
|
|
20
|
+
type ButtonSize = "sm" | "md" | "lg" | "xlg";
|
|
21
21
|
/**
|
|
22
22
|
* Select option interface
|
|
23
23
|
*/
|
|
@@ -88,7 +88,7 @@ interface InputProps {
|
|
|
88
88
|
/** Select placeholder */
|
|
89
89
|
selectPlaceholder?: string;
|
|
90
90
|
/** Radius type with standard values */
|
|
91
|
-
radiusType?:
|
|
91
|
+
radiusType?: "none" | "soft" | "medium" | "pill";
|
|
92
92
|
}
|
|
93
93
|
declare const _default: import("vue").DefineComponent<InputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
94
94
|
"update:modelValue": (value: string | number) => any;
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12 18.9999C11.158 18.9999 10.315 18.8219 9.49597 18.5049" stroke="
|
|
3
|
-
|
|
4
|
-
<path d="
|
|
5
|
-
|
|
6
|
-
<path d="
|
|
7
|
-
|
|
2
|
+
<path d="M12 18.9999C11.158 18.9999 10.315 18.8219 9.49597 18.5049" stroke="currentColor" stroke-width="1.5"
|
|
3
|
+
stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path d="M20.882 12.468C18.99 15.967 15.495 19 12 19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
5
|
+
stroke-linejoin="round" />
|
|
6
|
+
<path d="M19.079 8.92102C19.77 9.73002 20.384 10.612 20.882 11.533C21.039 11.824 21.039 12.177 20.882 12.468"
|
|
7
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
|
+
<path d="M5 19L19 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
9
|
+
<path d="M9.77302 14.227C8.54302 12.997 8.54302 11.002 9.77302 9.77199C11.003 8.54199 12.998 8.54199 14.228 9.77199"
|
|
10
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
+
<path
|
|
12
|
+
d="M17.044 6.956C15.497 5.759 13.748 5 12 5C8.50499 5 5.00999 8.033 3.11799 11.533C2.96099 11.824 2.96099 12.177 3.11799 12.468C4.06399 14.217 5.40999 15.849 6.95599 17.045"
|
|
13
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
14
|
</svg>
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M16.747 6.187C19.663 9.103 19.663 13.831 16.747 16.747C13.831 19.663 9.103 19.663 6.187 16.747C3.271 13.831 3.271 9.103 6.187 6.187C9.103 3.271 13.831 3.271 16.747 6.187Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path d="M20.0001 20.0001L16.7471 16.7471" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
6
|
+
stroke-linejoin="round" />
|
|
7
|
+
</svg>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
-
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M3.11799 12.467C2.96099 12.176 2.96099 11.823 3.11799 11.532C5.00999 8.033 8.50499 5 12 5C15.495 5 18.99 8.033 20.882 11.533C21.039 11.824 21.039 12.177 20.882 12.468C18.98 15.967 15.495 19 12 19C8.50499 19 5.00999 15.967 3.11799 12.467Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path
|
|
6
|
+
d="M14.1213 9.87868C15.2929 11.0502 15.2929 12.9497 14.1213 14.1213C12.9497 15.2929 11.0502 15.2929 9.87868 14.1213C8.70711 12.9497 8.70711 11.0502 9.87868 9.87868C11.0502 8.70711 12.9497 8.70711 14.1213 9.87868"
|
|
7
|
+
stroke="currentColor" stroke-width="1.4286" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
8
|
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "urkit-ui",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A modern, accessible UI component library for Nuxt 4 with custom CSS architecture",
|
|
5
5
|
"author": "Jaber Elferk <elferkjaber@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,6 +42,17 @@
|
|
|
42
42
|
"dist",
|
|
43
43
|
"src/runtime/public"
|
|
44
44
|
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"prepack": "nuxt-module-build build",
|
|
47
|
+
"dev": "nuxi dev playground",
|
|
48
|
+
"dev:build": "nuxi build playground",
|
|
49
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
50
|
+
"release": "npm run lint && npm run prepack && npm publish && git push --follow-tags",
|
|
51
|
+
"lint": "eslint .",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"test:watch": "vitest watch",
|
|
54
|
+
"test:types": "vue-tsc --noEmit"
|
|
55
|
+
},
|
|
45
56
|
"dependencies": {
|
|
46
57
|
"@nuxt/kit": "^4.0.0"
|
|
47
58
|
},
|
|
@@ -56,15 +67,5 @@
|
|
|
56
67
|
"vitest": "^2.0.0",
|
|
57
68
|
"vue": "latest",
|
|
58
69
|
"vue-tsc": "^2.0.0"
|
|
59
|
-
},
|
|
60
|
-
"scripts": {
|
|
61
|
-
"dev": "nuxi dev playground",
|
|
62
|
-
"dev:build": "nuxi build playground",
|
|
63
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
64
|
-
"release": "npm run lint && npm run prepack && npm publish && git push --follow-tags",
|
|
65
|
-
"lint": "eslint .",
|
|
66
|
-
"test": "vitest run",
|
|
67
|
-
"test:watch": "vitest watch",
|
|
68
|
-
"test:types": "vue-tsc --noEmit"
|
|
69
70
|
}
|
|
70
|
-
}
|
|
71
|
+
}
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12 18.9999C11.158 18.9999 10.315 18.8219 9.49597 18.5049" stroke="
|
|
3
|
-
|
|
4
|
-
<path d="
|
|
5
|
-
|
|
6
|
-
<path d="
|
|
7
|
-
|
|
2
|
+
<path d="M12 18.9999C11.158 18.9999 10.315 18.8219 9.49597 18.5049" stroke="currentColor" stroke-width="1.5"
|
|
3
|
+
stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path d="M20.882 12.468C18.99 15.967 15.495 19 12 19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
5
|
+
stroke-linejoin="round" />
|
|
6
|
+
<path d="M19.079 8.92102C19.77 9.73002 20.384 10.612 20.882 11.533C21.039 11.824 21.039 12.177 20.882 12.468"
|
|
7
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
|
+
<path d="M5 19L19 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
9
|
+
<path d="M9.77302 14.227C8.54302 12.997 8.54302 11.002 9.77302 9.77199C11.003 8.54199 12.998 8.54199 14.228 9.77199"
|
|
10
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
+
<path
|
|
12
|
+
d="M17.044 6.956C15.497 5.759 13.748 5 12 5C8.50499 5 5.00999 8.033 3.11799 11.533C2.96099 11.824 2.96099 12.177 3.11799 12.468C4.06399 14.217 5.40999 15.849 6.95599 17.045"
|
|
13
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
14
|
</svg>
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M16.747 6.187C19.663 9.103 19.663 13.831 16.747 16.747C13.831 19.663 9.103 19.663 6.187 16.747C3.271 13.831 3.271 9.103 6.187 6.187C9.103 3.271 13.831 3.271 16.747 6.187Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path d="M20.0001 20.0001L16.7471 16.7471" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
|
6
|
+
stroke-linejoin="round" />
|
|
7
|
+
</svg>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
-
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M3.11799 12.467C2.96099 12.176 2.96099 11.823 3.11799 11.532C5.00999 8.033 8.50499 5 12 5C15.495 5 18.99 8.033 20.882 11.533C21.039 11.824 21.039 12.177 20.882 12.468C18.98 15.967 15.495 19 12 19C8.50499 19 5.00999 15.967 3.11799 12.467Z"
|
|
4
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path
|
|
6
|
+
d="M14.1213 9.87868C15.2929 11.0502 15.2929 12.9497 14.1213 14.1213C12.9497 15.2929 11.0502 15.2929 9.87868 14.1213C8.70711 12.9497 8.70711 11.0502 9.87868 9.87868C11.0502 8.70711 12.9497 8.70711 14.1213 9.87868"
|
|
7
|
+
stroke="currentColor" stroke-width="1.4286" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
8
|
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_361_331)">
|
|
3
|
-
<path d="M7.11157 9.55579L12 14.4442L16.8884 9.55579" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_361_331">
|
|
7
|
-
<rect width="24" height="24"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M20 4L15 9M15 9L20 9M15 9L15 4" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M4 20L9 15M9 15H4M9 15V20" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M4 4L9 9M9 9L4 9M9 9L9 4" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M20 20L15 15M15 15L20 15M15 15L15 20" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" class="size-5 shrink-0 text-ln-gray-400 transition ease-linear"><path stroke="currentColor" stroke-width="1.25" d="M6.085 8.324a4.3 4.3 0 0 1-.368-1.743 4.286 4.286 0 0 1 4.282-4.29 4.286 4.286 0 0 1 4.283 4.29c0 .62-.132 1.21-.369 1.743m-7.828 0a4.287 4.287 0 0 0-3.794 4.262 4.286 4.286 0 0 0 4.282 4.289 4.28 4.28 0 0 0 3.426-1.715M6.085 8.324a4.29 4.29 0 0 0 3.426 2.519m4.402-2.519A4.27 4.27 0 0 0 10 10.012m3.914-1.688a4.287 4.287 0 0 1 3.795 4.262 4.286 4.286 0 0 1-4.283 4.289c-1.4 0-2.644-.674-3.426-1.715m0 0a4.27 4.27 0 0 0 .857-2.574c0-.62-.132-1.21-.369-1.743m-.976 0q.199-.446.488-.831m-.488.83a4.3 4.3 0 0 0 .976 0m-.488-.83q.29.385.488.83"></path></svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_9752_129859)">
|
|
3
|
-
<path d="M5.33203 5.33203V3.46536C5.33203 2.71863 5.33203 2.34526 5.47736 2.06004C5.60519 1.80916 5.80916 1.60519 6.06004 1.47736C6.34526 1.33203 6.71863 1.33203 7.46537 1.33203H12.532C13.2788 1.33203 13.6521 1.33203 13.9374 1.47736C14.1882 1.60519 14.3922 1.80916 14.52 2.06004C14.6654 2.34526 14.6654 2.71863 14.6654 3.46536V8.53203C14.6654 9.27877 14.6654 9.65214 14.52 9.93735C14.3922 10.1882 14.1882 10.3922 13.9374 10.52C13.6521 10.6654 13.2788 10.6654 12.532 10.6654H10.6654M3.46536 14.6654H8.53203C9.27877 14.6654 9.65214 14.6654 9.93735 14.52C10.1882 14.3922 10.3922 14.1882 10.52 13.9374C10.6654 13.6521 10.6654 13.2788 10.6654 12.532V7.46537C10.6654 6.71863 10.6654 6.34526 10.52 6.06004C10.3922 5.80916 10.1882 5.60519 9.93735 5.47736C9.65214 5.33203 9.27877 5.33203 8.53203 5.33203H3.46536C2.71863 5.33203 2.34526 5.33203 2.06004 5.47736C1.80916 5.60519 1.60519 5.80916 1.47736 6.06004C1.33203 6.34526 1.33203 6.71863 1.33203 7.46537V12.532C1.33203 13.2788 1.33203 13.6521 1.47736 13.9374C1.60519 14.1882 1.80916 14.3922 2.06004 14.52C2.34526 14.6654 2.71863 14.6654 3.46536 14.6654Z" stroke="#6C737F" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="clip0_9752_129859">
|
|
7
|
-
<rect width="16" height="16" fill="white"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" class="size-5 shrink-0 text-ln-gray-400 transition ease-linear"><path stroke="currentColor" stroke-width="1.25" d="M9.99 2H7.32a2.67 2.67 0 0 0-2.67 2.667 2.67 2.67 0 0 0 2.67 2.666M9.99 2v5.333M9.99 2h2.67a2.67 2.67 0 0 1 2.67 2.667 2.67 2.67 0 0 1-2.67 2.666m-2.67 0H7.32m2.67 0v5.334m0-5.334h2.67m-5.34 0A2.67 2.67 0 0 0 4.65 10a2.67 2.67 0 0 0 2.67 2.667m2.67 0H7.32m2.67 0v2.666A2.67 2.67 0 0 1 7.32 18a2.67 2.67 0 0 1-2.67-2.667 2.67 2.67 0 0 1 2.67-2.666m5.34-5.334A2.67 2.67 0 0 0 9.99 10a2.67 2.67 0 0 0 2.67 2.667A2.67 2.67 0 0 0 15.33 10a2.67 2.67 0 0 0-2.67-2.667Z"></path></svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M20.84 4.61C20.3292 4.099 19.7228 3.69364 19.0554 3.41708C18.3879 3.14052 17.6725 2.99817 16.95 2.99817C16.2275 2.99817 15.5121 3.14052 14.8446 3.41708C14.1772 3.69364 13.5708 4.099 13.06 4.61L12 5.67L10.94 4.61C9.9083 3.5783 8.50903 2.9987 7.05 2.9987C5.59096 2.9987 4.19169 3.5783 3.16 4.61C2.1283 5.6417 1.54871 7.04097 1.54871 8.5C1.54871 9.95903 2.1283 11.3583 3.16 12.39L12 21.23L20.84 12.39C21.351 11.8792 21.7563 11.2728 22.0329 10.6053C22.3095 9.93789 22.4518 9.22248 22.4518 8.5C22.4518 7.77752 22.3095 7.06211 22.0329 6.39467C21.7563 5.72723 21.351 5.1208 20.84 4.61Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M5 7V17" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M19 17V7" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 21H18C17.448 21 17 20.552 17 20V18C17 17.448 17.448 17 18 17H20C20.552 17 21 17.448 21 18V20C21 20.552 20.552 21 20 21Z" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 21H4C3.448 21 3 20.552 3 20V18C3 17.448 3.448 17 4 17H6C6.552 17 7 17.448 7 18V20C7 20.552 6.552 21 6 21Z" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 7H18C17.448 7 17 6.552 17 6V4C17 3.448 17.448 3 18 3H20C20.552 3 21 3.448 21 4V6C21 6.552 20.552 7 20 7Z" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 7H4C3.448 7 3 6.552 3 6V4C3 3.448 3.448 3 4 3H6C6.552 3 7 3.448 7 4V6C7 6.552 6.552 7 6 7Z" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
-
<path d="M7 19H17" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
-
<path d="M17 5H7" stroke="#323232" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" class="size-5 shrink-0 text-ln-gray-400 transition ease-linear"><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.25" d="M12.14 13.426a5.567 5.567 0 0 0 5.26-7.4l-2.262 2.261a2.422 2.422 0 1 1-3.425-3.426l2.26-2.26A5.567 5.567 0 0 0 7 10l-4.173 4.237c-.643.652-.639 1.7.009 2.348l.577.578a1.667 1.667 0 0 0 2.348.008L9.998 13a5.6 5.6 0 0 0 2.143.427Z"></path></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" class="size-5 shrink-0 text-ln-gray-400 transition ease-linear"><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.25" d="M16.498 7.292h-5.04a.417.417 0 0 1-.417-.417V1.963a.417.417 0 0 0-.76-.236L3.158 12.055a.417.417 0 0 0 .343.653h5.04c.23 0 .417.187.417.417v4.912c0 .409.527.573.76.236L16.84 7.945a.417.417 0 0 0-.343-.653Z"></path></svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" fill="currentColor" opacity="0.3"/>
|
|
3
|
-
<path d="M12 2C6.48 2 2 6.48 2 12h2c0-4.41 3.59-8 8-8V2z" fill="currentColor">
|
|
4
|
-
<animateTransform attributeName="transform" type="rotate" from="0 12 12" to="360 12 12" dur="1s" repeatCount="indefinite"/>
|
|
5
|
-
</path>
|
|
6
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="remixicon flex size-5 shrink-0 select-none items-center justify-center transition duration-200 ease-out group-has-[:placeholder-shown]:text-text-soft-400 text-text-sub-600 group-has-[:placeholder-shown]:group-hover/input-wrapper:text-text-sub-600 group-has-[:placeholder-shown]:group-has-[input:focus]/input-wrapper:text-text-sub-600 group-has-[input:disabled]/input-wrapper:text-text-disabled-300"><path d="M11.9999 17C15.6623 17 18.8649 18.5751 20.607 20.9247L18.765 21.796C17.3473 20.1157 14.8473 19 11.9999 19C9.15248 19 6.65252 20.1157 5.23479 21.796L3.39355 20.9238C5.13576 18.5747 8.33796 17 11.9999 17ZM11.9999 2C14.7613 2 16.9999 4.23858 16.9999 7V10C16.9999 12.6888 14.8776 14.8818 12.2168 14.9954L11.9999 15C9.23847 15 6.9999 12.7614 6.9999 10V7C6.9999 4.31125 9.1222 2.11818 11.783 2.00462L11.9999 2ZM11.9999 4C10.4022 4 9.09623 5.24892 9.00499 6.82373L8.9999 7V10C8.9999 11.6569 10.343 13 11.9999 13C13.5976 13 14.9036 11.7511 14.9948 10.1763L14.9999 10V7C14.9999 5.34315 13.6567 4 11.9999 4Z"></path></svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.03191 8.96074C6.03191 7.39538 7.30089 6.1264 8.86626 6.1264H17.9907L18.0744 13.9119C18.0744 15.0172 16.8438 17.4134 14.719 17.8153C13.3394 18.0763 10.647 18.0295 10.647 18.0295H6.03191V8.96074Z" stroke="currentColor" stroke-width="0.9" stroke-linecap="square" stroke-dasharray="1.95 1.95"/>
|
|
3
|
-
<path d="M6.49696 1.99696H13.5028C15.9881 1.99696 18.0028 4.01168 18.0028 6.49696V13.5028C18.0028 15.9881 15.9881 18.0028 13.5028 18.0028H6.49696C4.01168 18.0028 1.99696 15.9881 1.99696 13.5028V6.49696C1.99696 4.01168 4.01168 1.99696 6.49696 1.99696Z" stroke="currentColor"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M11.2691 4.41115C11.5006 3.89645 11.6164 3.6391 11.7776 3.55211C11.9176 3.47928 12.0824 3.47928 12.2224 3.55211C12.3836 3.6391 12.4994 3.89645 12.7309 4.41115L14.5745 8.54808C14.643 8.70162 14.6772 8.77839 14.7302 8.83718C14.777 8.8892 14.8343 8.93081 14.8982 8.95929C14.9705 8.99149 15.0541 9.00031 15.2213 9.01795L19.7256 9.49336C20.2911 9.55304 20.5738 9.58288 20.6997 9.71147C20.809 9.82316 20.8598 9.97956 20.837 10.1342C20.8108 10.3122 20.5996 10.5025 20.1772 10.8832L16.8125 13.9154C16.6877 14.0279 16.6252 14.0842 16.5857 14.1527C16.5507 14.2134 16.5288 14.2807 16.5215 14.3503C16.5132 14.429 16.5306 14.5112 16.5655 14.6757L17.5053 19.1064C17.6233 19.6627 17.6823 19.9408 17.5989 20.1002C17.5264 20.2388 17.3934 20.3354 17.2393 20.3615C17.0619 20.3915 16.8156 20.2495 16.323 19.9654L12.3995 17.7024C12.2539 17.6184 12.1811 17.5765 12.1037 17.56C12.0352 17.5455 11.9648 17.5455 11.8963 17.56C11.8189 17.5765 11.7461 17.6184 11.6005 17.7024L7.67702 19.9654C7.18441 20.2495 6.9381 20.3915 6.76067 20.3615C6.60663 20.3354 6.47357 20.2388 6.40101 20.1002C6.31766 19.9408 6.37663 19.6627 6.49457 19.1064L7.43451 14.6757C7.46943 14.5112 7.48688 14.429 7.47853 14.3503C7.47121 14.2807 7.44931 14.2134 7.41432 14.1527C7.37485 14.0842 7.31234 14.0279 7.18732 13.9154L3.82246 10.8832C3.40005 10.5025 3.18884 10.3122 3.16258 10.1342C3.13978 9.97956 3.19059 9.82316 3.29993 9.71147C3.42581 9.58288 3.70856 9.55304 4.27406 9.49336L8.77835 9.01795C8.94553 9.00031 9.02911 8.99149 9.10139 8.95929C9.16534 8.93081 9.2226 8.8892 9.26946 8.83718C9.32241 8.77839 9.35663 8.70162 9.42508 8.54808L11.2691 4.41115Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="10" cy="10" r="9" stroke="currentColor" stroke-width="2" fill="none"/>
|
|
3
|
-
<path d="M7 7L13 13M13 7L7 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="10" cy="10" r="9" stroke="currentColor" stroke-width="2" fill="none"/>
|
|
3
|
-
<circle cx="10" cy="6" r="0.5" fill="currentColor"/>
|
|
4
|
-
<path d="M10 9v5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
5
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="10" cy="10" r="9" stroke="currentColor" stroke-width="2" fill="none"/>
|
|
3
|
-
<path d="M6 10L8.5 12.5L14 7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.5 3.5L2 16.5h13L8.5 3.5z" stroke="currentColor" stroke-width="2" stroke-linejoin="round" fill="none"/>
|
|
3
|
-
<path d="M8.5 8v3" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
-
<circle cx="8.5" cy="13.5" r="0.5" fill="currentColor"/>
|
|
5
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" class="size-5 shrink-0 text-ln-gray-400 transition ease-linear"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M5.773 16.875v-7.71m12.77-5.207H8.125m2.083 5.209h-8.75m11.875-5v12.708"></path></svg>
|