@himakarinv/nativex 1.0.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.
- package/LICENSE +21 -0
- package/README.md +105 -0
- package/images.d.ts +14 -0
- package/index.js +8 -0
- package/nativewind-preset.js +18 -0
- package/package.json +120 -0
- package/src/assets/branding/logo.jpg +0 -0
- package/src/assets/branding/softech-logo.png +0 -0
- package/src/assets/icons/2-layers.svg +3 -0
- package/src/assets/icons/Forbidden.svg +211 -0
- package/src/assets/icons/Internal-server-error.svg +119 -0
- package/src/assets/icons/Log-out-nav.svg +4 -0
- package/src/assets/icons/Not-Found.svg +282 -0
- package/src/assets/icons/Unauthorized.svg +314 -0
- package/src/assets/icons/User-Frame.svg +5 -0
- package/src/assets/icons/alert.svg +4 -0
- package/src/assets/icons/arrow-right.svg +3 -0
- package/src/assets/icons/avatar-female.svg +10 -0
- package/src/assets/icons/avatar-male.svg +10 -0
- package/src/assets/icons/bell.svg +3 -0
- package/src/assets/icons/calendar-event.svg +11 -0
- package/src/assets/icons/calendar.svg +6 -0
- package/src/assets/icons/card.svg +4 -0
- package/src/assets/icons/caret-right.svg +3 -0
- package/src/assets/icons/chat.svg +11 -0
- package/src/assets/icons/check.svg +3 -0
- package/src/assets/icons/checkbox-minus.svg +3 -0
- package/src/assets/icons/checkmark.svg +3 -0
- package/src/assets/icons/chevron-down.svg +3 -0
- package/src/assets/icons/chevron-left.svg +9 -0
- package/src/assets/icons/chevron-right.svg +9 -0
- package/src/assets/icons/circle-radio-active.svg +10 -0
- package/src/assets/icons/circle-radio.svg +10 -0
- package/src/assets/icons/clock.svg +3 -0
- package/src/assets/icons/close.svg +3 -0
- package/src/assets/icons/code.svg +3 -0
- package/src/assets/icons/country.svg +20 -0
- package/src/assets/icons/dot.svg +3 -0
- package/src/assets/icons/download.svg +1 -0
- package/src/assets/icons/dropdown-arrow.svg +3 -0
- package/src/assets/icons/dropdown-avatar.svg +3 -0
- package/src/assets/icons/email.svg +3 -0
- package/src/assets/icons/error.svg +3 -0
- package/src/assets/icons/eye-off.svg +1 -0
- package/src/assets/icons/eye.svg +1 -0
- package/src/assets/icons/hashtag-icon.svg +3 -0
- package/src/assets/icons/help-circle.svg +10 -0
- package/src/assets/icons/help.svg +4 -0
- package/src/assets/icons/hide-checkbox.svg +3 -0
- package/src/assets/icons/home-smile.svg +3 -0
- package/src/assets/icons/home.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/left-arrow.svg +3 -0
- package/src/assets/icons/log-out.svg +3 -0
- package/src/assets/icons/notification-box.svg +4 -0
- package/src/assets/icons/pencil.svg +1 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/radio-dot.svg +3 -0
- package/src/assets/icons/right-arrow.svg +3 -0
- package/src/assets/icons/search.svg +3 -0
- package/src/assets/icons/settings.svg +11 -0
- package/src/assets/icons/slack.svg +17 -0
- package/src/assets/icons/slash.svg +3 -0
- package/src/assets/icons/success.svg +3 -0
- package/src/assets/icons/successicon.svg +5 -0
- package/src/assets/icons/three-dot-vertical.svg +5 -0
- package/src/assets/icons/trash.svg +1 -0
- package/src/assets/icons/trend-down-01.svg +3 -0
- package/src/assets/icons/trend-up-01.svg +3 -0
- package/src/assets/icons/up-arrow.svg +3 -0
- package/src/assets/icons/user-plus.svg +10 -0
- package/src/assets/icons/user.svg +3 -0
- package/src/assets/icons/users.svg +3 -0
- package/src/assets/icons/vertical-dots-true-icon.svg +5 -0
- package/src/assets/icons/vertical-line.svg +3 -0
- package/src/assets/icons/vertical-three-dots-icon.svg +5 -0
- package/src/assets/icons/warning.svg +3 -0
- package/src/assets/icons/zap.svg +3 -0
- package/src/components/ActionsMenu/ActionsMenu.tsx +314 -0
- package/src/components/ActionsMenu/index.ts +2 -0
- package/src/components/Alert/Alert.tsx +291 -0
- package/src/components/Alert/index.ts +2 -0
- package/src/components/Badge/Badge.tsx +230 -0
- package/src/components/Badge/index.ts +2 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +364 -0
- package/src/components/Breadcrumb/index.ts +7 -0
- package/src/components/Button/Button.tsx +584 -0
- package/src/components/Button/index.ts +9 -0
- package/src/components/Checkbox/Checkbox.tsx +336 -0
- package/src/components/Checkbox/index.ts +2 -0
- package/src/components/CreatePassword/CreatePassword.tsx +161 -0
- package/src/components/CreatePassword/index.ts +2 -0
- package/src/components/DataTable/DataTable.tsx +822 -0
- package/src/components/DataTable/index.ts +10 -0
- package/src/components/Datepicker/Datepicker.tsx +797 -0
- package/src/components/Datepicker/index.ts +2 -0
- package/src/components/Dropdown/Dropdown.tsx +277 -0
- package/src/components/Dropdown/index.ts +7 -0
- package/src/components/DropdownMenu/DropdownMenu.tsx +471 -0
- package/src/components/DropdownMenu/index.ts +11 -0
- package/src/components/DynamicForm/DynamicForm.tsx +741 -0
- package/src/components/DynamicForm/index.ts +13 -0
- package/src/components/ErrorPages/ErrorPages.tsx +135 -0
- package/src/components/ErrorPages/index.ts +2 -0
- package/src/components/ForgotPassword/ForgotPassword.tsx +121 -0
- package/src/components/ForgotPassword/index.ts +2 -0
- package/src/components/HintError/HintError.tsx +37 -0
- package/src/components/HintError/index.ts +2 -0
- package/src/components/Icon/Icon.tsx +43 -0
- package/src/components/Icon/icon-registry.ts +227 -0
- package/src/components/Icon/index.ts +3 -0
- package/src/components/InputDropdown/InputDropdown.tsx +662 -0
- package/src/components/InputDropdown/index.ts +9 -0
- package/src/components/InputField/InputField.tsx +527 -0
- package/src/components/InputField/index.ts +2 -0
- package/src/components/Label/Label.tsx +88 -0
- package/src/components/Label/index.ts +2 -0
- package/src/components/LoginForm/LoginForm.tsx +158 -0
- package/src/components/LoginForm/index.ts +2 -0
- package/src/components/LoginShell/LoginShell.tsx +97 -0
- package/src/components/LoginShell/RoleCard.tsx +24 -0
- package/src/components/LoginShell/SoftechLogo.tsx +24 -0
- package/src/components/LoginShell/branding-assets.ts +2 -0
- package/src/components/LoginShell/index.ts +20 -0
- package/src/components/LoginShell/login-copy.ts +45 -0
- package/src/components/LoginShell/loginPageStyles.ts +210 -0
- package/src/components/Modals/Modals.tsx +313 -0
- package/src/components/Modals/index.ts +2 -0
- package/src/components/Offcanvas/Offcanvas.tsx +404 -0
- package/src/components/Offcanvas/index.ts +13 -0
- package/src/components/PageHeader/PageHeader.tsx +128 -0
- package/src/components/PageHeader/index.ts +2 -0
- package/src/components/Pagination/Pagination.tsx +540 -0
- package/src/components/Pagination/index.ts +8 -0
- package/src/components/ResetPassword/ResetPassword.tsx +172 -0
- package/src/components/ResetPassword/index.ts +2 -0
- package/src/components/RoleSelection/RoleSelection.tsx +111 -0
- package/src/components/RoleSelection/index.ts +2 -0
- package/src/components/SendOtp/SendOtp.tsx +149 -0
- package/src/components/SendOtp/index.ts +2 -0
- package/src/components/Sidenavbar/Sidenavbar.tsx +358 -0
- package/src/components/Sidenavbar/index.ts +2 -0
- package/src/components/StatCard/StatCard.tsx +393 -0
- package/src/components/StatCard/index.ts +6 -0
- package/src/components/Tabs/Tabs.tsx +239 -0
- package/src/components/Tabs/index.ts +2 -0
- package/src/components/Textarea/Textarea.tsx +217 -0
- package/src/components/Textarea/index.ts +2 -0
- package/src/components/Timepicker/Timepicker.tsx +384 -0
- package/src/components/Timepicker/index.ts +2 -0
- package/src/components/Toast/Toast.tsx +278 -0
- package/src/components/Toast/index.ts +2 -0
- package/src/components/Toggle/Toggle.tsx +296 -0
- package/src/components/Toggle/index.ts +2 -0
- package/src/components/Typeahead/Typeahead.tsx +521 -0
- package/src/components/Typeahead/index.ts +2 -0
- package/src/components/Verification/Verification.tsx +374 -0
- package/src/components/Verification/index.ts +2 -0
- package/src/index.ts +39 -0
- package/src/theme/borders.ts +19 -0
- package/src/theme/button.ts +41 -0
- package/src/theme/colors.ts +273 -0
- package/src/theme/index.ts +14 -0
- package/src/theme/nativewind-theme.js +182 -0
- package/src/theme/radius.ts +12 -0
- package/src/theme/shadows.ts +40 -0
- package/src/theme/spacing.ts +18 -0
- package/src/theme/typography.ts +35 -0
- package/src/utils/a11y.ts +21 -0
- package/svg.d.ts +7 -0
|
@@ -0,0 +1,10 @@
|
|
|
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_circle_active)">
|
|
3
|
+
<path d="M7.9987 14.6667C11.6806 14.6667 14.6654 11.6819 14.6654 8.00004C14.6654 4.31814 11.6806 1.33337 7.9987 1.33337C4.3168 1.33337 1.33203 4.31814 1.33203 8.00004C1.33203 11.6819 4.3168 14.6667 7.9987 14.6667Z" stroke="#0447A8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_circle_active">
|
|
7
|
+
<rect width="16" height="16" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
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_2687_18571)">
|
|
3
|
+
<path d="M7.9987 14.6667C11.6806 14.6667 14.6654 11.6819 14.6654 8.00004C14.6654 4.31814 11.6806 1.33337 7.9987 1.33337C4.3168 1.33337 1.33203 4.31814 1.33203 8.00004C1.33203 11.6819 4.3168 14.6667 7.9987 14.6667Z" stroke="#2F2F2F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_2687_18571">
|
|
7
|
+
<rect width="16" height="16" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
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_2411_3541)">
|
|
3
|
+
<path d="M16 8C16 12.4183 12.4183 16 8 16C3.58175 16 0 12.4183 0 8C0 8.00187 8 0.00090625 8 0C12.4183 0 16 3.58175 16 8Z" fill="#0052B4"/>
|
|
4
|
+
<path d="M7.98047 8.0002H8.00192C8.00192 7.99294 8.00192 7.98599 8.00192 7.97876C7.99478 7.98593 7.98764 7.99307 7.98047 8.0002Z" fill="#F0F0F0"/>
|
|
5
|
+
<path d="M8 4.17439C8 2.76674 8 1.84433 8 0.000488281H7.99865C3.581 0.00120703 0 3.58261 0 8.00046H4.1739V5.65008L6.52428 8.00046H7.97862C7.98578 7.99333 7.9929 7.98621 8.00003 7.97905C8.00003 7.44008 8.00003 6.95918 8.00003 6.5248L5.64962 4.17439H8Z" fill="#F0F0F0"/>
|
|
6
|
+
<path d="M4.04684 1.04382C2.79563 1.75629 1.75544 2.79648 1.04297 4.0477V8.00036H3.12994V3.13082V3.13079H7.9995C7.9995 2.47257 7.9995 1.84551 7.9995 1.04382H4.04684Z" fill="#D80027"/>
|
|
7
|
+
<path d="M7.99793 7.01658L5.15566 4.17433H4.17188C4.17188 4.1743 4.17188 4.17433 4.17188 4.17433L7.9979 8.00036H7.99793C7.99793 8.00036 7.99793 7.32208 7.99793 7.01658Z" fill="#D80027"/>
|
|
8
|
+
<path d="M4.82681 9.39099L5.26588 10.3091L6.25734 10.0799L5.81334 10.9956L6.61066 11.6279L5.61794 11.8516L5.62072 12.8692L4.82681 12.2326L4.03294 12.8692L4.03572 11.8516L3.04297 11.6279L3.84031 10.9956L3.39625 10.0799L4.38778 10.3091L4.82681 9.39099Z" fill="#F0F0F0"/>
|
|
9
|
+
<path d="M11.9817 11.1302L12.2013 11.5893L12.697 11.4747L12.475 11.9325L12.8737 12.2487L12.3773 12.3606L12.3787 12.8694L11.9817 12.551L11.5848 12.8694L11.5862 12.3606L11.0898 12.2487L11.4885 11.9325L11.2665 11.4747L11.7622 11.5893L11.9817 11.1302Z" fill="#F0F0F0"/>
|
|
10
|
+
<path d="M9.93881 6.26086L10.1583 6.71993L10.6541 6.6053L10.4321 7.06315L10.8307 7.3793L10.3344 7.49118L10.3357 7.99999L9.93881 7.68165L9.54187 7.99999L9.54322 7.49118L9.04688 7.3793L9.44553 7.06315L9.22353 6.6053L9.71928 6.71993L9.93881 6.26086Z" fill="#F0F0F0"/>
|
|
11
|
+
<path d="M11.9817 3.47839L12.2013 3.93746L12.697 3.82286L12.475 4.28071L12.8737 4.59683L12.3773 4.70874L12.3787 5.21755L11.9817 4.89921L11.5848 5.21755L11.5862 4.70874L11.0898 4.59683L11.4885 4.28071L11.2665 3.82286L11.7622 3.93746L11.9817 3.47839Z" fill="#F0F0F0"/>
|
|
12
|
+
<path d="M13.763 5.56519L13.9825 6.02425L14.4783 5.90962L14.2563 6.36747L14.6549 6.68362L14.1586 6.79553L14.1599 7.30431L13.763 6.986L13.3661 7.30431L13.3674 6.79553L12.8711 6.68362L13.2697 6.36747L13.0478 5.90962L13.5435 6.02425L13.763 5.56519Z" fill="#F0F0F0"/>
|
|
13
|
+
<path d="M12.4893 8.00024L12.6619 8.53168H13.2208L12.7687 8.86015L12.9414 9.39156L12.4893 9.06312L12.0372 9.39156L12.2099 8.86015L11.7578 8.53168H12.3166L12.4893 8.00024Z" fill="#F0F0F0"/>
|
|
14
|
+
</g>
|
|
15
|
+
<defs>
|
|
16
|
+
<clipPath id="clip0_2411_3541">
|
|
17
|
+
<rect width="16" height="16" fill="white"/>
|
|
18
|
+
</clipPath>
|
|
19
|
+
</defs>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" x2="12" y1="15" y2="3"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.66699 5.83333L8.47097 10.5962C9.02177 10.9819 9.29717 11.1747 9.59672 11.2494C9.86142 11.3154 10.1391 11.3154 10.4038 11.2494C10.7033 11.1747 10.9787 10.9819 11.5295 10.5962L18.3337 5.83333M5.66699 16.6667H14.3337C15.7338 16.6667 16.4339 16.6667 16.9686 16.3942C17.4387 16.1545 17.8215 15.7717 18.0612 15.3016C18.3337 14.7669 18.3337 14.0668 18.3337 12.6667V7.33333C18.3337 5.93319 18.3337 5.23312 18.0612 4.69836C17.8215 4.22825 17.4387 3.8455 16.9686 3.60582C16.4339 3.33333 15.7338 3.33333 14.3337 3.33333H5.66699C4.26686 3.33333 3.56679 3.33333 3.03202 3.60582C2.56192 3.8455 2.17916 4.22825 1.93948 4.69836C1.66699 5.23312 1.66699 5.93319 1.66699 7.33333V12.6667C1.66699 14.0668 1.66699 14.7669 1.93948 15.3016C2.17916 15.7717 2.56192 16.1545 3.03202 16.3942C3.56679 16.6667 4.26686 16.6667 5.66699 16.6667Z" stroke="#656565" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 13H11V15H9V13ZM9 5H11V11H9V5ZM9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM10 18C5.58 18 2 14.42 2 10C2 5.58 5.58 2 10 2C14.42 2 18 5.58 18 10C18 14.42 14.42 18 10 18Z" fill="#C82333"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9.88 9.88a3 3 0 1 0 4.24 4.24"/><path d="M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68"/><path d="M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61"/><line x1="2" x2="22" y1="2" y2="22"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.70828 2.75L5.95828 19.25M16.0416 2.75L13.2916 19.25M18.7916 7.33333H3.20829M17.875 14.6667H2.29163" stroke="#656565" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
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_1892_9383)">
|
|
3
|
+
<path d="M6.0587 6.00004C6.21543 5.55449 6.5248 5.17878 6.932 4.93946C7.3392 4.70015 7.81796 4.61267 8.28348 4.69252C8.749 4.77236 9.17124 5.01439 9.47542 5.37573C9.77959 5.73706 9.94607 6.19439 9.94536 6.66671C9.94536 8.00004 7.94536 8.66671 7.94536 8.66671M7.9987 11.3334H8.00536M14.6654 8.00004C14.6654 11.6819 11.6806 14.6667 7.9987 14.6667C4.3168 14.6667 1.33203 11.6819 1.33203 8.00004C1.33203 4.31814 4.3168 1.33337 7.9987 1.33337C11.6806 1.33337 14.6654 4.31814 14.6654 8.00004Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_1892_9383">
|
|
7
|
+
<rect width="16" height="16" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="8" cy="8" r="6.67" stroke="#656565" stroke-width="1.33" fill="none"/>
|
|
3
|
+
<path d="M6.06 6C6.21673 5.55444 6.52609 5.17873 6.93329 4.93942C7.34049 4.70011 7.81926 4.61262 8.28478 4.69247C8.75031 4.77232 9.17254 5.01434 9.47671 5.37568C9.78087 5.73702 9.94737 6.19434 9.94667 6.66666C9.94667 8 7.94667 8.66666 7.94667 8.66666M8 11.3333H8.00667" stroke="#656565" stroke-width="1.33" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.77168 11.6668C7.14172 13.1045 8.4468 14.1668 10 14.1668C11.5532 14.1668 12.8583 13.1045 13.2283 11.6668M9.18141 2.30345L3.52949 6.69939C3.15168 6.99324 2.96278 7.14017 2.82669 7.32417C2.70614 7.48716 2.61633 7.67078 2.56169 7.866C2.5 8.08639 2.5 8.3257 2.5 8.80433V14.8334C2.5 15.7669 2.5 16.2336 2.68166 16.5901C2.84144 16.9037 3.09641 17.1587 3.41002 17.3185C3.76654 17.5001 4.23325 17.5001 5.16667 17.5001H14.8333C15.7668 17.5001 16.2335 17.5001 16.59 17.3185C16.9036 17.1587 17.1586 16.9037 17.3183 16.5901C17.5 16.2336 17.5 15.7669 17.5 14.8334V8.80433C17.5 8.3257 17.5 8.08639 17.4383 7.866C17.3837 7.67078 17.2939 7.48716 17.1733 7.32417C17.0372 7.14017 16.8483 6.99324 16.4705 6.69939L10.8186 2.30345C10.5258 2.07574 10.3794 1.96189 10.2178 1.91812C10.0752 1.87951 9.92484 1.87951 9.78221 1.91812C9.62057 1.96189 9.47418 2.07574 9.18141 2.30345Z" stroke="#656565" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 14.6667V8.00004H10V14.6667M2 6.00004L8 1.33337L14 6.00004V13.3334C14 13.687 13.8595 14.0261 13.6095 14.2762C13.3594 14.5262 13.0203 14.6667 12.6667 14.6667H3.33333C2.97971 14.6667 2.64057 14.5262 2.39052 14.2762C2.14048 14.0261 2 13.687 2 13.3334V6.00004Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
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="#185197" stroke-width="1.2" fill="none"/>
|
|
3
|
+
<circle cx="10" cy="6" r="1" fill="#185197"/>
|
|
4
|
+
<path d="M10 9v6" stroke="#185197" stroke-width="1.2" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.5026 6.66829H0.835938M0.835938 6.66829L6.66927 0.834961M0.835938 6.66829L6.66927 12.5016" stroke="#717680" stroke-width="1.67" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H6M10.6667 11.3333L14 8M14 8L10.6667 4.66667M14 8H6" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.12" d="M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" fill="black"/>
|
|
3
|
+
<path d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z"/><path d="m15 5 4 4"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.835938 6.66829H12.5026M12.5026 6.66829L6.66927 0.834961M12.5026 6.66829L6.66927 12.5016" stroke="#717680" stroke-width="1.67" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.5 17.5L13.875 13.875M15.8333 9.16667C15.8333 12.8486 12.8486 15.8333 9.16667 15.8333C5.48477 15.8333 2.5 12.8486 2.5 9.16667C2.5 5.48477 5.48477 2.5 9.16667 2.5C12.8486 2.5 15.8333 5.48477 15.8333 9.16667Z" stroke="#717680" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
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_1892_9343)">
|
|
3
|
+
<path d="M8.0013 9.99996C9.10587 9.99996 10.0013 9.10453 10.0013 7.99996C10.0013 6.89539 9.10587 5.99996 8.0013 5.99996C6.89673 5.99996 6.0013 6.89539 6.0013 7.99996C6.0013 9.10453 6.89673 9.99996 8.0013 9.99996Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M12.9346 9.99996C12.8459 10.201 12.8194 10.4241 12.8586 10.6404C12.8978 10.8566 13.0009 11.0562 13.1546 11.2133L13.1946 11.2533C13.3186 11.3771 13.4169 11.5242 13.484 11.686C13.5511 11.8479 13.5857 12.0214 13.5857 12.1966C13.5857 12.3718 13.5511 12.5453 13.484 12.7072C13.4169 12.8691 13.3186 13.0161 13.1946 13.14C13.0708 13.2639 12.9238 13.3623 12.7619 13.4294C12.6 13.4965 12.4265 13.531 12.2513 13.531C12.0761 13.531 11.9026 13.4965 11.7407 13.4294C11.5789 13.3623 11.4318 13.2639 11.308 13.14L11.268 13.1C11.1108 12.9463 10.9113 12.8432 10.695 12.804C10.4788 12.7647 10.2557 12.7912 10.0546 12.88C9.85746 12.9645 9.68929 13.1048 9.57084 13.2836C9.45239 13.4625 9.38882 13.6721 9.38797 13.8866V14C9.38797 14.3536 9.24749 14.6927 8.99744 14.9428C8.7474 15.1928 8.40826 15.3333 8.05464 15.3333C7.70101 15.3333 7.36188 15.1928 7.11183 14.9428C6.86178 14.6927 6.7213 14.3536 6.7213 14V13.94C6.71614 13.7193 6.64471 13.5053 6.51631 13.3258C6.3879 13.1462 6.20846 13.0095 6.0013 12.9333C5.80022 12.8445 5.57717 12.8181 5.36091 12.8573C5.14465 12.8965 4.94509 12.9996 4.78797 13.1533L4.74797 13.1933C4.62414 13.3173 4.47709 13.4156 4.31522 13.4827C4.15336 13.5498 3.97986 13.5843 3.80464 13.5843C3.62941 13.5843 3.45591 13.5498 3.29405 13.4827C3.13218 13.4156 2.98513 13.3173 2.8613 13.1933C2.73733 13.0695 2.63899 12.9224 2.57189 12.7605C2.50479 12.5987 2.47025 12.4252 2.47025 12.25C2.47025 12.0747 2.50479 11.9012 2.57189 11.7394C2.63899 11.5775 2.73733 11.4305 2.8613 11.3066L2.9013 11.2666C3.05499 11.1095 3.15809 10.9099 3.19731 10.6937C3.23652 10.4774 3.21005 10.2544 3.1213 10.0533C3.03679 9.85611 2.89647 9.68795 2.71761 9.5695C2.53875 9.45105 2.32916 9.38748 2.11464 9.38663H2.0013C1.64768 9.38663 1.30854 9.24615 1.05849 8.9961C0.808445 8.74605 0.667969 8.40691 0.667969 8.05329C0.667969 7.69967 0.808445 7.36053 1.05849 7.11048C1.30854 6.86044 1.64768 6.71996 2.0013 6.71996H2.0613C2.28197 6.7148 2.49597 6.64337 2.6755 6.51497C2.85503 6.38656 2.99178 6.20712 3.06797 5.99996C3.15671 5.79888 3.18318 5.57583 3.14397 5.35957C3.10476 5.1433 3.00166 4.94375 2.84797 4.78663L2.80797 4.74663C2.684 4.6228 2.58565 4.47574 2.51856 4.31388C2.45146 4.15202 2.41692 3.97851 2.41692 3.80329C2.41692 3.62807 2.45146 3.45457 2.51856 3.29271C2.58565 3.13084 2.684 2.98379 2.80797 2.85996C2.9318 2.73599 3.07885 2.63765 3.24072 2.57055C3.40258 2.50345 3.57608 2.46891 3.7513 2.46891C3.92652 2.46891 4.10003 2.50345 4.26189 2.57055C4.42375 2.63765 4.5708 2.73599 4.69464 2.85996L4.73464 2.89996C4.89175 3.05365 5.09131 3.15675 5.30758 3.19596C5.52384 3.23517 5.74689 3.2087 5.94797 3.11996H6.0013C6.19848 3.03545 6.36665 2.89513 6.4851 2.71627C6.60355 2.53741 6.66711 2.32782 6.66797 2.11329V1.99996C6.66797 1.64634 6.80844 1.3072 7.05849 1.05715C7.30854 0.807102 7.64768 0.666626 8.0013 0.666626C8.35492 0.666626 8.69406 0.807102 8.94411 1.05715C9.19416 1.3072 9.33464 1.64634 9.33464 1.99996V2.05996C9.33549 2.27448 9.39906 2.48408 9.51751 2.66294C9.63596 2.8418 9.80412 2.98212 10.0013 3.06663C10.2024 3.15537 10.4254 3.18184 10.6417 3.14263C10.858 3.10342 11.0575 3.00032 11.2146 2.84663L11.2546 2.80663C11.3785 2.68266 11.5255 2.58431 11.6874 2.51721C11.8492 2.45011 12.0227 2.41558 12.198 2.41558C12.3732 2.41558 12.5467 2.45011 12.7086 2.51721C12.8704 2.58431 13.0175 2.68266 13.1413 2.80663C13.2653 2.93046 13.3636 3.07751 13.4307 3.23937C13.4978 3.40124 13.5324 3.57474 13.5324 3.74996C13.5324 3.92518 13.4978 4.09868 13.4307 4.26055C13.3636 4.42241 13.2653 4.56946 13.1413 4.69329L13.1013 4.73329C12.9476 4.89041 12.8445 5.08997 12.8053 5.30623C12.7661 5.5225 12.7926 5.74555 12.8813 5.94663V5.99996C12.9658 6.19714 13.1061 6.3653 13.285 6.48375C13.4639 6.60221 13.6734 6.66577 13.888 6.66663H14.0013C14.3549 6.66663 14.6941 6.8071 14.9441 7.05715C15.1942 7.3072 15.3346 7.64634 15.3346 7.99996C15.3346 8.35358 15.1942 8.69272 14.9441 8.94277C14.6941 9.19282 14.3549 9.33329 14.0013 9.33329H13.9413C13.7268 9.33415 13.5172 9.39771 13.3383 9.51616C13.1595 9.63461 13.0191 9.80278 12.9346 9.99996Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_1892_9343">
|
|
8
|
+
<rect width="16" height="16" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
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_1892_9379)">
|
|
3
|
+
<path d="M9.66536 6.66671C9.11203 6.66671 8.66536 6.22004 8.66536 5.66671V2.33337C8.66536 1.78004 9.11203 1.33337 9.66536 1.33337C10.2187 1.33337 10.6654 1.78004 10.6654 2.33337V5.66671C10.6654 6.22004 10.2187 6.66671 9.66536 6.66671Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M13.6654 6.66671H12.6654V5.66671C12.6654 5.11337 13.112 4.66671 13.6654 4.66671C14.2187 4.66671 14.6654 5.11337 14.6654 5.66671C14.6654 6.22004 14.2187 6.66671 13.6654 6.66671Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M6.33203 9.33337C6.88536 9.33337 7.33203 9.78004 7.33203 10.3334V13.6667C7.33203 14.22 6.88536 14.6667 6.33203 14.6667C5.7787 14.6667 5.33203 14.22 5.33203 13.6667V10.3334C5.33203 9.78004 5.7787 9.33337 6.33203 9.33337Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M2.33203 9.33337H3.33203V10.3334C3.33203 10.8867 2.88536 11.3334 2.33203 11.3334C1.7787 11.3334 1.33203 10.8867 1.33203 10.3334C1.33203 9.78004 1.7787 9.33337 2.33203 9.33337Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M9.33203 9.66671C9.33203 9.11337 9.7787 8.66671 10.332 8.66671H13.6654C14.2187 8.66671 14.6654 9.11337 14.6654 9.66671C14.6654 10.22 14.2187 10.6667 13.6654 10.6667H10.332C9.7787 10.6667 9.33203 10.22 9.33203 9.66671Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M10.332 12.6667H9.33203V13.6667C9.33203 14.22 9.7787 14.6667 10.332 14.6667C10.8854 14.6667 11.332 14.22 11.332 13.6667C11.332 13.1134 10.8854 12.6667 10.332 12.6667Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M6.66536 6.33337C6.66536 5.78004 6.2187 5.33337 5.66536 5.33337H2.33203C1.7787 5.33337 1.33203 5.78004 1.33203 6.33337C1.33203 6.88671 1.7787 7.33337 2.33203 7.33337H5.66536C6.2187 7.33337 6.66536 6.88671 6.66536 6.33337Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M5.66536 3.33337H6.66536V2.33337C6.66536 1.78004 6.2187 1.33337 5.66536 1.33337C5.11203 1.33337 4.66536 1.78004 4.66536 2.33337C4.66536 2.88671 5.11203 3.33337 5.66536 3.33337Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="clip0_1892_9379">
|
|
14
|
+
<rect width="16" height="16" fill="white"/>
|
|
15
|
+
</clipPath>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM14.59 5.58L8 12.17L5.41 9.59L4 11L8 15L16 7L14.59 5.58Z" fill="#218838"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="4" width="48" height="48" rx="24" fill="#D1FADF"/>
|
|
3
|
+
<rect x="4" y="4" width="48" height="48" rx="24" stroke="#ECFDF3" stroke-width="8"/>
|
|
4
|
+
<path d="M38 27.08V28C37.9988 30.1564 37.3005 32.2547 36.0093 33.9818C34.7182 35.709 32.9033 36.9725 30.8354 37.5839C28.7674 38.1953 26.5573 38.1219 24.5345 37.3746C22.5117 36.6273 20.7847 35.2461 19.611 33.4371C18.4373 31.628 17.8798 29.4881 18.0217 27.3363C18.1636 25.1846 18.9972 23.1363 20.3983 21.4971C21.7994 19.8578 23.6928 18.7154 25.7962 18.2401C27.8996 17.7649 30.1003 17.9823 32.07 18.86M38 20L28 30.01L25 27.01" stroke="#039855" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0013 10.8333C10.4615 10.8333 10.8346 10.4602 10.8346 9.99992C10.8346 9.53968 10.4615 9.16659 10.0013 9.16659C9.54106 9.16659 9.16797 9.53968 9.16797 9.99992C9.16797 10.4602 9.54106 10.8333 10.0013 10.8333Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M10.0013 4.99992C10.4615 4.99992 10.8346 4.62682 10.8346 4.16659C10.8346 3.70635 10.4615 3.33325 10.0013 3.33325C9.54106 3.33325 9.16797 3.70635 9.16797 4.16659C9.16797 4.62682 9.54106 4.99992 10.0013 4.99992Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10.0013 16.6666C10.4615 16.6666 10.8346 16.2935 10.8346 15.8333C10.8346 15.373 10.4615 14.9999 10.0013 14.9999C9.54106 14.9999 9.16797 15.373 9.16797 15.8333C9.16797 16.2935 9.54106 16.6666 10.0013 16.6666Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M3 6h18"/><path d="M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6"/><path d="M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"/><line x1="10" x2="10" y1="11" y2="17"/><line x1="14" x2="14" y1="11" y2="17"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 10V17H15" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 14V7H15" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
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_1892_9365)">
|
|
3
|
+
<path d="M10.668 14V12.6667C10.668 11.9594 10.387 11.2811 9.88692 10.781C9.38682 10.281 8.70855 10 8.0013 10H3.33464C2.62739 10 1.94911 10.281 1.44902 10.781C0.94892 11.2811 0.667969 11.9594 0.667969 12.6667V14M13.3346 5.33333V9.33333M15.3346 7.33333H11.3346M8.33464 4.66667C8.33464 6.13943 7.14073 7.33333 5.66797 7.33333C4.19521 7.33333 3.0013 6.13943 3.0013 4.66667C3.0013 3.19391 4.19521 2 5.66797 2C7.14073 2 8.33464 3.19391 8.33464 4.66667Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_1892_9365">
|
|
7
|
+
<rect width="16" height="16" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.6654 17.5V15.8333C16.6654 14.9493 16.3142 14.1014 15.6891 13.4763C15.0639 12.8512 14.2161 12.5 13.332 12.5H6.66536C5.78131 12.5 4.93346 12.8512 4.30834 13.4763C3.68322 14.1014 3.33203 14.9493 3.33203 15.8333V17.5M13.332 5.83333C13.332 7.67428 11.8396 9.16667 9.9987 9.16667C8.15775 9.16667 6.66536 7.67428 6.66536 5.83333C6.66536 3.99238 8.15775 2.5 9.9987 2.5C11.8396 2.5 13.332 3.99238 13.332 5.83333Z" stroke="#717680" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.3346 14V12.6667C11.3346 11.9594 11.0537 11.2811 10.5536 10.781C10.0535 10.281 9.37521 10 8.66797 10H3.33464C2.62739 10 1.94911 10.281 1.44902 10.781C0.94892 11.2811 0.667969 11.9594 0.667969 12.6667V14M15.3346 14V12.6667C15.3342 12.0758 15.1375 11.5018 14.7755 11.0349C14.4136 10.5679 13.9067 10.2344 13.3346 10.0867M10.668 2.08667C11.2416 2.23353 11.75 2.56713 12.1131 3.03487C12.4761 3.50261 12.6732 4.07789 12.6732 4.67C12.6732 5.26211 12.4761 5.83739 12.1131 6.30513C11.75 6.77287 11.2416 7.10647 10.668 7.25333M8.66797 4.66667C8.66797 6.13943 7.47406 7.33333 6.0013 7.33333C4.52854 7.33333 3.33464 6.13943 3.33464 4.66667C3.33464 3.19391 4.52854 2 6.0013 2C7.47406 2 8.66797 3.19391 8.66797 4.66667Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="4" height="15" viewBox="0 0 4 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.66536 8.33337C2.1256 8.33337 2.4987 7.96028 2.4987 7.50004C2.4987 7.0398 2.1256 6.66671 1.66536 6.66671C1.20513 6.66671 0.832031 7.0398 0.832031 7.50004C0.832031 7.96028 1.20513 8.33337 1.66536 8.33337Z" stroke="#414651" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M1.66536 2.50004C2.1256 2.50004 2.4987 2.12694 2.4987 1.66671C2.4987 1.20647 2.1256 0.833374 1.66536 0.833374C1.20513 0.833374 0.832031 1.20647 0.832031 1.66671C0.832031 2.12694 1.20513 2.50004 1.66536 2.50004Z" stroke="#414651" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M1.66536 14.1667C2.1256 14.1667 2.4987 13.7936 2.4987 13.3334C2.4987 12.8731 2.1256 12.5 1.66536 12.5C1.20513 12.5 0.832031 12.8731 0.832031 13.3334C0.832031 13.7936 1.20513 14.1667 1.66536 14.1667Z" stroke="#414651" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0013 10.8334C10.4615 10.8334 10.8346 10.4603 10.8346 10C10.8346 9.5398 10.4615 9.16671 10.0013 9.16671C9.54106 9.16671 9.16797 9.5398 9.16797 10C9.16797 10.4603 9.54106 10.8334 10.0013 10.8334Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M10.0013 5.00004C10.4615 5.00004 10.8346 4.62694 10.8346 4.16671C10.8346 3.70647 10.4615 3.33337 10.0013 3.33337C9.54106 3.33337 9.16797 3.70647 9.16797 4.16671C9.16797 4.62694 9.54106 5.00004 10.0013 5.00004Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10.0013 16.6667C10.4615 16.6667 10.8346 16.2936 10.8346 15.8334C10.8346 15.3731 10.4615 15 10.0013 15C9.54106 15 9.16797 15.3731 9.16797 15.8334C9.16797 16.2936 9.54106 16.6667 10.0013 16.6667Z" stroke="#A4A7AE" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 13H11V15H9V13ZM9 5H11V11H9V5ZM9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM10 18C5.58 18 2 14.42 2 10C2 5.58 5.58 2 10 2C14.42 2 18 5.58 18 10C18 14.42 14.42 18 10 18Z" fill="#E0A800"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.66667 1.33337L2 9.33337H8L7.33333 14.6667L14 6.66671H8L8.66667 1.33337Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|