@uxuissk/design-system 0.7.0 → 0.7.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/dist/fonts/DBHeaventRounded-Black.woff +0 -0
- package/dist/fonts/DBHeaventRounded-Black.woff2 +0 -0
- package/dist/fonts/DBHeaventRounded-Bold.woff +0 -0
- package/dist/fonts/DBHeaventRounded-Bold.woff2 +0 -0
- package/dist/fonts/DBHeaventRounded-Med.woff +0 -0
- package/dist/fonts/DBHeaventRounded-Med.woff2 +0 -0
- package/dist/fonts/DBHeaventRounded-Regular.woff +0 -0
- package/dist/fonts/DBHeaventRounded-Regular.woff2 +0 -0
- package/dist/sellsuki-ds.css +43 -1
- package/dist/sellsuki-ds.js +2699 -2399
- package/dist/sellsuki-ds.umd.cjs +71 -71
- package/dist/types/index.d.ts +52 -6
- package/package.json +21 -8
- package/dist/ai-rules.json +0 -84
- package/dist/ai-rules.md +0 -163
- package/dist/header-main.svg +0 -92
- package/dist/header-sub.svg +0 -76
- package/dist/sellsuki-ds.js.map +0 -1
- package/dist/sellsuki-ds.umd.cjs.map +0 -1
- package/dist/sidebar-ref.svg +0 -161
package/dist/types/index.d.ts
CHANGED
|
@@ -515,7 +515,7 @@ declare interface DSInputProps extends Omit<default_2.InputHTMLAttributes<HTMLIn
|
|
|
515
515
|
helperText?: string;
|
|
516
516
|
errorMessage?: string;
|
|
517
517
|
successMessage?: string;
|
|
518
|
-
|
|
518
|
+
size?: InputSize;
|
|
519
519
|
variant?: InputVariant;
|
|
520
520
|
state?: InputState;
|
|
521
521
|
leftIcon?: default_2.ReactNode;
|
|
@@ -536,7 +536,7 @@ declare function DSRadio({ value, label, description, disabled: localDisabled, s
|
|
|
536
536
|
export { DSRadio }
|
|
537
537
|
export { DSRadio as Radio }
|
|
538
538
|
|
|
539
|
-
declare function DSTable<T extends Record<string, any>>({ columns, data, size, striped, hoverable, bordered, selectable, selectedRows: controlledSelected, onSelectionChange, loading, emptyMessage, stickyHeader, className, }: TableProps<T>): JSX.Element;
|
|
539
|
+
declare function DSTable<T extends Record<string, any>>({ columns, data, size, striped, hoverable, bordered, selectable, selectedRows: controlledSelected, onSelectionChange, loading, emptyMessage, stickyHeader, flush, className, }: TableProps<T>): JSX.Element;
|
|
540
540
|
export { DSTable }
|
|
541
541
|
export { DSTable as Table }
|
|
542
542
|
|
|
@@ -549,7 +549,7 @@ declare interface DSTextareaProps extends Omit<default_2.TextareaHTMLAttributes<
|
|
|
549
549
|
helperText?: string;
|
|
550
550
|
errorMessage?: string;
|
|
551
551
|
successMessage?: string;
|
|
552
|
-
|
|
552
|
+
size?: InputSize;
|
|
553
553
|
variant?: InputVariant;
|
|
554
554
|
state?: InputState;
|
|
555
555
|
showCharCount?: boolean;
|
|
@@ -1052,12 +1052,44 @@ declare interface SearchSuggestion {
|
|
|
1052
1052
|
|
|
1053
1053
|
export declare type SearchVariant = "default" | "outlined" | "filled";
|
|
1054
1054
|
|
|
1055
|
-
export declare function Sidebar({ brand, groups, activeItem, onNavigate, collapsed, onCollapsedChange, className, }: SidebarProps): JSX.Element;
|
|
1055
|
+
export declare function Sidebar({ brand, accountSwitcher, groups, activeItem, onNavigate, collapsed, onCollapsedChange, showCollapseToggle, version, versionDate, className, }: SidebarProps): JSX.Element;
|
|
1056
1056
|
|
|
1057
1057
|
export declare namespace Sidebar {
|
|
1058
1058
|
var displayName: string;
|
|
1059
1059
|
}
|
|
1060
1060
|
|
|
1061
|
+
export declare interface SidebarAccountItem {
|
|
1062
|
+
id: string;
|
|
1063
|
+
/** Display name (company / branch / provider) */
|
|
1064
|
+
name: string;
|
|
1065
|
+
/** Handle or sub-label e.g. "@phoenix" */
|
|
1066
|
+
handle?: string;
|
|
1067
|
+
/** Avatar image URL */
|
|
1068
|
+
avatarUrl?: string;
|
|
1069
|
+
/** Fallback initials when no avatarUrl */
|
|
1070
|
+
avatarFallback?: string;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
export declare function SidebarAccountSwitcher({ company, branch, provider, companies, branches, providers, onCompanyChange, onBranchChange, onProviderChange, collapsed, }: SidebarAccountSwitcherProps): JSX.Element;
|
|
1074
|
+
|
|
1075
|
+
export declare namespace SidebarAccountSwitcher {
|
|
1076
|
+
var displayName: string;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
export declare interface SidebarAccountSwitcherProps {
|
|
1080
|
+
company?: SidebarAccountItem;
|
|
1081
|
+
branch?: SidebarAccountItem;
|
|
1082
|
+
provider?: SidebarAccountItem;
|
|
1083
|
+
companies?: SidebarAccountItem[];
|
|
1084
|
+
branches?: SidebarAccountItem[];
|
|
1085
|
+
providers?: SidebarAccountItem[];
|
|
1086
|
+
onCompanyChange?: (item: SidebarAccountItem) => void;
|
|
1087
|
+
onBranchChange?: (item: SidebarAccountItem) => void;
|
|
1088
|
+
onProviderChange?: (item: SidebarAccountItem) => void;
|
|
1089
|
+
/** Collapsed icon-only mode */
|
|
1090
|
+
collapsed?: boolean;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1061
1093
|
export declare interface SidebarBrand {
|
|
1062
1094
|
/** Brand name */
|
|
1063
1095
|
name: string;
|
|
@@ -1096,6 +1128,14 @@ export declare interface SidebarProps {
|
|
|
1096
1128
|
collapsed?: boolean;
|
|
1097
1129
|
/** Toggle collapse callback */
|
|
1098
1130
|
onCollapsedChange?: (collapsed: boolean) => void;
|
|
1131
|
+
/** Show the footer collapse toggle button (default: true). Set false when collapse is controlled from TopNavbar */
|
|
1132
|
+
showCollapseToggle?: boolean;
|
|
1133
|
+
/** Account/Company/Branch switcher shown in header area */
|
|
1134
|
+
accountSwitcher?: SidebarAccountSwitcherProps;
|
|
1135
|
+
/** App version string e.g. "v1.4.0" */
|
|
1136
|
+
version?: string;
|
|
1137
|
+
/** Version date string e.g. "March 10, 2026" */
|
|
1138
|
+
versionDate?: string;
|
|
1099
1139
|
/** Sidebar width (default: 256px) */
|
|
1100
1140
|
width?: string;
|
|
1101
1141
|
/** Additional class name */
|
|
@@ -1245,6 +1285,8 @@ declare interface TableProps<T = any> {
|
|
|
1245
1285
|
loading?: boolean;
|
|
1246
1286
|
emptyMessage?: string;
|
|
1247
1287
|
stickyHeader?: boolean;
|
|
1288
|
+
/** Remove border and border-radius — use when table is already inside a bordered container */
|
|
1289
|
+
flush?: boolean;
|
|
1248
1290
|
className?: string;
|
|
1249
1291
|
}
|
|
1250
1292
|
|
|
@@ -1380,7 +1422,7 @@ export declare interface TooltipProps {
|
|
|
1380
1422
|
className?: string;
|
|
1381
1423
|
}
|
|
1382
1424
|
|
|
1383
|
-
export declare function TopNavbar({ brand, breadcrumbs, actions, user, height, showSearch, searchPlaceholder, onSearchClick, notificationCount, onNotificationClick, onMobileMenuClick, onUserClick, onBreadcrumbClick, className, }: TopNavbarProps): JSX.Element;
|
|
1425
|
+
export declare function TopNavbar({ brand, breadcrumbs, title, actions, user, height, showSearch, searchPlaceholder, onSearchClick, notificationCount, onNotificationClick, onMobileMenuClick, onSidebarToggle, onUserClick, onBreadcrumbClick, className, }: TopNavbarProps): JSX.Element;
|
|
1384
1426
|
|
|
1385
1427
|
export declare namespace TopNavbar {
|
|
1386
1428
|
var displayName: string;
|
|
@@ -1398,6 +1440,8 @@ export declare interface TopNavbarProps {
|
|
|
1398
1440
|
brand?: TopNavbarBrand;
|
|
1399
1441
|
/** Breadcrumb items */
|
|
1400
1442
|
breadcrumbs?: BreadcrumbItem_2[];
|
|
1443
|
+
/** Page title displayed after brand (used for current page context) */
|
|
1444
|
+
title?: string;
|
|
1401
1445
|
/** Right-side action area */
|
|
1402
1446
|
actions?: default_2.ReactNode;
|
|
1403
1447
|
/** User avatar */
|
|
@@ -1414,8 +1458,10 @@ export declare interface TopNavbarProps {
|
|
|
1414
1458
|
notificationCount?: number;
|
|
1415
1459
|
/** Notification click handler */
|
|
1416
1460
|
onNotificationClick?: () => void;
|
|
1417
|
-
/** Mobile menu click handler */
|
|
1461
|
+
/** Mobile menu click handler (shows only on mobile) */
|
|
1418
1462
|
onMobileMenuClick?: () => void;
|
|
1463
|
+
/** Sidebar toggle handler — shows burger icon (always visible) to collapse/expand sidebar */
|
|
1464
|
+
onSidebarToggle?: () => void;
|
|
1419
1465
|
/** User click handler */
|
|
1420
1466
|
onUserClick?: () => void;
|
|
1421
1467
|
/** Breadcrumb click handler */
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxuissk/design-system",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
+
"workspaces": [
|
|
7
|
+
"packages/*"
|
|
8
|
+
],
|
|
6
9
|
"main": "./dist/sellsuki-ds.umd.cjs",
|
|
7
10
|
"module": "./dist/sellsuki-ds.js",
|
|
8
11
|
"types": "./dist/types/index.d.ts",
|
|
@@ -16,7 +19,11 @@
|
|
|
16
19
|
"./styles.css": "./dist/sellsuki-ds.css"
|
|
17
20
|
},
|
|
18
21
|
"files": [
|
|
19
|
-
"dist",
|
|
22
|
+
"dist/sellsuki-ds.js",
|
|
23
|
+
"dist/sellsuki-ds.umd.cjs",
|
|
24
|
+
"dist/sellsuki-ds.css",
|
|
25
|
+
"dist/fonts",
|
|
26
|
+
"dist/types",
|
|
20
27
|
"README.md"
|
|
21
28
|
],
|
|
22
29
|
"sideEffects": [
|
|
@@ -25,19 +32,20 @@
|
|
|
25
32
|
"scripts": {
|
|
26
33
|
"dev": "vite",
|
|
27
34
|
"build": "vite build",
|
|
28
|
-
"
|
|
35
|
+
"clean": "node --input-type=module -e \"import{rmSync}from'fs';try{rmSync('dist',{recursive:true,force:true})}catch{}\"",
|
|
36
|
+
"build:lib": "npm run clean && npm run lint:svelte-css && vite build --config vite.lib.config.ts && node scripts/inject-font-face.mjs && npm run hardcode:log",
|
|
37
|
+
"lint:svelte-css": "stylelint 'src/lib/svelte/**/*.svelte' --allow-empty-input",
|
|
38
|
+
"hardcode:log": "node scripts/check-hardcodes.mjs",
|
|
29
39
|
"storybook": "storybook dev -p 6006",
|
|
30
40
|
"build-storybook": "storybook build",
|
|
31
41
|
"prepublishOnly": "npm run build:lib"
|
|
32
42
|
},
|
|
33
|
-
"dependencies": {},
|
|
34
43
|
"peerDependencies": {
|
|
44
|
+
"lucide-react": ">=0.400.0",
|
|
35
45
|
"react": "^18.0.0 || ^19.0.0",
|
|
36
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
37
|
-
"lucide-react": ">=0.400.0"
|
|
46
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
38
47
|
},
|
|
39
48
|
"devDependencies": {
|
|
40
|
-
"lucide-react": "0.487.0",
|
|
41
49
|
"@emotion/react": "11.14.0",
|
|
42
50
|
"@emotion/styled": "11.14.1",
|
|
43
51
|
"@mui/icons-material": "7.3.5",
|
|
@@ -85,8 +93,10 @@
|
|
|
85
93
|
"date-fns": "3.6.0",
|
|
86
94
|
"embla-carousel-react": "8.6.0",
|
|
87
95
|
"input-otp": "1.4.2",
|
|
96
|
+
"lucide-react": "0.487.0",
|
|
88
97
|
"motion": "12.23.24",
|
|
89
98
|
"next-themes": "0.4.6",
|
|
99
|
+
"postcss-html": "^1.8.1",
|
|
90
100
|
"react-day-picker": "8.10.1",
|
|
91
101
|
"react-dnd": "16.0.1",
|
|
92
102
|
"react-dnd-html5-backend": "16.0.1",
|
|
@@ -99,13 +109,16 @@
|
|
|
99
109
|
"recharts": "2.15.2",
|
|
100
110
|
"sonner": "2.0.3",
|
|
101
111
|
"storybook": "^8.4.0",
|
|
112
|
+
"stylelint": "^17.6.0",
|
|
113
|
+
"stylelint-config-standard": "^40.0.0",
|
|
102
114
|
"tailwind-merge": "3.2.0",
|
|
103
115
|
"tailwindcss": "4.1.12",
|
|
104
116
|
"tw-animate-css": "1.3.8",
|
|
105
117
|
"typescript": "^5.5.0",
|
|
106
118
|
"vaul": "1.1.2",
|
|
107
119
|
"vite": "6.3.5",
|
|
108
|
-
"vite-plugin-dts": "^4.0.0"
|
|
120
|
+
"vite-plugin-dts": "^4.0.0",
|
|
121
|
+
"vite-plugin-static-copy": "^4.0.0"
|
|
109
122
|
},
|
|
110
123
|
"pnpm": {
|
|
111
124
|
"overrides": {
|
package/dist/ai-rules.json
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Sellsuki Design System",
|
|
3
|
-
"version": "1.2.0",
|
|
4
|
-
"updated": "2026-03-20",
|
|
5
|
-
"url": "https://sellsukidesignsystemv12.vercel.app/ai-rules.json",
|
|
6
|
-
"storybook": "https://sellsukidesignsystemv12.vercel.app",
|
|
7
|
-
"npm": "@uxuissk/design-system",
|
|
8
|
-
"brand": {
|
|
9
|
-
"product": "Sellsuki — E-commerce management platform for Thai merchants",
|
|
10
|
-
"mood": "Professional, clean, trustworthy, light, airy, functional",
|
|
11
|
-
"design": "Clarity over decoration — flat design, minimal shadows"
|
|
12
|
-
},
|
|
13
|
-
"colors": {
|
|
14
|
-
"primary": "#32a9ff",
|
|
15
|
-
"primary-hover": "#1b8bf5",
|
|
16
|
-
"primary-light": "#f0f9ff",
|
|
17
|
-
"text-primary": "#1f2937",
|
|
18
|
-
"text-secondary": "#6b7280",
|
|
19
|
-
"border": "#e5e7eb",
|
|
20
|
-
"surface": "#f9fafb",
|
|
21
|
-
"background": "#ffffff",
|
|
22
|
-
"success": "#059669",
|
|
23
|
-
"success-light": "#d1fae5",
|
|
24
|
-
"warning": "#d97706",
|
|
25
|
-
"warning-light": "#fef3c7",
|
|
26
|
-
"danger": "#e11d48",
|
|
27
|
-
"danger-light": "#ffe4e6"
|
|
28
|
-
},
|
|
29
|
-
"typography": {
|
|
30
|
-
"body": "'DB HeaventRounded', 'Noto Sans Thai', sans-serif",
|
|
31
|
-
"button": "'Inter', sans-serif"
|
|
32
|
-
},
|
|
33
|
-
"spacing": {
|
|
34
|
-
"page-desktop": "24px",
|
|
35
|
-
"page-mobile": "16px",
|
|
36
|
-
"card-gap": "16px",
|
|
37
|
-
"form-gap": "16px",
|
|
38
|
-
"section-gap": "32px"
|
|
39
|
-
},
|
|
40
|
-
"border": {
|
|
41
|
-
"radius": "8px",
|
|
42
|
-
"shadow": "0px 1px 2px 0px rgba(0,0,0,0.05)"
|
|
43
|
-
},
|
|
44
|
-
"layout": {
|
|
45
|
-
"navbar-height": "72px",
|
|
46
|
-
"sidebar-width": "280px"
|
|
47
|
-
},
|
|
48
|
-
"button": {
|
|
49
|
-
"variants": ["primary", "secondary", "outline", "ghost", "destructive", "link"],
|
|
50
|
-
"sizes": { "sm": "32px", "md": "36px", "lg": "40px", "xl": "44px" },
|
|
51
|
-
"default": "variant=primary size=md",
|
|
52
|
-
"rule": "Max 1 primary button per view"
|
|
53
|
-
},
|
|
54
|
-
"components": {
|
|
55
|
-
"data-entry": ["DSButton", "IconButton", "ButtonGroup", "DSInput", "DSTextarea", "DSCheckbox", "CheckboxGroup", "DSRadio", "RadioGroup", "Switch", "Dropdown", "DatePicker", "SearchField", "ColorPicker", "FileUpload", "TagInput", "Rating", "TransferList"],
|
|
56
|
-
"data-display": ["DSTable", "Card", "CardHeader", "CardBody", "CardFooter", "StatCard", "Statistic", "Badge", "Tag", "Avatar", "AvatarGroup", "Timeline", "Tree", "EmptyState", "Skeleton"],
|
|
57
|
-
"navigation": ["TopNavbar", "Sidebar", "Breadcrumb", "Tabs", "Stepper", "Pagination"],
|
|
58
|
-
"feedback": ["Alert", "Modal", "Drawer", "ConfirmDialog", "Notification", "toast", "ToastContainer", "Tooltip", "Popover", "ProgressBar", "Spinner"],
|
|
59
|
-
"layout": ["Divider", "Menu", "ImagePreview"]
|
|
60
|
-
},
|
|
61
|
-
"rules": [
|
|
62
|
-
"Flat clean design — no heavy shadows or gradients",
|
|
63
|
-
"Max 1 primary button per view",
|
|
64
|
-
"Handle loading, empty, and error states",
|
|
65
|
-
"DB HeaventRounded for text, Inter for buttons only",
|
|
66
|
-
"Only colors from the defined palette",
|
|
67
|
-
"Follow spacing system strictly"
|
|
68
|
-
],
|
|
69
|
-
"tailwind_patterns": {
|
|
70
|
-
"button-primary": "h-9 px-4 bg-[#32a9ff] hover:bg-[#1b8bf5] text-white text-sm font-semibold rounded-lg font-['Inter']",
|
|
71
|
-
"button-secondary": "h-9 px-4 bg-[#f3f4f6] hover:bg-[#e5e7eb] text-[#1f2937] text-sm font-semibold rounded-lg font-['Inter']",
|
|
72
|
-
"button-outline": "h-9 px-4 border border-[#32a9ff] text-[#32a9ff] bg-white hover:bg-[#f0f9ff] text-sm font-semibold rounded-lg font-['Inter']",
|
|
73
|
-
"button-destructive": "h-9 px-4 bg-[#e11d48] hover:bg-[#be123c] text-white text-sm font-semibold rounded-lg font-['Inter']",
|
|
74
|
-
"card": "bg-white rounded-lg border border-[#e5e7eb] p-4",
|
|
75
|
-
"input": "w-full h-9 px-3 border border-[#e5e7eb] rounded-lg text-sm text-[#1f2937] placeholder:text-[#9ca3af] focus:border-[#32a9ff] focus:ring-1 focus:ring-[#32a9ff] outline-none",
|
|
76
|
-
"badge-success": "px-2 py-0.5 text-xs font-medium rounded-full bg-[#d1fae5] text-[#065f46]",
|
|
77
|
-
"badge-warning": "px-2 py-0.5 text-xs font-medium rounded-full bg-[#fef3c7] text-[#92400e]",
|
|
78
|
-
"badge-danger": "px-2 py-0.5 text-xs font-medium rounded-full bg-[#ffe4e6] text-[#9f1239]",
|
|
79
|
-
"table-header": "px-4 py-3 bg-[#f9fafb] text-[#6b7280] text-xs font-semibold uppercase text-left",
|
|
80
|
-
"table-cell": "px-4 py-3 text-sm text-[#1f2937]",
|
|
81
|
-
"sidebar-item": "flex items-center gap-3 px-4 py-2.5 rounded-lg text-sm text-[#6b7280] hover:bg-[#f0f9ff] hover:text-[#32a9ff]",
|
|
82
|
-
"sidebar-item-active": "flex items-center gap-3 px-4 py-2.5 rounded-lg text-sm bg-[#f0f9ff] text-[#32a9ff] font-medium"
|
|
83
|
-
}
|
|
84
|
-
}
|
package/dist/ai-rules.md
DELETED
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
# Sellsuki Design System — AI Rules (Hosted Version)
|
|
2
|
-
|
|
3
|
-
> This file is the single source of truth for all AI tools generating Sellsuki UI.
|
|
4
|
-
> URL: https://sellsukidesignsystemv12.vercel.app/ai-rules.md
|
|
5
|
-
> Last updated: 2026-03-20
|
|
6
|
-
|
|
7
|
-
## Important: Sandbox vs Full Mode
|
|
8
|
-
|
|
9
|
-
**Sandbox mode** (Claude.ai Artifacts, v0, Google AI Studio):
|
|
10
|
-
- Use ONLY React + Tailwind CSS + lucide-react + recharts
|
|
11
|
-
- DO NOT import from @uxuissk/design-system or any external npm package
|
|
12
|
-
- Recreate components inline using Tailwind classes matching tokens below
|
|
13
|
-
- For font: use `font-['Inter']` for buttons, system font for body
|
|
14
|
-
|
|
15
|
-
**Full mode** (Claude Code, Cursor, Bolt.new, Lovable, Firebase Studio):
|
|
16
|
-
- Install: `npm install @uxuissk/design-system`
|
|
17
|
-
- CSS: `import "@uxuissk/design-system/styles.css"` (always first)
|
|
18
|
-
- Import: `import { DSButton, DSInput, Card, ... } from "@uxuissk/design-system"`
|
|
19
|
-
|
|
20
|
-
## Brand
|
|
21
|
-
|
|
22
|
-
- Product: **Sellsuki** — E-commerce management platform for Thai merchants
|
|
23
|
-
- Mood: Professional, clean, trustworthy, light, airy, functional
|
|
24
|
-
- Design: Clarity over decoration — flat design, minimal shadows
|
|
25
|
-
|
|
26
|
-
## Colors
|
|
27
|
-
|
|
28
|
-
| Token | Hex | Tailwind | Usage |
|
|
29
|
-
|-------|-----|----------|-------|
|
|
30
|
-
| Primary | `#32a9ff` | `bg-[#32a9ff]` | Buttons, links, brand |
|
|
31
|
-
| Primary hover | `#1b8bf5` | `hover:bg-[#1b8bf5]` | Hover states |
|
|
32
|
-
| Primary light | `#f0f9ff` | `bg-[#f0f9ff]` | Badges, highlights |
|
|
33
|
-
| Text primary | `#1f2937` | `text-[#1f2937]` | Headings, body |
|
|
34
|
-
| Text secondary | `#6b7280` | `text-[#6b7280]` | Muted, labels |
|
|
35
|
-
| Border | `#e5e7eb` | `border-[#e5e7eb]` | Dividers, cards |
|
|
36
|
-
| Surface | `#f9fafb` | `bg-[#f9fafb]` | Page background |
|
|
37
|
-
| Success | `#059669` | `bg-[#059669]` | Success states |
|
|
38
|
-
| Success light | `#d1fae5` | `bg-[#d1fae5]` | Success badges |
|
|
39
|
-
| Warning | `#d97706` | `bg-[#d97706]` | Warning states |
|
|
40
|
-
| Warning light | `#fef3c7` | `bg-[#fef3c7]` | Warning badges |
|
|
41
|
-
| Danger | `#e11d48` | `bg-[#e11d48]` | Error, destructive |
|
|
42
|
-
| Danger light | `#ffe4e6` | `bg-[#ffe4e6]` | Error badges |
|
|
43
|
-
|
|
44
|
-
## Typography
|
|
45
|
-
|
|
46
|
-
| Element | Font | Weight | Size |
|
|
47
|
-
|---------|------|--------|------|
|
|
48
|
-
| Body text | DB HeaventRounded, Noto Sans Thai, sans-serif | 400 | 16px |
|
|
49
|
-
| Heading | DB HeaventRounded, Noto Sans Thai, sans-serif | 700 | 24-32px |
|
|
50
|
-
| Button | Inter, sans-serif | 600 | 14px |
|
|
51
|
-
| Label | DB HeaventRounded | 500 | 14px |
|
|
52
|
-
| Caption | DB HeaventRounded | 400 | 12px |
|
|
53
|
-
|
|
54
|
-
## Spacing
|
|
55
|
-
|
|
56
|
-
- Page padding: `24px` desktop / `16px` mobile
|
|
57
|
-
- Card gap: `16px`
|
|
58
|
-
- Form field gap: `16px`
|
|
59
|
-
- Section gap: `32px`
|
|
60
|
-
- Border radius: `8px` (default)
|
|
61
|
-
- Shadow: `0px 1px 2px 0px rgba(0,0,0,0.05)` — prefer borders
|
|
62
|
-
|
|
63
|
-
## Layout
|
|
64
|
-
|
|
65
|
-
- Navbar: `72px` height, white background, bottom border
|
|
66
|
-
- Sidebar: `280px` width, white background, right border
|
|
67
|
-
- Content: `flex-1`, `24px` padding
|
|
68
|
-
|
|
69
|
-
## Button System
|
|
70
|
-
|
|
71
|
-
| Variant | Background | Text | Border |
|
|
72
|
-
|---------|-----------|------|--------|
|
|
73
|
-
| Primary | `#32a9ff` | white | none |
|
|
74
|
-
| Secondary | `#f3f4f6` | `#1f2937` | none |
|
|
75
|
-
| Outline | transparent | `#32a9ff` | `#32a9ff` |
|
|
76
|
-
| Ghost | transparent | `#6b7280` | none |
|
|
77
|
-
| Destructive | `#e11d48` | white | none |
|
|
78
|
-
| Link | transparent | `#32a9ff` | none |
|
|
79
|
-
|
|
80
|
-
Sizes: `sm` 32px / `md` 36px (default) / `lg` 40px / `xl` 44px
|
|
81
|
-
**Rule: Max 1 primary button per view**
|
|
82
|
-
|
|
83
|
-
## Component Patterns (Tailwind)
|
|
84
|
-
|
|
85
|
-
### Button
|
|
86
|
-
```html
|
|
87
|
-
<button class="h-9 px-4 bg-[#32a9ff] hover:bg-[#1b8bf5] text-white text-sm font-semibold rounded-lg font-['Inter']">
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
### Card
|
|
91
|
-
```html
|
|
92
|
-
<div class="bg-white rounded-lg border border-[#e5e7eb] p-4">
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
### Input
|
|
96
|
-
```html
|
|
97
|
-
<input class="w-full h-9 px-3 border border-[#e5e7eb] rounded-lg text-sm text-[#1f2937] placeholder:text-[#9ca3af] focus:border-[#32a9ff] focus:ring-1 focus:ring-[#32a9ff] outline-none" />
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### Badge
|
|
101
|
-
```html
|
|
102
|
-
<span class="px-2 py-0.5 text-xs font-medium rounded-full bg-[#d1fae5] text-[#065f46]">Active</span>
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
### Table Header
|
|
106
|
-
```html
|
|
107
|
-
<th class="px-4 py-3 bg-[#f9fafb] text-[#6b7280] text-xs font-semibold uppercase text-left">
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### Table Row
|
|
111
|
-
```html
|
|
112
|
-
<tr class="border-b border-[#e5e7eb] hover:bg-[#f9fafb]">
|
|
113
|
-
<td class="px-4 py-3 text-sm text-[#1f2937]">
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
### Sidebar Menu Item
|
|
117
|
-
```html
|
|
118
|
-
<div class="flex items-center gap-3 px-4 py-2.5 rounded-lg text-sm text-[#6b7280] hover:bg-[#f0f9ff] hover:text-[#32a9ff] cursor-pointer">
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
### Active Menu Item
|
|
122
|
-
```html
|
|
123
|
-
<div class="flex items-center gap-3 px-4 py-2.5 rounded-lg text-sm bg-[#f0f9ff] text-[#32a9ff] font-medium">
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
## Components (41 total)
|
|
127
|
-
|
|
128
|
-
**Data Entry**: DSButton, IconButton, ButtonGroup, DSInput, DSTextarea, DSCheckbox, CheckboxGroup, DSRadio, RadioGroup, Switch, Dropdown, DatePicker, SearchField, ColorPicker, FileUpload, TagInput, Rating, TransferList
|
|
129
|
-
|
|
130
|
-
**Data Display**: DSTable, Card, CardHeader, CardBody, CardFooter, StatCard, Statistic, Badge, Tag, Avatar, AvatarGroup, Timeline, Tree, EmptyState, Skeleton
|
|
131
|
-
|
|
132
|
-
**Navigation**: TopNavbar, Sidebar, Breadcrumb, Tabs, Stepper, Pagination
|
|
133
|
-
|
|
134
|
-
**Feedback**: Alert, Modal, Drawer, ConfirmDialog, Notification, toast, ToastContainer, Tooltip, Popover, ProgressBar, Spinner
|
|
135
|
-
|
|
136
|
-
**Layout**: Divider, Menu, ImagePreview
|
|
137
|
-
|
|
138
|
-
## Rules
|
|
139
|
-
|
|
140
|
-
1. Always use flat, clean design — no heavy shadows or gradients
|
|
141
|
-
2. Max 1 primary button per view
|
|
142
|
-
3. Handle loading (skeleton), empty, and error states
|
|
143
|
-
4. Use DB HeaventRounded for text, Inter for buttons only
|
|
144
|
-
5. Only colors from the palette above — no random colors
|
|
145
|
-
6. Spacing must follow the defined system
|
|
146
|
-
7. Support responsive: desktop-first
|
|
147
|
-
|
|
148
|
-
## npm Package (for production code)
|
|
149
|
-
|
|
150
|
-
```bash
|
|
151
|
-
npm install @uxuissk/design-system
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
```tsx
|
|
155
|
-
import "@uxuissk/design-system/styles.css";
|
|
156
|
-
import { DSButton, DSInput, Card } from "@uxuissk/design-system";
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
## Resources
|
|
160
|
-
|
|
161
|
-
- Storybook: https://sellsukidesignsystemv12.vercel.app
|
|
162
|
-
- npm: @uxuissk/design-system
|
|
163
|
-
- GitHub: https://github.com/BearyCenter/Sellsukidesignsystemv12
|
package/dist/header-main.svg
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
<svg width="1428" height="72" viewBox="0 0 1428 72" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="path-1-inside-1_32334_9945" fill="white">
|
|
3
|
-
<path d="M0 0H1428V72H0V0Z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<path d="M0 0H1428V72H0V0Z" fill="white"/>
|
|
6
|
-
<path d="M1428 72V71H0V72V73H1428V72Z" fill="#E5E7EB" mask="url(#path-1-inside-1_32334_9945)"/>
|
|
7
|
-
<path d="M23.75 30.75H40.25M23.75 36H32M23.75 41.25H40.25" stroke="#111827" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
-
<path d="M89.4445 33.8598H81.4368L85.4411 37.8631L89.4445 33.8598Z" fill="#09193A"/>
|
|
9
|
-
<path d="M85.4409 37.8631L93.6966 46.1188L98.2884 41.4101C98.8291 40.8562 99.1309 40.1133 99.1309 39.3388V33.8598H89.4453L85.4409 37.8641V37.8631Z" fill="#E6EAEE"/>
|
|
10
|
-
<path d="M99.13 26.0615C99.1259 25.3693 98.26 25.0441 97.7701 25.534L89.4443 33.8598L85.4399 37.8642L93.6956 46.1198L98.2874 41.4112C98.8281 40.8573 99.13 40.1143 99.13 39.3399V26.0777C99.13 26.0726 99.13 26.0665 99.13 26.0615Z" fill="url(#paint0_linear_32334_9945)"/>
|
|
11
|
-
<path d="M81.4367 33.8598H72V39.3378C72 40.1123 72.3029 40.8562 72.8436 41.4101L77.3144 45.9887L85.44 37.8631L81.4356 33.8588L81.4367 33.8598Z" fill="#E6EAEE"/>
|
|
12
|
-
<path d="M77.3155 45.9887L81.0383 49.802C83.5253 52.3489 87.6221 52.3479 90.1071 49.799L93.6957 46.1188L85.44 37.8631L77.3145 45.9887H77.3155Z" fill="#E6EAEE"/>
|
|
13
|
-
<path d="M77.3155 45.9887L81.0383 49.802C83.5253 52.3489 87.6221 52.3479 90.1071 49.799L93.6957 46.1188L85.44 37.8631L77.3145 45.9887H77.3155Z" fill="url(#paint1_linear_32334_9945)"/>
|
|
14
|
-
<path d="M85.441 37.8631L81.4367 33.8588L73.1607 25.5828C72.7328 25.1549 72.001 25.4567 72 26.0625V26.0767V33.8588V39.0543C72 40.0096 72.374 40.9274 73.0417 41.6114L77.3154 45.9877L82.3483 51.1415C84.1178 52.9537 87.0316 52.9526 88.799 51.1395L93.218 46.6077C93.4833 46.3363 93.4802 45.9013 93.2119 45.633L85.441 37.8621V37.8631Z" fill="url(#paint2_linear_32334_9945)"/>
|
|
15
|
-
<path d="M99.1311 23.9637C97.8627 23.9637 96.8352 22.9647 96.8352 21.7319C96.8352 21.1932 97.0314 20.6983 97.3586 20.3131C97.4318 20.2267 97.5131 20.1484 97.5975 20.0742C98.004 19.7185 98.5406 19.5 99.1311 19.5C100.361 19.5 101.362 20.4411 101.422 21.6221C101.424 21.6587 101.428 21.6953 101.428 21.7319C101.428 21.7685 101.424 21.805 101.422 21.8416C101.363 23.0236 100.362 23.9637 99.1311 23.9637Z" fill="url(#paint3_linear_32334_9945)"/>
|
|
16
|
-
<path d="M113.115 41.8881C113.619 42.4405 114.174 42.8672 114.782 43.1704C115.39 43.4756 116.045 43.6262 116.75 43.6262C117.567 43.6262 118.233 43.4176 118.745 42.9986C119.258 42.5814 119.515 42.0098 119.515 41.2875C119.515 40.6599 119.359 40.1578 119.044 39.7774C118.731 39.3969 118.264 39.0609 117.648 38.7654C117.03 38.4719 116.275 38.1532 115.381 37.8114C114.906 37.6395 114.359 37.4078 113.741 37.1123C113.123 36.8188 112.54 36.4384 111.988 35.9729C111.435 35.5075 110.98 34.9378 110.618 34.2619C110.257 33.588 110.078 32.7749 110.078 31.8248C110.078 30.6854 110.367 29.7005 110.947 28.874C111.526 28.0474 112.314 27.4101 113.312 26.964C114.311 26.5179 115.427 26.2939 116.661 26.2939C117.895 26.2939 119.031 26.5083 119.954 26.9351C120.875 27.3619 121.645 27.9045 122.263 28.5592C122.319 28.619 122.375 28.6808 122.431 28.7407C123.217 29.6155 122.991 30.9925 121.962 31.5622L121.922 31.5834C121.18 31.9928 120.253 31.8402 119.687 31.2088C119.645 31.1605 119.6 31.1141 119.556 31.0658C119.185 30.6757 118.762 30.3629 118.287 30.1254C117.812 29.8878 117.269 29.7681 116.663 29.7681C115.865 29.7681 115.267 29.9535 114.867 30.3243C114.467 30.6951 114.268 31.1276 114.268 31.622C114.268 32.1164 114.429 32.549 114.753 32.9198C115.076 33.2906 115.57 33.642 116.236 33.9742C116.901 34.3063 117.737 34.6443 118.745 34.9861C119.39 35.214 120.014 35.4998 120.612 35.8416C121.211 36.1834 121.752 36.5967 122.236 37.0814C122.721 37.5662 123.102 38.1359 123.376 38.7925C123.652 39.4491 123.789 40.2041 123.789 41.0577C123.789 42.0272 123.598 42.8923 123.219 43.6513C122.839 44.4122 122.317 45.0533 121.651 45.5747C120.985 46.0981 120.24 46.4959 119.413 46.7721C118.586 47.0482 117.717 47.1853 116.804 47.1853C115.587 47.1853 114.452 46.9517 113.397 46.4863C112.343 46.0208 111.426 45.3893 110.647 44.5898C110.333 44.2673 110.045 43.9332 109.786 43.5895C109.172 42.7745 109.371 41.6081 110.205 41.0191C110.991 40.4649 112.08 40.6097 112.675 41.3667C112.816 41.5463 112.963 41.7182 113.112 41.8823L113.115 41.8881Z" fill="#09193A"/>
|
|
17
|
-
<path d="M145.505 26.543V45.4125C145.505 46.4553 144.661 47.2993 143.618 47.2993C142.575 47.2993 141.731 46.4553 141.731 45.4125V26.543C141.731 25.5002 142.575 24.6563 143.618 24.6563C144.661 24.6563 145.505 25.5002 145.505 26.543Z" fill="#09193A"/>
|
|
18
|
-
<path d="M152.737 26.543V45.4125C152.737 46.4553 151.893 47.2993 150.851 47.2993C149.808 47.2993 148.964 46.4553 148.964 45.4125V26.543C148.964 25.5002 149.808 24.6563 150.851 24.6563C151.893 24.6563 152.737 25.5002 152.737 26.543Z" fill="#09193A"/>
|
|
19
|
-
<path d="M159.079 43.412C159.568 43.7345 160.033 43.9759 160.476 44.1324C160.916 44.2888 161.333 44.368 161.725 44.368C162.235 44.368 162.625 44.2559 162.901 44.03C163.175 43.806 163.312 43.497 163.312 43.105C163.312 42.7516 163.2 42.4542 162.975 42.2089C162.749 41.9636 162.42 41.7435 161.99 41.5484C161.559 41.3534 161.011 41.1468 160.344 40.9305C159.717 40.6949 159.11 40.4168 158.523 40.0923C157.936 39.7698 157.451 39.3392 157.069 38.8004C156.687 38.2616 156.495 37.5722 156.495 36.7282C156.495 35.8843 156.712 35.2451 157.142 34.687C157.573 34.1289 158.156 33.7079 158.89 33.424C159.624 33.1401 160.443 32.9972 161.343 32.9972C162.107 32.9972 162.822 33.0957 163.488 33.2907C164.154 33.4877 164.77 33.7465 165.34 34.069C165.869 34.3703 166.256 34.7797 166.259 35.4343C166.269 37.0449 164.494 37.0527 163.415 36.5197C162.739 36.1875 162.078 36.0195 161.431 36.0195C160.601 36.0195 159.512 36.6278 160.352 37.5258C161.032 38.2519 162.156 38.447 163.048 38.7849C163.772 39.0592 164.444 39.3681 165.06 39.71C165.678 40.0537 166.173 40.4786 166.543 40.9884C166.916 41.4982 167.101 42.1645 167.101 42.9872C167.101 44.339 166.661 45.3915 165.779 46.1466C164.898 46.8997 163.683 47.2782 162.134 47.2782C161.175 47.2782 160.298 47.1508 159.504 46.8959C158.71 46.6409 157.996 46.303 157.359 45.882C157.152 45.7449 156.951 45.6039 156.758 45.461C156.115 44.9821 155.988 44.0686 156.48 43.4352L156.584 43.3019C157.065 42.684 157.952 42.5816 158.575 43.0567C158.747 43.188 158.915 43.3058 159.077 43.414L159.079 43.412Z" fill="#09193A"/>
|
|
20
|
-
<path d="M137.516 42.6762C137.197 42.6762 136.904 42.7805 136.654 42.9524C136.647 42.9582 136.589 43.0045 136.502 43.0741C136.498 43.0779 136.492 43.0818 136.486 43.0856C135.471 44.0281 134.32 44.3486 132.933 44.3486C132.217 44.3486 131.604 44.1806 131.095 43.8427C130.585 43.5047 130.204 43.0181 129.949 42.3827C129.789 41.983 129.685 41.5214 129.627 41.0116H138.288C139.509 41.0116 139.679 39.9919 139.679 39.4145C139.619 38.1805 139.36 37.1087 138.9 36.1991C138.373 35.1563 137.605 34.3626 136.595 33.816C135.587 33.2695 134.364 32.9972 132.931 32.9972C131.498 32.9972 130.255 33.2907 129.198 33.8759C128.142 34.463 127.327 35.2876 126.751 36.3497C126.176 37.4119 125.888 38.6787 125.888 40.1483C125.888 41.618 126.176 42.8558 126.751 43.918C127.327 44.9801 128.142 45.8105 129.198 46.4073C130.255 47.004 131.489 47.3014 132.902 47.3014C134.316 47.3014 135.967 47.0735 137.303 46.4073C138.124 45.9979 139.07 45.3316 139.07 44.3216C139.07 43.414 138.373 42.6801 137.512 42.6801L137.516 42.6762ZM130.813 36.7533C131.427 36.2068 132.186 35.9345 133.086 35.9345C134.038 35.9345 134.843 36.2165 135.502 36.7784C136.16 37.3423 136.498 38.0897 136.515 39.0263H129.681C129.82 38.0569 130.197 37.2979 130.811 36.7533H130.813Z" fill="#09193A"/>
|
|
21
|
-
<path d="M181.881 34.7678C181.881 33.7887 181.087 32.993 180.106 32.993C179.125 32.993 178.331 33.7867 178.331 34.7678C178.331 34.7813 178.331 34.7948 178.333 34.8083C178.333 34.818 178.331 34.8276 178.331 34.8373V41.5867C178.331 42.0174 178.221 42.4229 178.001 42.8053C177.781 43.1877 177.493 43.5005 177.134 43.7439C176.777 43.9872 176.367 44.1089 175.909 44.1089C175.452 44.1089 175.065 43.9833 174.699 43.7303C174.332 43.4774 174.038 43.1664 173.818 42.7918C173.598 42.4191 173.488 42.0174 173.488 41.5867V34.8643C173.488 34.8508 173.486 34.8392 173.484 34.8257C173.484 34.8064 173.488 34.7851 173.488 34.7658C173.488 33.7867 172.694 32.9911 171.713 32.9911C170.732 32.9911 169.938 33.7848 169.938 34.7658C169.938 34.7871 169.94 34.8064 169.942 34.8257C169.942 34.8392 169.938 34.8508 169.938 34.8643V41.5867C169.938 42.5774 170.209 43.5044 170.749 44.3734C171.29 45.2425 172.014 45.9415 172.922 46.4745C173.83 47.0075 174.834 47.2721 175.933 47.2721C177.031 47.2721 177.982 47.0114 178.889 46.488C179.797 45.9647 180.521 45.2695 181.062 44.4024C181.603 43.5334 181.873 42.5948 181.873 41.5867V34.8373C181.873 34.8276 181.873 34.818 181.871 34.8083C181.871 34.7948 181.873 34.7813 181.873 34.7678H181.881Z" fill="#09193A"/>
|
|
22
|
-
<path d="M202.252 30.4749C202.863 30.4749 203.384 30.274 203.813 29.8743C204.242 29.4726 204.456 28.9782 204.456 28.3853C204.456 27.7925 204.242 27.2749 203.813 26.8829C203.384 26.4928 202.863 26.2958 202.252 26.2958C201.642 26.2958 201.117 26.4909 200.679 26.8829C200.24 27.2749 200.02 27.7751 200.02 28.3853C200.02 28.9956 200.238 29.4726 200.679 29.8743C201.117 30.276 201.642 30.4749 202.252 30.4749Z" fill="url(#paint4_linear_32334_9945)"/>
|
|
23
|
-
<path d="M202.224 33.0068C201.142 33.0068 200.265 33.8835 200.265 34.965V45.3412C200.265 46.4226 201.142 47.2994 202.224 47.2994C203.305 47.2994 204.182 46.4226 204.182 45.3412V34.965C204.182 33.8835 203.305 33.0068 202.224 33.0068Z" fill="#09193A"/>
|
|
24
|
-
<path d="M189.04 26.6242C189.04 25.5582 188.174 24.693 187.108 24.693C186.042 24.693 185.177 25.5582 185.177 26.6242V45.4126C185.177 46.4786 186.042 47.3437 187.108 47.3437C188.174 47.3437 189.04 46.4786 189.04 45.4126V26.6242Z" fill="url(#paint5_linear_32334_9945)"/>
|
|
25
|
-
<path d="M197.096 35.1948C197.992 34.2099 197.293 32.6302 195.963 32.6302C195.283 32.6302 194.634 32.9179 194.176 33.422L189.04 39.0977V40.5383L190.681 42.2339L195.441 37.0082L197.094 35.1929L197.096 35.1948Z" fill="url(#paint6_linear_32334_9945)"/>
|
|
26
|
-
<path d="M192.871 39.8333L190.681 42.2338L195.15 46.8473C195.457 47.1641 195.878 47.3417 196.318 47.3417C197.755 47.3417 198.487 45.6133 197.484 44.5821L192.871 39.8314" fill="url(#paint7_linear_32334_9945)"/>
|
|
27
|
-
<path d="M224.142 36.5762L227.402 37.2617C230.812 37.9824 231.85 40.2061 231.788 42.3857C231.7 45.418 228.949 47.5098 224.414 47.3779C219.545 47.2285 217.752 44.5566 217.515 42.2627C217.436 41.4629 218.007 40.7422 218.798 40.707C219.562 40.6807 220.283 41.0674 220.468 41.9902C220.775 43.5811 222.138 44.7588 224.572 44.8291C226.787 44.8818 228.598 43.959 228.642 42.5439C228.677 41.375 227.947 40.3906 226.462 39.96C225.012 39.5381 223.412 39.3447 221.953 38.9053C218.719 37.9297 218.024 36.1895 218.024 34.4316C218.024 31.1533 221.232 29.5449 224.414 29.4482C227.095 29.3691 230.355 30.6436 231.12 33.7988C231.322 34.5986 230.698 35.3281 229.793 35.3281C228.905 35.3369 228.475 34.9238 228.255 34.2822C227.692 32.6475 226.611 31.918 224.432 31.9707C222.366 32.0322 221.206 32.8936 221.162 34.2998C221.109 35.7412 222.814 36.2246 224.142 36.5762ZM235.62 52.1592C234.205 52.1592 233.607 51.4648 233.607 50.7002C233.607 49.8477 234.214 49.417 235.075 49.417H235.383C235.998 49.417 236.481 49.3906 236.701 48.8369L237.492 46.8594L233.361 36.4092C233.256 36.1455 233.159 35.7764 233.15 35.5742C233.106 34.4844 233.836 34.0625 234.548 34.0361C235.717 34.001 235.98 34.9414 236.095 35.249L239.004 43.3262L241.772 35.1963C241.878 34.8975 242.142 34.001 243.258 34.0361C243.943 34.0625 244.646 34.4668 244.603 35.5127C244.594 35.7061 244.497 36.0576 244.4 36.3125L239.654 48.8018C238.644 51.3594 237.562 52.1592 235.62 52.1592ZM245.648 44.4688C245.561 44.2842 245.517 44.082 245.517 43.8623C245.517 43.0713 246.149 42.4297 246.949 42.4297C247.556 42.4297 247.978 42.8516 248.276 43.3438C248.892 44.3369 250.228 44.6357 251.168 44.6357C252.082 44.6357 253.629 44.4951 253.629 43.4141C253.629 42.377 252.46 42.0166 250.878 41.6738C248.619 41.1816 245.789 40.4082 245.789 37.7451C245.789 35.0469 248.646 33.8779 251.124 33.9307C253.269 33.9746 255.264 34.7041 256.055 36.1279C256.169 36.3389 256.239 36.5762 256.239 36.8398C256.239 37.6133 255.677 38.2109 254.93 38.2109C254.367 38.2109 253.928 37.8506 253.629 37.4551C253.128 36.7871 252.117 36.4971 251.309 36.4531C249.964 36.3828 248.856 36.7432 248.856 37.6045C248.856 38.4307 250.166 38.7207 251.687 39.0811C255.026 39.8721 256.688 40.7773 256.688 43.1943C256.688 46.4287 253.796 47.3076 250.948 47.29C248.654 47.2725 246.562 46.3848 245.648 44.4688ZM259.641 34.2295V31.751C259.641 30.7666 260.229 30.2568 261.117 30.2568C262.005 30.2568 262.594 30.7666 262.594 31.751V34.2295H263.692C264.545 34.2295 265.002 34.625 265.002 35.4072C265.002 36.1982 264.545 36.6025 263.692 36.6025H262.594V43.4844C262.594 44.126 262.884 44.5742 263.561 44.5742C263.842 44.5742 264.079 44.5215 264.325 44.5215C264.914 44.5215 265.178 45.1895 265.178 45.708C265.178 46.7012 264.272 47.2197 263.156 47.2197C260.81 47.2197 259.641 46.1299 259.641 44.0732V36.6025H258.823C258.032 36.6025 257.707 36.1367 257.707 35.4072C257.707 34.6865 258.032 34.2295 258.823 34.2295H259.641ZM275.303 43.4316C275.584 43.0889 275.988 42.8164 276.472 42.8164C277.254 42.8164 277.852 43.4316 277.852 44.2139C277.852 44.5039 277.764 44.7676 277.614 44.9873C276.621 46.4463 274.74 47.3252 272.561 47.3252C268.052 47.3252 266.03 44.4775 266.03 40.5576C266.03 36.5586 268.641 33.9307 272.385 33.9307C276.015 33.9307 278.335 36.6992 278.335 40.0127C278.335 41.1641 277.983 41.5156 276.823 41.5156H269.062C269.168 43.2822 270.381 44.5566 272.596 44.5566C273.791 44.5566 274.793 44.0557 275.303 43.4316ZM272.297 36.4004C270.381 36.4004 269.335 37.9736 269.115 39.4326H275.294C275.083 37.8857 274.301 36.4004 272.297 36.4004ZM283.178 35.583C284.127 34.4316 285.34 33.9658 286.816 33.9658C288.258 33.9658 289.62 34.5898 290.411 35.8906C291.387 34.6953 292.644 33.9658 294.164 33.9658C296.968 33.9658 298.77 35.1172 298.77 37.8945V45.6113C298.77 46.5254 298.198 47.1758 297.293 47.1758C296.37 47.1758 295.816 46.5254 295.816 45.6113V38.5801C295.816 37.3145 295.386 36.5234 293.839 36.5234C292.072 36.5234 291.026 37.5342 291.026 39.1865V45.6113C291.026 46.5254 290.455 47.1758 289.55 47.1758C288.627 47.1758 288.073 46.5254 288.073 45.6113V38.791C288.073 37.499 287.713 36.5234 286.201 36.5234C284.004 36.5234 283.292 38.3604 283.292 39.1865V45.6113C283.292 46.5254 282.721 47.1758 281.815 47.1758C280.893 47.1758 280.339 46.5254 280.339 45.6113V35.583C280.339 34.6689 280.831 34.0186 281.754 34.0186C282.659 34.0186 283.178 34.6689 283.178 35.583ZM302.593 34.8711V30.7666C302.593 30.0811 303.032 29.6064 303.7 29.6064C304.368 29.6064 304.799 30.0811 304.799 30.7666V34.8711C304.799 35.5479 304.368 36.0225 303.7 36.0225C303.032 36.0225 302.593 35.5479 302.593 34.8711ZM307.98 44.4688C307.893 44.2842 307.849 44.082 307.849 43.8623C307.849 43.0713 308.481 42.4297 309.281 42.4297C309.888 42.4297 310.31 42.8516 310.608 43.3438C311.224 44.3369 312.56 44.6357 313.5 44.6357C314.414 44.6357 315.961 44.4951 315.961 43.4141C315.961 42.377 314.792 42.0166 313.21 41.6738C310.951 41.1816 308.121 40.4082 308.121 37.7451C308.121 35.0469 310.978 33.8779 313.456 33.9307C315.601 33.9746 317.596 34.7041 318.387 36.1279C318.501 36.3389 318.571 36.5762 318.571 36.8398C318.571 37.6133 318.009 38.2109 317.262 38.2109C316.699 38.2109 316.26 37.8506 315.961 37.4551C315.46 36.7871 314.449 36.4971 313.641 36.4531C312.296 36.3828 311.188 36.7432 311.188 37.6045C311.188 38.4307 312.498 38.7207 314.019 39.0811C317.358 39.8721 319.02 40.7773 319.02 43.1943C319.02 46.4287 316.128 47.3076 313.28 47.29C310.986 47.2725 308.895 46.3848 307.98 44.4688ZM327.668 45.6025V31.6895C327.668 30.5469 328.345 29.6064 329.777 29.6064C330.463 29.6064 331.201 29.9229 331.605 30.5469L339.111 42.6406V31.2588C339.111 30.1602 339.683 29.6064 340.649 29.6064C341.616 29.6064 342.205 30.1602 342.205 31.2588V45.0312C342.205 46.4287 341.467 47.2197 340.236 47.2197C339.138 47.2197 338.461 46.6572 338.03 45.9805L330.762 34.2998V45.6025C330.762 46.6924 330.19 47.2197 329.224 47.2197C328.257 47.2197 327.668 46.6924 327.668 45.6025ZM356.03 45.585C356.153 46.3408 355.644 47.0352 354.888 47.1582C354.132 47.2812 353.429 46.7715 353.306 46.0156C353.271 45.8135 353.235 45.6113 353.218 45.4004C352.005 46.8682 350.502 47.29 349.043 47.29C346.828 47.29 344.657 46.1562 344.64 43.6162C344.622 40.8301 347.241 39.582 349.685 39.2832C350.476 39.1865 351.311 39.1514 351.961 39.1514C352.444 39.1514 352.822 39.1689 353.024 39.1953V38.4131C353.024 37.1738 351.82 36.6289 350.546 36.6289C349.359 36.6289 348.814 36.9629 348.006 37.7715C347.681 38.0791 347.241 38.2812 346.802 38.2812C346.547 38.2812 346.283 38.2197 346.046 38.0615C345.501 37.7012 345.264 36.9629 345.65 36.2598C346.547 34.625 348.568 33.9307 350.871 33.9307C353.314 33.9307 355.942 34.915 355.96 38.0439V44.4951C355.96 44.9082 355.978 45.2598 356.03 45.585ZM349.685 44.7764C352.093 44.7764 353.024 43.3965 353.024 42.4297V40.9443C351.311 40.8389 347.663 41.3135 347.663 43.3965C347.663 44.3721 348.604 44.7764 349.685 44.7764ZM361.576 35.583C362.525 34.4316 363.738 33.9658 365.215 33.9658C366.656 33.9658 368.019 34.5898 368.81 35.8906C369.785 34.6953 371.042 33.9658 372.562 33.9658C375.366 33.9658 377.168 35.1172 377.168 37.8945V45.6113C377.168 46.5254 376.597 47.1758 375.691 47.1758C374.769 47.1758 374.215 46.5254 374.215 45.6113V38.5801C374.215 37.3145 373.784 36.5234 372.237 36.5234C370.471 36.5234 369.425 37.5342 369.425 39.1865V45.6113C369.425 46.5254 368.854 47.1758 367.948 47.1758C367.025 47.1758 366.472 46.5254 366.472 45.6113V38.791C366.472 37.499 366.111 36.5234 364.6 36.5234C362.402 36.5234 361.69 38.3604 361.69 39.1865V45.6113C361.69 46.5254 361.119 47.1758 360.214 47.1758C359.291 47.1758 358.737 46.5254 358.737 45.6113V35.583C358.737 34.6689 359.229 34.0186 360.152 34.0186C361.058 34.0186 361.576 34.6689 361.576 35.583ZM388.506 43.4316C388.787 43.0889 389.191 42.8164 389.675 42.8164C390.457 42.8164 391.055 43.4316 391.055 44.2139C391.055 44.5039 390.967 44.7676 390.817 44.9873C389.824 46.4463 387.943 47.3252 385.764 47.3252C381.255 47.3252 379.233 44.4775 379.233 40.5576C379.233 36.5586 381.844 33.9307 385.588 33.9307C389.218 33.9307 391.538 36.6992 391.538 40.0127C391.538 41.1641 391.187 41.5156 390.026 41.5156H382.266C382.371 43.2822 383.584 44.5566 385.799 44.5566C386.994 44.5566 387.996 44.0557 388.506 43.4316ZM385.5 36.4004C383.584 36.4004 382.538 37.9736 382.318 39.4326H388.497C388.286 37.8857 387.504 36.4004 385.5 36.4004Z" fill="#1F2937"/>
|
|
28
|
-
<path d="M447.499 42H442.97C442.401 42 441.938 41.5488 441.938 40.9922V31.5527C441.938 30.9961 442.401 30.5449 442.97 30.5449H446.854C448.946 30.5449 450.88 31.1895 450.88 33.627C450.88 34.4473 450.405 35.4727 449.327 35.9766C450.616 36.2637 451.489 37.4531 451.489 38.7422C451.489 40.4062 450.329 42 447.499 42ZM444.001 35.2969H446.737C448.319 35.2969 448.823 34.5176 448.829 33.6973C448.841 32.7305 448.05 32.2793 446.854 32.2793H444.001V35.2969ZM444.001 40.2891H447.487C448.735 40.2891 449.444 39.5332 449.438 38.7422C449.433 37.4531 448.466 37.0371 447.183 37.0371H444.001V40.2891ZM453.019 38.9941V34.4121C453.019 33.8027 453.394 33.3691 453.997 33.3691C454.612 33.3691 454.987 33.8027 454.987 34.4121V39.1406C454.987 39.9785 455.468 40.4824 456.382 40.4824C457.823 40.4824 458.579 39.4746 458.579 38.2734V34.4121C458.579 33.8027 458.96 33.3691 459.563 33.3691C460.179 33.3691 460.548 33.8027 460.548 34.4121V41.1094C460.548 41.7188 460.22 42.1523 459.604 42.1523C459.001 42.1523 458.655 41.7188 458.655 41.1094C458.075 41.7773 457.267 42.1875 456.165 42.1875C453.692 42.1875 453.019 40.8398 453.019 38.9941ZM462.868 33.4863V31.834C462.868 31.1777 463.261 30.8379 463.853 30.8379C464.444 30.8379 464.837 31.1777 464.837 31.834V33.4863H465.569C466.138 33.4863 466.442 33.75 466.442 34.2715C466.442 34.7988 466.138 35.0684 465.569 35.0684H464.837V39.6562C464.837 40.084 465.03 40.3828 465.481 40.3828C465.669 40.3828 465.827 40.3477 465.991 40.3477C466.384 40.3477 466.56 40.793 466.56 41.1387C466.56 41.8008 465.956 42.1465 465.212 42.1465C463.647 42.1465 462.868 41.4199 462.868 40.0488V35.0684H462.323C461.796 35.0684 461.579 34.7578 461.579 34.2715C461.579 33.791 461.796 33.4863 462.323 33.4863H462.868ZM468.376 33.4863V31.834C468.376 31.1777 468.769 30.8379 469.36 30.8379C469.952 30.8379 470.345 31.1777 470.345 31.834V33.4863H471.077C471.646 33.4863 471.95 33.75 471.95 34.2715C471.95 34.7988 471.646 35.0684 471.077 35.0684H470.345V39.6562C470.345 40.084 470.538 40.3828 470.989 40.3828C471.177 40.3828 471.335 40.3477 471.499 40.3477C471.892 40.3477 472.067 40.793 472.067 41.1387C472.067 41.8008 471.464 42.1465 470.72 42.1465C469.155 42.1465 468.376 41.4199 468.376 40.0488V35.0684H467.831C467.304 35.0684 467.087 34.7578 467.087 34.2715C467.087 33.791 467.304 33.4863 467.831 33.4863H468.376ZM472.636 37.752C472.636 35.2324 474.101 33.2871 476.978 33.2871C479.837 33.2871 481.325 35.2324 481.325 37.752C481.325 40.248 479.837 42.1934 476.978 42.1934C474.101 42.1934 472.636 40.248 472.636 37.752ZM474.651 37.752C474.651 39.5508 475.683 40.4883 476.978 40.4883C478.226 40.4883 479.28 39.5508 479.28 37.752C479.28 36 478.226 34.9922 476.978 34.9922C475.683 34.9922 474.651 36 474.651 37.752ZM490.202 36.5039V41.0742C490.202 41.6836 489.821 42.1172 489.218 42.1172C488.603 42.1172 488.233 41.6836 488.233 41.0742V36.3574C488.233 35.5195 487.753 35.0156 486.839 35.0156C485.397 35.0156 484.683 36.0234 484.683 37.2246V41.0742C484.683 41.6836 484.302 42.1172 483.698 42.1172C483.083 42.1172 482.714 41.6836 482.714 41.0742V34.3887C482.714 33.7793 483.042 33.3457 483.657 33.3457C484.237 33.3457 484.583 33.75 484.606 34.3242V34.4473C485.198 33.7441 485.954 33.3105 487.056 33.3105C489.528 33.3105 490.202 34.6582 490.202 36.5039Z" fill="#1F2937"/>
|
|
29
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M505.732 32.6512C506.091 32.3067 506.66 32.3179 507.005 32.6762L511.456 37.4015L515.907 32.6762C516.252 32.3179 516.822 32.3067 517.18 32.6512C517.538 32.9958 517.549 33.5655 517.205 33.9238L512.105 39.3238C511.935 39.5003 511.701 39.6 511.456 39.6C511.211 39.6 510.977 39.5003 510.807 39.3238L505.707 33.9238C505.363 33.5655 505.374 32.9958 505.732 32.6512Z" fill="#6B7280"/>
|
|
30
|
-
<path d="M574.499 42H569.97C569.401 42 568.938 41.5488 568.938 40.9922V31.5527C568.938 30.9961 569.401 30.5449 569.97 30.5449H573.854C575.946 30.5449 577.88 31.1895 577.88 33.627C577.88 34.4473 577.405 35.4727 576.327 35.9766C577.616 36.2637 578.489 37.4531 578.489 38.7422C578.489 40.4062 577.329 42 574.499 42ZM571.001 35.2969H573.737C575.319 35.2969 575.823 34.5176 575.829 33.6973C575.841 32.7305 575.05 32.2793 573.854 32.2793H571.001V35.2969ZM571.001 40.2891H574.487C575.735 40.2891 576.444 39.5332 576.438 38.7422C576.433 37.4531 575.466 37.0371 574.183 37.0371H571.001V40.2891ZM580.019 38.9941V34.4121C580.019 33.8027 580.394 33.3691 580.997 33.3691C581.612 33.3691 581.987 33.8027 581.987 34.4121V39.1406C581.987 39.9785 582.468 40.4824 583.382 40.4824C584.823 40.4824 585.579 39.4746 585.579 38.2734V34.4121C585.579 33.8027 585.96 33.3691 586.563 33.3691C587.179 33.3691 587.548 33.8027 587.548 34.4121V41.1094C587.548 41.7188 587.22 42.1523 586.604 42.1523C586.001 42.1523 585.655 41.7188 585.655 41.1094C585.075 41.7773 584.267 42.1875 583.165 42.1875C580.692 42.1875 580.019 40.8398 580.019 38.9941ZM589.868 33.4863V31.834C589.868 31.1777 590.261 30.8379 590.853 30.8379C591.444 30.8379 591.837 31.1777 591.837 31.834V33.4863H592.569C593.138 33.4863 593.442 33.75 593.442 34.2715C593.442 34.7988 593.138 35.0684 592.569 35.0684H591.837V39.6562C591.837 40.084 592.03 40.3828 592.481 40.3828C592.669 40.3828 592.827 40.3477 592.991 40.3477C593.384 40.3477 593.56 40.793 593.56 41.1387C593.56 41.8008 592.956 42.1465 592.212 42.1465C590.647 42.1465 589.868 41.4199 589.868 40.0488V35.0684H589.323C588.796 35.0684 588.579 34.7578 588.579 34.2715C588.579 33.791 588.796 33.4863 589.323 33.4863H589.868ZM595.376 33.4863V31.834C595.376 31.1777 595.769 30.8379 596.36 30.8379C596.952 30.8379 597.345 31.1777 597.345 31.834V33.4863H598.077C598.646 33.4863 598.95 33.75 598.95 34.2715C598.95 34.7988 598.646 35.0684 598.077 35.0684H597.345V39.6562C597.345 40.084 597.538 40.3828 597.989 40.3828C598.177 40.3828 598.335 40.3477 598.499 40.3477C598.892 40.3477 599.067 40.793 599.067 41.1387C599.067 41.8008 598.464 42.1465 597.72 42.1465C596.155 42.1465 595.376 41.4199 595.376 40.0488V35.0684H594.831C594.304 35.0684 594.087 34.7578 594.087 34.2715C594.087 33.791 594.304 33.4863 594.831 33.4863H595.376ZM599.636 37.752C599.636 35.2324 601.101 33.2871 603.978 33.2871C606.837 33.2871 608.325 35.2324 608.325 37.752C608.325 40.248 606.837 42.1934 603.978 42.1934C601.101 42.1934 599.636 40.248 599.636 37.752ZM601.651 37.752C601.651 39.5508 602.683 40.4883 603.978 40.4883C605.226 40.4883 606.28 39.5508 606.28 37.752C606.28 36 605.226 34.9922 603.978 34.9922C602.683 34.9922 601.651 36 601.651 37.752ZM617.202 36.5039V41.0742C617.202 41.6836 616.821 42.1172 616.218 42.1172C615.603 42.1172 615.233 41.6836 615.233 41.0742V36.3574C615.233 35.5195 614.753 35.0156 613.839 35.0156C612.397 35.0156 611.683 36.0234 611.683 37.2246V41.0742C611.683 41.6836 611.302 42.1172 610.698 42.1172C610.083 42.1172 609.714 41.6836 609.714 41.0742V34.3887C609.714 33.7793 610.042 33.3457 610.657 33.3457C611.237 33.3457 611.583 33.75 611.606 34.3242V34.4473C612.198 33.7441 612.954 33.3105 614.056 33.3105C616.528 33.3105 617.202 34.6582 617.202 36.5039Z" fill="#1F2937"/>
|
|
31
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M632.732 32.6512C633.091 32.3067 633.66 32.3179 634.005 32.6762L638.456 37.4015L642.907 32.6762C643.252 32.3179 643.822 32.3067 644.18 32.6512C644.538 32.9958 644.549 33.5655 644.205 33.9238L639.105 39.3238C638.935 39.5003 638.701 39.6 638.456 39.6C638.211 39.6 637.977 39.5003 637.807 39.3238L632.707 33.9238C632.363 33.5655 632.374 32.9958 632.732 32.6512Z" fill="#6B7280"/>
|
|
32
|
-
<path d="M701.499 42H696.97C696.401 42 695.938 41.5488 695.938 40.9922V31.5527C695.938 30.9961 696.401 30.5449 696.97 30.5449H700.854C702.946 30.5449 704.88 31.1895 704.88 33.627C704.88 34.4473 704.405 35.4727 703.327 35.9766C704.616 36.2637 705.489 37.4531 705.489 38.7422C705.489 40.4062 704.329 42 701.499 42ZM698.001 35.2969H700.737C702.319 35.2969 702.823 34.5176 702.829 33.6973C702.841 32.7305 702.05 32.2793 700.854 32.2793H698.001V35.2969ZM698.001 40.2891H701.487C702.735 40.2891 703.444 39.5332 703.438 38.7422C703.433 37.4531 702.466 37.0371 701.183 37.0371H698.001V40.2891ZM707.019 38.9941V34.4121C707.019 33.8027 707.394 33.3691 707.997 33.3691C708.612 33.3691 708.987 33.8027 708.987 34.4121V39.1406C708.987 39.9785 709.468 40.4824 710.382 40.4824C711.823 40.4824 712.579 39.4746 712.579 38.2734V34.4121C712.579 33.8027 712.96 33.3691 713.563 33.3691C714.179 33.3691 714.548 33.8027 714.548 34.4121V41.1094C714.548 41.7188 714.22 42.1523 713.604 42.1523C713.001 42.1523 712.655 41.7188 712.655 41.1094C712.075 41.7773 711.267 42.1875 710.165 42.1875C707.692 42.1875 707.019 40.8398 707.019 38.9941ZM716.868 33.4863V31.834C716.868 31.1777 717.261 30.8379 717.853 30.8379C718.444 30.8379 718.837 31.1777 718.837 31.834V33.4863H719.569C720.138 33.4863 720.442 33.75 720.442 34.2715C720.442 34.7988 720.138 35.0684 719.569 35.0684H718.837V39.6562C718.837 40.084 719.03 40.3828 719.481 40.3828C719.669 40.3828 719.827 40.3477 719.991 40.3477C720.384 40.3477 720.56 40.793 720.56 41.1387C720.56 41.8008 719.956 42.1465 719.212 42.1465C717.647 42.1465 716.868 41.4199 716.868 40.0488V35.0684H716.323C715.796 35.0684 715.579 34.7578 715.579 34.2715C715.579 33.791 715.796 33.4863 716.323 33.4863H716.868ZM722.376 33.4863V31.834C722.376 31.1777 722.769 30.8379 723.36 30.8379C723.952 30.8379 724.345 31.1777 724.345 31.834V33.4863H725.077C725.646 33.4863 725.95 33.75 725.95 34.2715C725.95 34.7988 725.646 35.0684 725.077 35.0684H724.345V39.6562C724.345 40.084 724.538 40.3828 724.989 40.3828C725.177 40.3828 725.335 40.3477 725.499 40.3477C725.892 40.3477 726.067 40.793 726.067 41.1387C726.067 41.8008 725.464 42.1465 724.72 42.1465C723.155 42.1465 722.376 41.4199 722.376 40.0488V35.0684H721.831C721.304 35.0684 721.087 34.7578 721.087 34.2715C721.087 33.791 721.304 33.4863 721.831 33.4863H722.376ZM726.636 37.752C726.636 35.2324 728.101 33.2871 730.978 33.2871C733.837 33.2871 735.325 35.2324 735.325 37.752C735.325 40.248 733.837 42.1934 730.978 42.1934C728.101 42.1934 726.636 40.248 726.636 37.752ZM728.651 37.752C728.651 39.5508 729.683 40.4883 730.978 40.4883C732.226 40.4883 733.28 39.5508 733.28 37.752C733.28 36 732.226 34.9922 730.978 34.9922C729.683 34.9922 728.651 36 728.651 37.752ZM744.202 36.5039V41.0742C744.202 41.6836 743.821 42.1172 743.218 42.1172C742.603 42.1172 742.233 41.6836 742.233 41.0742V36.3574C742.233 35.5195 741.753 35.0156 740.839 35.0156C739.397 35.0156 738.683 36.0234 738.683 37.2246V41.0742C738.683 41.6836 738.302 42.1172 737.698 42.1172C737.083 42.1172 736.714 41.6836 736.714 41.0742V34.3887C736.714 33.7793 737.042 33.3457 737.657 33.3457C738.237 33.3457 738.583 33.75 738.606 34.3242V34.4473C739.198 33.7441 739.954 33.3105 741.056 33.3105C743.528 33.3105 744.202 34.6582 744.202 36.5039Z" fill="#1F2937"/>
|
|
33
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M759.732 32.6512C760.091 32.3067 760.66 32.3179 761.005 32.6762L765.456 37.4015L769.907 32.6762C770.252 32.3179 770.822 32.3067 771.18 32.6512C771.538 32.9958 771.549 33.5655 771.205 33.9238L766.105 39.3238C765.935 39.5003 765.701 39.6 765.456 39.6C765.211 39.6 764.977 39.5003 764.807 39.3238L759.707 33.9238C759.363 33.5655 759.374 32.9958 759.732 32.6512Z" fill="#6B7280"/>
|
|
34
|
-
<path d="M828.499 42H823.97C823.401 42 822.938 41.5488 822.938 40.9922V31.5527C822.938 30.9961 823.401 30.5449 823.97 30.5449H827.854C829.946 30.5449 831.88 31.1895 831.88 33.627C831.88 34.4473 831.405 35.4727 830.327 35.9766C831.616 36.2637 832.489 37.4531 832.489 38.7422C832.489 40.4062 831.329 42 828.499 42ZM825.001 35.2969H827.737C829.319 35.2969 829.823 34.5176 829.829 33.6973C829.841 32.7305 829.05 32.2793 827.854 32.2793H825.001V35.2969ZM825.001 40.2891H828.487C829.735 40.2891 830.444 39.5332 830.438 38.7422C830.433 37.4531 829.466 37.0371 828.183 37.0371H825.001V40.2891ZM834.019 38.9941V34.4121C834.019 33.8027 834.394 33.3691 834.997 33.3691C835.612 33.3691 835.987 33.8027 835.987 34.4121V39.1406C835.987 39.9785 836.468 40.4824 837.382 40.4824C838.823 40.4824 839.579 39.4746 839.579 38.2734V34.4121C839.579 33.8027 839.96 33.3691 840.563 33.3691C841.179 33.3691 841.548 33.8027 841.548 34.4121V41.1094C841.548 41.7188 841.22 42.1523 840.604 42.1523C840.001 42.1523 839.655 41.7188 839.655 41.1094C839.075 41.7773 838.267 42.1875 837.165 42.1875C834.692 42.1875 834.019 40.8398 834.019 38.9941ZM843.868 33.4863V31.834C843.868 31.1777 844.261 30.8379 844.853 30.8379C845.444 30.8379 845.837 31.1777 845.837 31.834V33.4863H846.569C847.138 33.4863 847.442 33.75 847.442 34.2715C847.442 34.7988 847.138 35.0684 846.569 35.0684H845.837V39.6562C845.837 40.084 846.03 40.3828 846.481 40.3828C846.669 40.3828 846.827 40.3477 846.991 40.3477C847.384 40.3477 847.56 40.793 847.56 41.1387C847.56 41.8008 846.956 42.1465 846.212 42.1465C844.647 42.1465 843.868 41.4199 843.868 40.0488V35.0684H843.323C842.796 35.0684 842.579 34.7578 842.579 34.2715C842.579 33.791 842.796 33.4863 843.323 33.4863H843.868ZM849.376 33.4863V31.834C849.376 31.1777 849.769 30.8379 850.36 30.8379C850.952 30.8379 851.345 31.1777 851.345 31.834V33.4863H852.077C852.646 33.4863 852.95 33.75 852.95 34.2715C852.95 34.7988 852.646 35.0684 852.077 35.0684H851.345V39.6562C851.345 40.084 851.538 40.3828 851.989 40.3828C852.177 40.3828 852.335 40.3477 852.499 40.3477C852.892 40.3477 853.067 40.793 853.067 41.1387C853.067 41.8008 852.464 42.1465 851.72 42.1465C850.155 42.1465 849.376 41.4199 849.376 40.0488V35.0684H848.831C848.304 35.0684 848.087 34.7578 848.087 34.2715C848.087 33.791 848.304 33.4863 848.831 33.4863H849.376ZM853.636 37.752C853.636 35.2324 855.101 33.2871 857.978 33.2871C860.837 33.2871 862.325 35.2324 862.325 37.752C862.325 40.248 860.837 42.1934 857.978 42.1934C855.101 42.1934 853.636 40.248 853.636 37.752ZM855.651 37.752C855.651 39.5508 856.683 40.4883 857.978 40.4883C859.226 40.4883 860.28 39.5508 860.28 37.752C860.28 36 859.226 34.9922 857.978 34.9922C856.683 34.9922 855.651 36 855.651 37.752ZM871.202 36.5039V41.0742C871.202 41.6836 870.821 42.1172 870.218 42.1172C869.603 42.1172 869.233 41.6836 869.233 41.0742V36.3574C869.233 35.5195 868.753 35.0156 867.839 35.0156C866.397 35.0156 865.683 36.0234 865.683 37.2246V41.0742C865.683 41.6836 865.302 42.1172 864.698 42.1172C864.083 42.1172 863.714 41.6836 863.714 41.0742V34.3887C863.714 33.7793 864.042 33.3457 864.657 33.3457C865.237 33.3457 865.583 33.75 865.606 34.3242V34.4473C866.198 33.7441 866.954 33.3105 868.056 33.3105C870.528 33.3105 871.202 34.6582 871.202 36.5039Z" fill="#1F2937"/>
|
|
35
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M886.732 32.6512C887.091 32.3067 887.66 32.3179 888.005 32.6762L892.456 37.4015L896.907 32.6762C897.252 32.3179 897.822 32.3067 898.18 32.6512C898.538 32.9958 898.549 33.5655 898.205 33.9238L893.105 39.3238C892.935 39.5003 892.701 39.6 892.456 39.6C892.211 39.6 891.977 39.5003 891.807 39.3238L886.707 33.9238C886.363 33.5655 886.374 32.9958 886.732 32.6512Z" fill="#6B7280"/>
|
|
36
|
-
<path d="M1131 45L1125.8 39.8033M1125.8 39.8033C1127.16 38.4461 1128 36.5711 1128 34.5C1128 30.3579 1124.64 27 1120.5 27C1116.36 27 1113 30.3579 1113 34.5C1113 38.6421 1116.36 42 1120.5 42C1122.57 42 1124.45 41.1605 1125.8 39.8033Z" stroke="#111827" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
37
|
-
<path d="M1166 16.5H1266C1270.14 16.5 1273.5 19.8579 1273.5 24V48C1273.5 52.1421 1270.14 55.5 1266 55.5H1166C1161.86 55.5 1158.5 52.1421 1158.5 48V24C1158.5 19.8579 1161.86 16.5 1166 16.5Z" stroke="#32A9FF" stroke-linecap="round"/>
|
|
38
|
-
<path d="M1182.62 36C1182.62 36.2071 1182.46 36.375 1182.25 36.375C1182.04 36.375 1181.88 36.2071 1181.88 36C1181.88 35.7929 1182.04 35.625 1182.25 35.625C1182.46 35.625 1182.62 35.7929 1182.62 36ZM1182.62 36H1182.25M1186.38 36C1186.38 36.2071 1186.21 36.375 1186 36.375C1185.79 36.375 1185.62 36.2071 1185.62 36C1185.62 35.7929 1185.79 35.625 1186 35.625C1186.21 35.625 1186.38 35.7929 1186.38 36ZM1186.38 36H1186M1190.12 36C1190.12 36.2071 1189.96 36.375 1189.75 36.375C1189.54 36.375 1189.38 36.2071 1189.38 36C1189.38 35.7929 1189.54 35.625 1189.75 35.625C1189.96 35.625 1190.12 35.7929 1190.12 36ZM1190.12 36H1189.75M1195 36C1195 40.9706 1190.97 45 1186 45C1181.03 45 1177 40.9706 1177 36C1177 31.0294 1181.03 27 1186 27C1190.97 27 1195 31.0294 1195 36Z" stroke="#32A9FF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
39
|
-
<path d="M1211.29 35.0508L1213.47 35.5078C1215.74 35.9883 1216.43 37.4707 1216.39 38.9238C1216.33 40.9453 1214.5 42.3398 1211.47 42.252C1208.23 42.1523 1207.03 40.3711 1206.88 38.8418C1206.82 38.3086 1207.2 37.8281 1207.73 37.8047C1208.24 37.7871 1208.72 38.0449 1208.84 38.6602C1209.05 39.7207 1209.96 40.5059 1211.58 40.5527C1213.06 40.5879 1214.26 39.9727 1214.29 39.0293C1214.32 38.25 1213.83 37.5938 1212.84 37.3066C1211.87 37.0254 1210.81 36.8965 1209.83 36.6035C1207.68 35.9531 1207.21 34.793 1207.21 33.6211C1207.21 31.4355 1209.35 30.3633 1211.47 30.2988C1213.26 30.2461 1215.44 31.0957 1215.95 33.1992C1216.08 33.7324 1215.66 34.2188 1215.06 34.2188C1214.47 34.2246 1214.18 33.9492 1214.04 33.5215C1213.66 32.4316 1212.94 31.9453 1211.49 31.9805C1210.11 32.0215 1209.34 32.5957 1209.31 33.5332C1209.27 34.4941 1210.41 34.8164 1211.29 35.0508ZM1218.02 31.3711C1218.02 30.7559 1218.52 30.252 1219.14 30.252C1219.75 30.252 1220.26 30.7559 1220.26 31.3711C1220.26 31.9863 1219.75 32.4902 1219.14 32.4902C1218.52 32.4902 1218.02 31.9863 1218.02 31.3711ZM1220.12 34.4062V41.0742C1220.12 41.6836 1219.74 42.1172 1219.13 42.1172C1218.52 42.1172 1218.15 41.6836 1218.15 41.0742V34.4062C1218.15 33.7969 1218.52 33.3633 1219.13 33.3633C1219.74 33.3633 1220.12 33.7969 1220.12 34.4062ZM1224.03 42.9668C1224.45 43.5117 1225.07 43.7109 1225.84 43.7109C1227.47 43.7109 1228.04 42.5098 1228.04 41.3789V40.9746C1227.34 41.748 1226.53 42.0059 1225.7 42.0059C1223.01 42.0059 1221.68 40.1016 1221.68 37.7754C1221.68 35.8066 1222.58 33.2871 1225.75 33.2871C1226.63 33.2871 1227.39 33.5684 1228.03 34.2832C1228.04 33.6797 1228.37 33.3457 1228.96 33.3457C1229.6 33.3457 1229.91 33.6973 1229.91 34.3359V41.2852C1229.91 43.7109 1228.6 45.4453 1225.74 45.4453C1224.2 45.4453 1222.93 44.8359 1222.34 43.7988C1222.12 43.3359 1222.26 42.7734 1222.73 42.5508C1222.86 42.4922 1222.99 42.4629 1223.11 42.4629C1223.46 42.4629 1223.79 42.6738 1224.03 42.9668ZM1225.77 40.3301C1227.42 40.3301 1228.09 39.0703 1228.09 37.7227C1228.09 36.4805 1227.42 34.9922 1225.89 34.9922C1224.3 34.9922 1223.71 36.2402 1223.7 37.7578C1223.69 38.9531 1224.21 40.3301 1225.77 40.3301ZM1239.23 36.5039V41.0742C1239.23 41.6836 1238.85 42.1172 1238.25 42.1172C1237.63 42.1172 1237.26 41.6836 1237.26 41.0742V36.3574C1237.26 35.5195 1236.78 35.0156 1235.87 35.0156C1234.43 35.0156 1233.71 36.0234 1233.71 37.2246V41.0742C1233.71 41.6836 1233.33 42.1172 1232.73 42.1172C1232.11 42.1172 1231.74 41.6836 1231.74 41.0742V34.3887C1231.74 33.7793 1232.07 33.3457 1232.69 33.3457C1233.27 33.3457 1233.61 33.75 1233.63 34.3242V34.4473C1234.23 33.7441 1234.98 33.3105 1236.08 33.3105C1238.56 33.3105 1239.23 34.6582 1239.23 36.5039ZM1245.16 31.3711C1245.16 30.7559 1245.66 30.252 1246.28 30.252C1246.89 30.252 1247.4 30.7559 1247.4 31.3711C1247.4 31.9863 1246.89 32.4902 1246.28 32.4902C1245.66 32.4902 1245.16 31.9863 1245.16 31.3711ZM1247.26 34.4062V41.0742C1247.26 41.6836 1246.88 42.1172 1246.27 42.1172C1245.66 42.1172 1245.29 41.6836 1245.29 41.0742V34.4062C1245.29 33.7969 1245.66 33.3633 1246.27 33.3633C1246.88 33.3633 1247.26 33.7969 1247.26 34.4062ZM1256.74 36.5039V41.0742C1256.74 41.6836 1256.36 42.1172 1255.75 42.1172C1255.14 42.1172 1254.77 41.6836 1254.77 41.0742V36.3574C1254.77 35.5195 1254.29 35.0156 1253.38 35.0156C1251.93 35.0156 1251.22 36.0234 1251.22 37.2246V41.0742C1251.22 41.6836 1250.84 42.1172 1250.23 42.1172C1249.62 42.1172 1249.25 41.6836 1249.25 41.0742V34.3887C1249.25 33.7793 1249.58 33.3457 1250.19 33.3457C1250.77 33.3457 1251.12 33.75 1251.14 34.3242V34.4473C1251.73 33.7441 1252.49 33.3105 1253.59 33.3105C1256.06 33.3105 1256.74 34.6582 1256.74 36.5039Z" fill="#32A9FF"/>
|
|
40
|
-
<path d="M1298 16.5H1404C1408.14 16.5 1411.5 19.8579 1411.5 24V48C1411.5 52.1421 1408.14 55.5 1404 55.5H1298C1293.86 55.5 1290.5 52.1421 1290.5 48V24C1290.5 19.8579 1293.86 16.5 1298 16.5Z" fill="#32A9FF"/>
|
|
41
|
-
<path d="M1298 16.5H1404C1408.14 16.5 1411.5 19.8579 1411.5 24V48C1411.5 52.1421 1408.14 55.5 1404 55.5H1298C1293.86 55.5 1290.5 52.1421 1290.5 48V24C1290.5 19.8579 1293.86 16.5 1298 16.5Z" stroke="#32A9FF" stroke-linecap="round"/>
|
|
42
|
-
<path d="M1314.62 36C1314.62 36.2071 1314.46 36.375 1314.25 36.375C1314.04 36.375 1313.88 36.2071 1313.88 36C1313.88 35.7929 1314.04 35.625 1314.25 35.625C1314.46 35.625 1314.62 35.7929 1314.62 36ZM1314.62 36H1314.25M1318.38 36C1318.38 36.2071 1318.21 36.375 1318 36.375C1317.79 36.375 1317.62 36.2071 1317.62 36C1317.62 35.7929 1317.79 35.625 1318 35.625C1318.21 35.625 1318.38 35.7929 1318.38 36ZM1318.38 36H1318M1322.12 36C1322.12 36.2071 1321.96 36.375 1321.75 36.375C1321.54 36.375 1321.38 36.2071 1321.38 36C1321.38 35.7929 1321.54 35.625 1321.75 35.625C1321.96 35.625 1322.12 35.7929 1322.12 36ZM1322.12 36H1321.75M1327 36C1327 40.9706 1322.97 45 1318 45C1313.03 45 1309 40.9706 1309 36C1309 31.0294 1313.03 27 1318 27C1322.97 27 1327 31.0294 1327 36Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
43
|
-
<path d="M1343.39 35.0508L1345.56 35.5078C1347.83 35.9883 1348.53 37.4707 1348.48 38.9238C1348.43 40.9453 1346.59 42.3398 1343.57 42.252C1340.32 42.1523 1339.13 40.3711 1338.97 38.8418C1338.92 38.3086 1339.3 37.8281 1339.82 37.8047C1340.33 37.7871 1340.81 38.0449 1340.94 38.6602C1341.14 39.7207 1342.05 40.5059 1343.67 40.5527C1345.15 40.5879 1346.36 39.9727 1346.39 39.0293C1346.41 38.25 1345.92 37.5938 1344.93 37.3066C1343.97 37.0254 1342.9 36.8965 1341.93 36.6035C1339.77 35.9531 1339.31 34.793 1339.31 33.6211C1339.31 31.4355 1341.45 30.3633 1343.57 30.2988C1345.36 30.2461 1347.53 31.0957 1348.04 33.1992C1348.17 33.7324 1347.76 34.2188 1347.15 34.2188C1346.56 34.2246 1346.28 33.9492 1346.13 33.5215C1345.75 32.4316 1345.03 31.9453 1343.58 31.9805C1342.2 32.0215 1341.43 32.5957 1341.4 33.5332C1341.37 34.4941 1342.5 34.8164 1343.39 35.0508ZM1350.11 31.3711C1350.11 30.7559 1350.62 30.252 1351.23 30.252C1351.85 30.252 1352.35 30.7559 1352.35 31.3711C1352.35 31.9863 1351.85 32.4902 1351.23 32.4902C1350.62 32.4902 1350.11 31.9863 1350.11 31.3711ZM1352.21 34.4062V41.0742C1352.21 41.6836 1351.83 42.1172 1351.23 42.1172C1350.61 42.1172 1350.24 41.6836 1350.24 41.0742V34.4062C1350.24 33.7969 1350.61 33.3633 1351.23 33.3633C1351.83 33.3633 1352.21 33.7969 1352.21 34.4062ZM1356.12 42.9668C1356.55 43.5117 1357.16 43.7109 1357.93 43.7109C1359.56 43.7109 1360.13 42.5098 1360.13 41.3789V40.9746C1359.44 41.748 1358.63 42.0059 1357.79 42.0059C1355.1 42.0059 1353.77 40.1016 1353.77 37.7754C1353.77 35.8066 1354.68 33.2871 1357.85 33.2871C1358.72 33.2871 1359.49 33.5684 1360.12 34.2832C1360.14 33.6797 1360.46 33.3457 1361.06 33.3457C1361.7 33.3457 1362 33.6973 1362 34.3359V41.2852C1362 43.7109 1360.7 45.4453 1357.84 45.4453C1356.29 45.4453 1355.02 44.8359 1354.43 43.7988C1354.21 43.3359 1354.36 42.7734 1354.82 42.5508C1354.95 42.4922 1355.08 42.4629 1355.21 42.4629C1355.56 42.4629 1355.88 42.6738 1356.12 42.9668ZM1357.86 40.3301C1359.52 40.3301 1360.19 39.0703 1360.19 37.7227C1360.19 36.4805 1359.52 34.9922 1357.98 34.9922C1356.39 34.9922 1355.81 36.2402 1355.79 37.7578C1355.78 38.9531 1356.3 40.3301 1357.86 40.3301ZM1371.32 36.5039V41.0742C1371.32 41.6836 1370.94 42.1172 1370.34 42.1172C1369.72 42.1172 1369.36 41.6836 1369.36 41.0742V36.3574C1369.36 35.5195 1368.88 35.0156 1367.96 35.0156C1366.52 35.0156 1365.8 36.0234 1365.8 37.2246V41.0742C1365.8 41.6836 1365.42 42.1172 1364.82 42.1172C1364.21 42.1172 1363.84 41.6836 1363.84 41.0742V34.3887C1363.84 33.7793 1364.16 33.3457 1364.78 33.3457C1365.36 33.3457 1365.71 33.75 1365.73 34.3242V34.4473C1366.32 33.7441 1367.08 33.3105 1368.18 33.3105C1370.65 33.3105 1371.32 34.6582 1371.32 36.5039ZM1377.22 38.9941V34.4121C1377.22 33.8027 1377.59 33.3691 1378.2 33.3691C1378.81 33.3691 1379.19 33.8027 1379.19 34.4121V39.1406C1379.19 39.9785 1379.67 40.4824 1380.58 40.4824C1382.02 40.4824 1382.78 39.4746 1382.78 38.2734V34.4121C1382.78 33.8027 1383.16 33.3691 1383.76 33.3691C1384.38 33.3691 1384.75 33.8027 1384.75 34.4121V41.1094C1384.75 41.7188 1384.42 42.1523 1383.8 42.1523C1383.2 42.1523 1382.86 41.7188 1382.86 41.1094C1382.28 41.7773 1381.47 42.1875 1380.37 42.1875C1377.89 42.1875 1377.22 40.8398 1377.22 38.9941ZM1386.57 44.2676V34.4062C1386.57 33.8262 1386.95 33.3633 1387.55 33.3633C1388.17 33.3633 1388.54 33.8262 1388.54 34.4062C1389.28 33.4805 1390.14 33.2871 1391.04 33.2871C1393.77 33.2871 1395.07 35.3027 1395.07 37.7988C1395.07 40.1309 1393.74 42.3105 1390.98 42.3105C1390.17 42.3105 1389.24 42.123 1388.54 41.2559V44.2676C1388.54 44.877 1388.13 45.3105 1387.55 45.3105C1386.97 45.3105 1386.57 44.877 1386.57 44.2676ZM1393 37.875C1393 36.4336 1392.47 35.0156 1390.82 35.0156C1389.09 35.0156 1388.46 36.3633 1388.46 37.7988C1388.46 39.1465 1389.07 40.582 1390.72 40.582C1392.35 40.582 1393 39.2168 1393 37.875Z" fill="white"/>
|
|
44
|
-
<defs>
|
|
45
|
-
<linearGradient id="paint0_linear_32334_9945" x1="68.4031" y1="35.7085" x2="120.606" y2="35.7085" gradientUnits="userSpaceOnUse">
|
|
46
|
-
<stop stop-color="#00CFF4"/>
|
|
47
|
-
<stop offset="0.41" stop-color="#00BBF4"/>
|
|
48
|
-
<stop offset="1" stop-color="#0098F5"/>
|
|
49
|
-
</linearGradient>
|
|
50
|
-
<linearGradient id="paint1_linear_32334_9945" x1="68.4032" y1="44.7874" x2="120.606" y2="44.7874" gradientUnits="userSpaceOnUse">
|
|
51
|
-
<stop stop-color="#00CFF4"/>
|
|
52
|
-
<stop offset="0.41" stop-color="#00BBF4"/>
|
|
53
|
-
<stop offset="1" stop-color="#0098F5"/>
|
|
54
|
-
</linearGradient>
|
|
55
|
-
<linearGradient id="paint2_linear_32334_9945" x1="36.6509" y1="38.9425" x2="104.897" y2="38.9425" gradientUnits="userSpaceOnUse">
|
|
56
|
-
<stop stop-color="#F5B059"/>
|
|
57
|
-
<stop offset="0.14" stop-color="#F4AA55"/>
|
|
58
|
-
<stop offset="0.33" stop-color="#F49949"/>
|
|
59
|
-
<stop offset="0.53" stop-color="#F37E37"/>
|
|
60
|
-
<stop offset="0.75" stop-color="#F35B1F"/>
|
|
61
|
-
</linearGradient>
|
|
62
|
-
<linearGradient id="paint3_linear_32334_9945" x1="96.8352" y1="21.7319" x2="101.428" y2="21.7319" gradientUnits="userSpaceOnUse">
|
|
63
|
-
<stop stop-color="#00CFF4"/>
|
|
64
|
-
<stop offset="0.41" stop-color="#00BBF4"/>
|
|
65
|
-
<stop offset="1" stop-color="#0098F5"/>
|
|
66
|
-
</linearGradient>
|
|
67
|
-
<linearGradient id="paint4_linear_32334_9945" x1="200.02" y1="28.3853" x2="204.456" y2="28.3853" gradientUnits="userSpaceOnUse">
|
|
68
|
-
<stop stop-color="#46BFE2"/>
|
|
69
|
-
<stop offset="0.44" stop-color="#46ABD6"/>
|
|
70
|
-
<stop offset="1" stop-color="#478DC5"/>
|
|
71
|
-
</linearGradient>
|
|
72
|
-
<linearGradient id="paint5_linear_32334_9945" x1="186.821" y1="19.7434" x2="187.24" y2="43.4215" gradientUnits="userSpaceOnUse">
|
|
73
|
-
<stop stop-color="#F4AC5A"/>
|
|
74
|
-
<stop offset="0.15" stop-color="#F3A656"/>
|
|
75
|
-
<stop offset="0.34" stop-color="#F0954C"/>
|
|
76
|
-
<stop offset="0.55" stop-color="#ED7A3B"/>
|
|
77
|
-
<stop offset="0.75" stop-color="#E95C28"/>
|
|
78
|
-
</linearGradient>
|
|
79
|
-
<linearGradient id="paint6_linear_32334_9945" x1="183.005" y1="32.5201" x2="198.371" y2="39.7137" gradientUnits="userSpaceOnUse">
|
|
80
|
-
<stop stop-color="#F4AC5A"/>
|
|
81
|
-
<stop offset="0.15" stop-color="#F3A656"/>
|
|
82
|
-
<stop offset="0.34" stop-color="#F0954C"/>
|
|
83
|
-
<stop offset="0.55" stop-color="#ED7A3B"/>
|
|
84
|
-
<stop offset="0.75" stop-color="#E95C28"/>
|
|
85
|
-
</linearGradient>
|
|
86
|
-
<linearGradient id="paint7_linear_32334_9945" x1="190.683" y1="43.5895" x2="197.948" y2="43.5895" gradientUnits="userSpaceOnUse">
|
|
87
|
-
<stop stop-color="#46BFE2"/>
|
|
88
|
-
<stop offset="0.44" stop-color="#46ABD6"/>
|
|
89
|
-
<stop offset="1" stop-color="#478DC5"/>
|
|
90
|
-
</linearGradient>
|
|
91
|
-
</defs>
|
|
92
|
-
</svg>
|