@galaxy-io/dls 1.2.6 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (297) hide show
  1. package/README.md +2 -0
  2. package/dist/avatar/Avatar.d.ts +2 -1
  3. package/dist/avatar/Avatar.js +103 -14
  4. package/dist/buttons/Button.d.ts +6 -1
  5. package/dist/buttons/Button.js +8 -4
  6. package/dist/charts/BarChart.d.ts +30 -20
  7. package/dist/charts/BarChart.js +216 -250
  8. package/dist/charts/ChartAxis.d.ts +47 -22
  9. package/dist/charts/ChartAxis.js +81 -60
  10. package/dist/charts/ChartEmptyState.d.ts +17 -0
  11. package/dist/charts/ChartEmptyState.js +29 -0
  12. package/dist/charts/ChartFrame.d.ts +82 -0
  13. package/dist/charts/ChartFrame.js +86 -0
  14. package/dist/charts/ChartLegend.d.ts +27 -4
  15. package/dist/charts/ChartLegend.js +46 -23
  16. package/dist/charts/ChartPrimitives.d.ts +195 -0
  17. package/dist/charts/ChartPrimitives.js +268 -0
  18. package/dist/charts/ChartTooltip.d.ts +27 -6
  19. package/dist/charts/ChartTooltip.js +56 -50
  20. package/dist/charts/LineChart.d.ts +42 -20
  21. package/dist/charts/LineChart.js +186 -237
  22. package/dist/charts/PieChart.d.ts +48 -32
  23. package/dist/charts/PieChart.js +159 -171
  24. package/dist/charts/barChartGeometry.d.ts +87 -0
  25. package/dist/charts/barChartGeometry.js +218 -0
  26. package/dist/charts/chartFormat.d.ts +19 -0
  27. package/dist/charts/chartFormat.js +59 -0
  28. package/dist/charts/chartScales.d.ts +84 -0
  29. package/dist/charts/chartScales.js +111 -0
  30. package/dist/charts/chartTheme.d.ts +18 -0
  31. package/dist/charts/chartTheme.js +26 -0
  32. package/dist/charts/constants.d.ts +225 -18
  33. package/dist/charts/constants.js +240 -32
  34. package/dist/charts/lineChartGeometry.d.ts +54 -0
  35. package/dist/charts/lineChartGeometry.js +143 -0
  36. package/dist/charts/pieChartGeometry.d.ts +48 -0
  37. package/dist/charts/pieChartGeometry.js +89 -0
  38. package/dist/charts/types.d.ts +522 -54
  39. package/dist/charts/types.js +136 -0
  40. package/dist/charts/useChartDimensions.d.ts +40 -0
  41. package/dist/charts/useChartDimensions.js +53 -0
  42. package/dist/charts/useChartFormatters.d.ts +19 -0
  43. package/dist/charts/useChartFormatters.js +20 -0
  44. package/dist/charts/useChartInteraction.d.ts +71 -0
  45. package/dist/charts/useChartInteraction.js +130 -0
  46. package/dist/charts/useChartTooltipPosition.d.ts +53 -0
  47. package/dist/charts/useChartTooltipPosition.js +39 -0
  48. package/dist/hooks/useElementClientSize.d.ts +20 -0
  49. package/dist/hooks/useElementClientSize.js +43 -0
  50. package/dist/inputs/CheckboxInput.d.ts +7 -2
  51. package/dist/inputs/CheckboxInput.js +30 -14
  52. package/dist/inputs/Input.d.ts +5 -2
  53. package/dist/inputs/Input.js +20 -17
  54. package/dist/inputs/MultiSelectInput.js +1 -1
  55. package/dist/inputs/RadioInput.js +7 -2
  56. package/dist/styles.css +68 -75
  57. package/dist/table/InfiniteSpreadsheet.d.ts +6 -0
  58. package/dist/table/InfiniteSpreadsheet.js +235 -0
  59. package/dist/table/InfiniteTable.d.ts +7 -88
  60. package/dist/table/InfiniteTable.js +366 -577
  61. package/dist/{spreadsheet → table}/SpreadsheetCell.d.ts +6 -4
  62. package/dist/table/SpreadsheetCell.js +71 -0
  63. package/dist/{spreadsheet → table}/SpreadsheetCellEditor.js +27 -21
  64. package/dist/table/SpreadsheetHeaderCell.d.ts +23 -0
  65. package/dist/table/SpreadsheetHeaderCell.js +91 -0
  66. package/dist/table/SpreadsheetMenuItem.d.ts +14 -0
  67. package/dist/table/SpreadsheetMenuItem.js +33 -0
  68. package/dist/table/SpreadsheetPrimitives.d.ts +172 -0
  69. package/dist/table/SpreadsheetPrimitives.js +105 -0
  70. package/dist/table/SpreadsheetRow.d.ts +33 -0
  71. package/dist/table/SpreadsheetRow.js +73 -0
  72. package/dist/{spreadsheet → table}/SpreadsheetRowActionCell.d.ts +5 -7
  73. package/dist/table/SpreadsheetRowActionCell.js +51 -0
  74. package/dist/table/TableExpandCell.d.ts +11 -0
  75. package/dist/table/TableExpandCell.js +24 -0
  76. package/dist/table/TableExpandedRow.d.ts +16 -0
  77. package/dist/table/TableExpandedRow.js +77 -0
  78. package/dist/table/TableHeaderCellContent.d.ts +30 -0
  79. package/dist/table/TableHeaderCellContent.js +48 -0
  80. package/dist/table/TablePrimitives.d.ts +307 -0
  81. package/dist/table/TablePrimitives.js +298 -0
  82. package/dist/table/TableSelectCell.d.ts +18 -0
  83. package/dist/table/TableSelectCell.js +26 -0
  84. package/dist/table/TableStatusRow.d.ts +18 -0
  85. package/dist/table/TableStatusRow.js +50 -0
  86. package/dist/table/VirtualizedInfiniteTable.d.ts +11 -27
  87. package/dist/table/VirtualizedInfiniteTable.js +182 -317
  88. package/dist/table/types.d.ts +249 -0
  89. package/dist/table/types.js +51 -0
  90. package/dist/table/useInfiniteScrollSentinel.d.ts +24 -0
  91. package/dist/table/useInfiniteScrollSentinel.js +53 -0
  92. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.d.ts +1 -1
  93. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.js +1 -1
  94. package/dist/table/useTableColumnLayout.d.ts +28 -0
  95. package/dist/table/useTableColumnLayout.js +63 -0
  96. package/dist/table/useTableColumnResize.d.ts +38 -0
  97. package/dist/table/useTableColumnResize.js +155 -0
  98. package/dist/table/useTableKeyboardNavigation.d.ts +25 -0
  99. package/dist/table/useTableKeyboardNavigation.js +83 -0
  100. package/dist/table/useTableRowExpansion.d.ts +24 -0
  101. package/dist/table/useTableRowExpansion.js +62 -0
  102. package/dist/table/useTableRowSelection.d.ts +27 -0
  103. package/dist/table/useTableRowSelection.js +94 -0
  104. package/dist/table/utils.d.ts +50 -0
  105. package/dist/table/utils.js +78 -0
  106. package/dist/text/MarkdownText.js +45 -27
  107. package/dist/theme/variants/dark.js +1 -1
  108. package/dist/widget/Widget.d.ts +2 -0
  109. package/dist/widget/Widget.js +14 -7
  110. package/package.json +1 -5
  111. package/dist/assets/components/enrichment/PerplexityIcon.d.ts +0 -3
  112. package/dist/assets/components/enrichment/PerplexityIcon.js +0 -35
  113. package/dist/assets/components/enrichment/TavilyIcon.d.ts +0 -3
  114. package/dist/assets/components/enrichment/TavilyIcon.js +0 -15
  115. package/dist/assets/components/onboarding/TenantSetupDark.d.ts +0 -3
  116. package/dist/assets/components/onboarding/TenantSetupDark.js +0 -498
  117. package/dist/assets/components/onboarding/TenantSetupLight.d.ts +0 -3
  118. package/dist/assets/components/onboarding/TenantSetupLight.js +0 -482
  119. package/dist/assets/components/onboarding/UserSetupDark.d.ts +0 -3
  120. package/dist/assets/components/onboarding/UserSetupDark.js +0 -1086
  121. package/dist/assets/components/onboarding/UserSetupLight.d.ts +0 -3
  122. package/dist/assets/components/onboarding/UserSetupLight.js +0 -1024
  123. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.d.ts +0 -3
  124. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.js +0 -466
  125. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.d.ts +0 -3
  126. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.js +0 -460
  127. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.d.ts +0 -3
  128. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.js +0 -336
  129. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.d.ts +0 -3
  130. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.js +0 -336
  131. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.d.ts +0 -3
  132. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.js +0 -153
  133. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.d.ts +0 -3
  134. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.js +0 -153
  135. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.d.ts +0 -3
  136. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.js +0 -117
  137. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.d.ts +0 -3
  138. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.js +0 -117
  139. package/dist/assets/components/projects/MappingMethodBlankDark.d.ts +0 -3
  140. package/dist/assets/components/projects/MappingMethodBlankDark.js +0 -150
  141. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.d.ts +0 -3
  142. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.js +0 -150
  143. package/dist/assets/components/projects/MappingMethodBlankLight.d.ts +0 -3
  144. package/dist/assets/components/projects/MappingMethodBlankLight.js +0 -150
  145. package/dist/assets/components/projects/MappingMethodBlankLightHovered.d.ts +0 -3
  146. package/dist/assets/components/projects/MappingMethodBlankLightHovered.js +0 -150
  147. package/dist/assets/components/projects/MappingMethodJsonDark.d.ts +0 -3
  148. package/dist/assets/components/projects/MappingMethodJsonDark.js +0 -90
  149. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.d.ts +0 -3
  150. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.js +0 -90
  151. package/dist/assets/components/projects/MappingMethodJsonLight.d.ts +0 -3
  152. package/dist/assets/components/projects/MappingMethodJsonLight.js +0 -90
  153. package/dist/assets/components/projects/MappingMethodJsonLightHovered.d.ts +0 -3
  154. package/dist/assets/components/projects/MappingMethodJsonLightHovered.js +0 -90
  155. package/dist/assets/components/projects/ProjectsEmptyStateDark.d.ts +0 -3
  156. package/dist/assets/components/projects/ProjectsEmptyStateDark.js +0 -454
  157. package/dist/assets/components/projects/ProjectsEmptyStateLight.d.ts +0 -3
  158. package/dist/assets/components/projects/ProjectsEmptyStateLight.js +0 -456
  159. package/dist/assets/components/root/CreateProjectActionCardDark.d.ts +0 -3
  160. package/dist/assets/components/root/CreateProjectActionCardDark.js +0 -1796
  161. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.d.ts +0 -3
  162. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.js +0 -1796
  163. package/dist/assets/components/root/CreateProjectActionCardLight.d.ts +0 -3
  164. package/dist/assets/components/root/CreateProjectActionCardLight.js +0 -1786
  165. package/dist/assets/components/root/CreateProjectActionCardLightHovered.d.ts +0 -3
  166. package/dist/assets/components/root/CreateProjectActionCardLightHovered.js +0 -1786
  167. package/dist/assets/components/root/CreateSourceActionCardDark.d.ts +0 -3
  168. package/dist/assets/components/root/CreateSourceActionCardDark.js +0 -879
  169. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.d.ts +0 -3
  170. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.js +0 -879
  171. package/dist/assets/components/root/CreateSourceActionCardLight.d.ts +0 -3
  172. package/dist/assets/components/root/CreateSourceActionCardLight.js +0 -889
  173. package/dist/assets/components/root/CreateSourceActionCardLightHovered.d.ts +0 -3
  174. package/dist/assets/components/root/CreateSourceActionCardLightHovered.js +0 -889
  175. package/dist/assets/components/sources/AttioIcon.d.ts +0 -3
  176. package/dist/assets/components/sources/AttioIcon.js +0 -11
  177. package/dist/assets/components/sources/BigquerySourceIcon.d.ts +0 -3
  178. package/dist/assets/components/sources/BigquerySourceIcon.js +0 -39
  179. package/dist/assets/components/sources/BrowserbaseSourceIcon.d.ts +0 -3
  180. package/dist/assets/components/sources/BrowserbaseSourceIcon.js +0 -35
  181. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.d.ts +0 -3
  182. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.js +0 -13
  183. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.d.ts +0 -3
  184. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.js +0 -13
  185. package/dist/assets/components/sources/ConfluenceSourceIcon.d.ts +0 -3
  186. package/dist/assets/components/sources/ConfluenceSourceIcon.js +0 -30
  187. package/dist/assets/components/sources/GithubSourceIcon.d.ts +0 -3
  188. package/dist/assets/components/sources/GithubSourceIcon.js +0 -27
  189. package/dist/assets/components/sources/GoogleDriveIcon.d.ts +0 -3
  190. package/dist/assets/components/sources/GoogleDriveIcon.js +0 -45
  191. package/dist/assets/components/sources/HubspotSourceIcon.d.ts +0 -3
  192. package/dist/assets/components/sources/HubspotSourceIcon.js +0 -14
  193. package/dist/assets/components/sources/JiraSourceIcon.d.ts +0 -3
  194. package/dist/assets/components/sources/JiraSourceIcon.js +0 -54
  195. package/dist/assets/components/sources/LinearSourceIcon.d.ts +0 -3
  196. package/dist/assets/components/sources/LinearSourceIcon.js +0 -14
  197. package/dist/assets/components/sources/MysqlLogoSourceIconDark.d.ts +0 -3
  198. package/dist/assets/components/sources/MysqlLogoSourceIconDark.js +0 -17
  199. package/dist/assets/components/sources/NetsuiteSourceIcon.d.ts +0 -3
  200. package/dist/assets/components/sources/NetsuiteSourceIcon.js +0 -32
  201. package/dist/assets/components/sources/NotionIcon.d.ts +0 -3
  202. package/dist/assets/components/sources/NotionIcon.js +0 -20
  203. package/dist/assets/components/sources/PostgresqlIcon.d.ts +0 -3
  204. package/dist/assets/components/sources/PostgresqlIcon.js +0 -61
  205. package/dist/assets/components/sources/S3Icon.d.ts +0 -3
  206. package/dist/assets/components/sources/S3Icon.js +0 -76
  207. package/dist/assets/components/sources/SalesforceSourceIcon.d.ts +0 -3
  208. package/dist/assets/components/sources/SalesforceSourceIcon.js +0 -23
  209. package/dist/assets/components/sources/SlackIcon.d.ts +0 -3
  210. package/dist/assets/components/sources/SlackIcon.js +0 -32
  211. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.d.ts +0 -3
  212. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.js +0 -14
  213. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.d.ts +0 -3
  214. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.js +0 -14
  215. package/dist/assets/components/sources/WikipediaSourceIcon.d.ts +0 -3
  216. package/dist/assets/components/sources/WikipediaSourceIcon.js +0 -1490
  217. package/dist/avatar/AvatarEmpty.d.ts +0 -7
  218. package/dist/avatar/AvatarEmpty.js +0 -99
  219. package/dist/avatar/types.d.ts +0 -5
  220. package/dist/avatar/types.js +0 -9
  221. package/dist/charts/utils.d.ts +0 -29
  222. package/dist/charts/utils.js +0 -62
  223. package/dist/icons/BackIcon.d.ts +0 -3
  224. package/dist/icons/BackIcon.js +0 -13
  225. package/dist/icons/CloseIcon.d.ts +0 -3
  226. package/dist/icons/CloseIcon.js +0 -13
  227. package/dist/icons/CreateIcon.d.ts +0 -3
  228. package/dist/icons/CreateIcon.js +0 -13
  229. package/dist/icons/ForwardIcon.d.ts +0 -3
  230. package/dist/icons/ForwardIcon.js +0 -13
  231. package/dist/icons/HelpIcon.d.ts +0 -3
  232. package/dist/icons/HelpIcon.js +0 -14
  233. package/dist/icons/ProjectsIcon.d.ts +0 -3
  234. package/dist/icons/ProjectsIcon.js +0 -12
  235. package/dist/icons/SearchIcon.d.ts +0 -3
  236. package/dist/icons/SearchIcon.js +0 -12
  237. package/dist/icons/SourcesIcon.d.ts +0 -3
  238. package/dist/icons/SourcesIcon.js +0 -12
  239. package/dist/icons/TextIcon.d.ts +0 -4
  240. package/dist/icons/TextIcon.js +0 -22
  241. package/dist/icons/WebScrapeIcon.d.ts +0 -4
  242. package/dist/icons/WebScrapeIcon.js +0 -22
  243. package/dist/icons/WebhookIcon.d.ts +0 -4
  244. package/dist/icons/WebhookIcon.js +0 -22
  245. package/dist/icons/sources/AttioLogomark.d.ts +0 -4
  246. package/dist/icons/sources/AttioLogomark.js +0 -8
  247. package/dist/icons/sources/BrowserbaseLogomark.d.ts +0 -4
  248. package/dist/icons/sources/BrowserbaseLogomark.js +0 -8
  249. package/dist/icons/sources/ClickhouseLogomark.d.ts +0 -4
  250. package/dist/icons/sources/ClickhouseLogomark.js +0 -16
  251. package/dist/icons/sources/ConfluenceLogomark.d.ts +0 -4
  252. package/dist/icons/sources/ConfluenceLogomark.js +0 -8
  253. package/dist/icons/sources/GithubLogomark.d.ts +0 -4
  254. package/dist/icons/sources/GithubLogomark.js +0 -8
  255. package/dist/icons/sources/GoogleBigqueryLogomark.d.ts +0 -4
  256. package/dist/icons/sources/GoogleBigqueryLogomark.js +0 -8
  257. package/dist/icons/sources/GoogleDriveLogomark.d.ts +0 -4
  258. package/dist/icons/sources/GoogleDriveLogomark.js +0 -8
  259. package/dist/icons/sources/HubspotLogomark.d.ts +0 -4
  260. package/dist/icons/sources/HubspotLogomark.js +0 -8
  261. package/dist/icons/sources/JiraLogomark.d.ts +0 -4
  262. package/dist/icons/sources/JiraLogomark.js +0 -8
  263. package/dist/icons/sources/LinearLogomark.d.ts +0 -4
  264. package/dist/icons/sources/LinearLogomark.js +0 -8
  265. package/dist/icons/sources/MySQLLogomark.d.ts +0 -4
  266. package/dist/icons/sources/MySQLLogomark.js +0 -8
  267. package/dist/icons/sources/NetsuiteLogomark.d.ts +0 -4
  268. package/dist/icons/sources/NetsuiteLogomark.js +0 -8
  269. package/dist/icons/sources/NotionLogomark.d.ts +0 -4
  270. package/dist/icons/sources/NotionLogomark.js +0 -8
  271. package/dist/icons/sources/PostgresLogomark.d.ts +0 -4
  272. package/dist/icons/sources/PostgresLogomark.js +0 -8
  273. package/dist/icons/sources/S3Logomark.d.ts +0 -4
  274. package/dist/icons/sources/S3Logomark.js +0 -8
  275. package/dist/icons/sources/SalesforceLogomark.d.ts +0 -4
  276. package/dist/icons/sources/SalesforceLogomark.js +0 -8
  277. package/dist/icons/sources/SlackLogoIconmark.d.ts +0 -4
  278. package/dist/icons/sources/SlackLogoIconmark.js +0 -8
  279. package/dist/icons/sources/SnowflakeLogomark.d.ts +0 -4
  280. package/dist/icons/sources/SnowflakeLogomark.js +0 -16
  281. package/dist/icons/sources/WikipediaLogomark.d.ts +0 -4
  282. package/dist/icons/sources/WikipediaLogomark.js +0 -8
  283. package/dist/spreadsheet/InfiniteSpreadsheet.d.ts +0 -3
  284. package/dist/spreadsheet/InfiniteSpreadsheet.js +0 -265
  285. package/dist/spreadsheet/SpreadsheetAddColumnButton.d.ts +0 -6
  286. package/dist/spreadsheet/SpreadsheetAddColumnButton.js +0 -32
  287. package/dist/spreadsheet/SpreadsheetCell.js +0 -115
  288. package/dist/spreadsheet/SpreadsheetHeaderCell.d.ts +0 -18
  289. package/dist/spreadsheet/SpreadsheetHeaderCell.js +0 -141
  290. package/dist/spreadsheet/SpreadsheetRow.d.ts +0 -21
  291. package/dist/spreadsheet/SpreadsheetRow.js +0 -68
  292. package/dist/spreadsheet/SpreadsheetRowActionCell.js +0 -78
  293. package/dist/spreadsheet/hooks/useColumnResize.d.ts +0 -6
  294. package/dist/spreadsheet/hooks/useColumnResize.js +0 -46
  295. package/dist/spreadsheet/types.d.ts +0 -92
  296. package/dist/spreadsheet/types.js +0 -21
  297. /package/dist/{spreadsheet → table}/SpreadsheetCellEditor.d.ts +0 -0
@@ -1,482 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/onboarding/TenantSetupLight.tsx
3
- var SvgTenantSetupLight = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- viewBox: "0 0 737 544",
7
- ...props,
8
- children: [
9
- /* @__PURE__ */ jsx("rect", {
10
- width: 537,
11
- height: 478,
12
- x: -114.764,
13
- y: 33,
14
- fill: "#FAFAFA",
15
- fillOpacity: .5,
16
- rx: 7.5
17
- }),
18
- /* @__PURE__ */ jsx("rect", {
19
- width: 537,
20
- height: 478,
21
- x: -114.764,
22
- y: 33,
23
- stroke: "#CDCECD",
24
- rx: 7.5
25
- }),
26
- /* @__PURE__ */ jsx("g", {
27
- stroke: "#A8A8A8",
28
- opacity: .45,
29
- children: /* @__PURE__ */ jsx("path", { d: "m24.785 368.841 123.123-79.281M24.785 368.841l-69.826-80.023M24.785 176.958l-69.826 111.86M24.785 176.958l119.22-75.117M158.042 213.958l-14.037-112.117M24.785 368.841l3.343-191.883M24.785 368.841l119.22-267M24.785 368.841l123.123 78.875M264.134 388.904l-107.629-98.516M264.134 388.904l-6.707-211.946M142.181 101.326l115.246 75.632M330.005 288.818l-72.578-111.86M142.181 101.326l193.831 190.367M264.134 393.599l71.878-101.906M26.456 176.958l309.556 114.735M19.772 372.685l316.24-80.992M269.178 386.81l-129.66 48.633M151.023 286.732l-11.505 148.711M330.005 289.56l-173.5.828M264.134 176.958l-107.629 113.43M26.456 180.091l130.049 110.297M-35.292 289.388l191.798 1M158.042 210.818l-1.537 79.57M158.042 210.818l-1.537 79.57" })
30
- }),
31
- /* @__PURE__ */ jsx("rect", {
32
- width: 94.505,
33
- height: 31.328,
34
- x: 295.197,
35
- y: 272.119,
36
- fill: "#fff",
37
- rx: 5.221
38
- }),
39
- /* @__PURE__ */ jsx("rect", {
40
- width: 94.505,
41
- height: 31.328,
42
- x: 295.197,
43
- y: 272.119,
44
- stroke: "#FF8FBF",
45
- strokeWidth: .696,
46
- rx: 5.221
47
- }),
48
- /* @__PURE__ */ jsx("path", {
49
- stroke: "#FF8FBF",
50
- strokeLinecap: "round",
51
- strokeLinejoin: "round",
52
- strokeWidth: 1.392,
53
- d: "M307.206 282.562h-3.133a.52.52 0 0 0-.522.522v3.133c0 .288.234.522.522.522h3.133a.52.52 0 0 0 .522-.522v-3.133a.52.52 0 0 0-.522-.522M313.471 282.562h-3.132a.52.52 0 0 0-.523.522v3.133c0 .288.234.522.523.522h3.132a.52.52 0 0 0 .522-.522v-3.133a.52.52 0 0 0-.522-.522M307.206 288.827h-3.133a.52.52 0 0 0-.522.522v3.133c0 .288.234.522.522.522h3.133a.52.52 0 0 0 .522-.522v-3.133a.52.52 0 0 0-.522-.522M313.471 288.827h-3.132a.523.523 0 0 0-.523.522v3.133c0 .288.234.522.523.522h3.132a.52.52 0 0 0 .522-.522v-3.133a.52.52 0 0 0-.522-.522"
54
- }),
55
- /* @__PURE__ */ jsx("path", {
56
- fill: "#101010",
57
- d: "M324.186 292.283v-9.468c.807-.07 1.141-.056 1.824-.056 3.118.028 4.023.669 4.023 3.063 0 2.326-.612 2.841-3.425 2.841h-1.281v3.62zm1.141-4.664h1.156c1.977 0 2.409-.335 2.409-1.866 0-1.587-.529-1.936-2.646-1.936h-.919zm8.238 4.664v-7.212h.96l-.125 1.517h.07c.738-1.448.835-1.517 2.325-1.531.766-.014 1.128 0 1.712.069v1.072a4.6 4.6 0 0 0-1.03-.097c-2.325 0-2.84.599-2.84 3.3v2.882zm10.144.139c-2.562 0-3.118-.682-3.118-3.759 0-3.063.556-3.732 3.118-3.732 2.548 0 3.105.669 3.105 3.732 0 3.077-.557 3.759-3.105 3.759m0-1.044c1.629 0 1.991-.487 1.991-2.715 0-2.2-.362-2.687-1.991-2.687-1.643 0-2.005.487-2.005 2.687 0 2.228.362 2.715 2.005 2.715m10.298.905v-.794h-.069c-.307.766-.655.933-1.936.933-2.478 0-3.021-.668-3.021-3.745s.543-3.746 3.007-3.746c1.254 0 1.588.167 1.88.933h.07l-.014-3.801h1.086l.014 10.22zm-1.963-.877c1.601 0 1.949-.488 1.949-2.729 0-2.256-.348-2.743-1.949-2.743-1.615 0-1.977.487-1.977 2.743 0 2.241.362 2.729 1.977 2.729m11.426.877h-1.044v-1.17h-.07c-.404 1.072-.808 1.309-2.242 1.309-2.005 0-2.45-.501-2.45-2.757v-4.594h1.114v4.594c0 1.379.292 1.685 1.601 1.685 1.615 0 1.977-.459 1.977-2.59v-3.689h1.114zm7.499-2.019h1.086c-.139 1.768-.626 2.158-2.645 2.158-2.66 0-3.244-.682-3.244-3.759 0-3.063.584-3.732 3.216-3.732 2.088 0 2.576.418 2.673 2.312h-1.114c-.209-1.072-.501-1.309-1.629-1.309-1.671 0-2.033.487-2.033 2.743s.376 2.743 2.075 2.743c1.1 0 1.392-.209 1.615-1.156m3.322-4.233.279-.96h1.643v-1.629l1.072-.46v2.089h2.576v.96h-2.59v4.01c0 1.1.251 1.337 1.406 1.337.334 0 .613-.028 1.49-.125v1.016c-.919.125-1.225.153-1.726.153-1.852 0-2.256-.418-2.256-2.325v-4.066z"
58
- }),
59
- /* @__PURE__ */ jsx("rect", {
60
- width: 65.258,
61
- height: 29.346,
62
- x: -8.618,
63
- y: 161.238,
64
- fill: "#fff",
65
- rx: 4.891
66
- }),
67
- /* @__PURE__ */ jsx("rect", {
68
- width: 65.258,
69
- height: 29.346,
70
- x: -8.618,
71
- y: 161.238,
72
- stroke: "#4885FF",
73
- strokeWidth: .652,
74
- rx: 4.891
75
- }),
76
- /* @__PURE__ */ jsx("path", {
77
- stroke: "#99CFFD",
78
- strokeLinecap: "round",
79
- strokeLinejoin: "round",
80
- strokeWidth: 1.304,
81
- d: "M4.098 169.552v12.717M7.522 173.465a2.45 2.45 0 0 0-2.446-2.446H3.12a2.445 2.445 0 0 0 0 4.891h2.446a2.445 2.445 0 0 1 0 4.891H2.63a2.444 2.444 0 0 1-2.445-2.445"
82
- }),
83
- /* @__PURE__ */ jsx("path", {
84
- fill: "#101010",
85
- d: "M18.223 179.91v-8.869c.835-.078 1.357-.117 2.322-.026 2.608.235 3.534 1.161 3.534 4.552 0 3.639-.756 4.435-4.213 4.435-.417 0-.717-.013-1.643-.092m1.07-7.89v6.964c.9.052 1.226.052 1.617.026 1.708-.117 2.087-.717 2.087-3.391 0-2.621-.444-3.26-2.452-3.547-.366-.052-.848-.078-1.252-.052m11.355 6.13h1.043c-.287 1.552-.757 1.891-2.582 1.891-2.453 0-2.987-.639-2.987-3.522 0-2.869.508-3.495 2.804-3.495 2.413 0 2.934.717 2.895 4.004h-4.708c.052 1.669.404 2.035 1.956 2.035 1.044 0 1.33-.17 1.579-.913m-3.522-2.061h3.691c-.052-1.709-.391-2.087-1.839-2.087-1.474 0-1.813.378-1.852 2.087m11.342 3.821v-.874h-.065c-.313.822-.679 1.005-2.022 1.005-1.826 0-2.23-.352-2.23-1.957 0-1.891.548-2.308 3.026-2.308h1.29v-.287c0-1.265-.3-1.539-1.669-1.539-1.121 0-1.382.183-1.408 1.017h-1.004c0-1.591.43-1.943 2.373-1.943 2.165 0 2.648.443 2.648 2.465v4.421zm-.013-3.221h-1.54c-1.434 0-1.747.222-1.747 1.265 0 .926.248 1.135 1.343 1.135 1.592 0 1.944-.431 1.944-2.4m3.581 3.221v-.926h2.348v-7.643h-2.217v-.926H45.4v8.569h2.178v.926z"
86
- }),
87
- /* @__PURE__ */ jsx("rect", {
88
- width: 68.234,
89
- height: 27.559,
90
- x: 234.651,
91
- y: 375.124,
92
- fill: "#fff",
93
- rx: 4.593
94
- }),
95
- /* @__PURE__ */ jsx("rect", {
96
- width: 68.234,
97
- height: 27.559,
98
- x: 234.651,
99
- y: 375.124,
100
- stroke: "#4885FF",
101
- strokeWidth: .612,
102
- rx: 4.593
103
- }),
104
- /* @__PURE__ */ jsx("path", {
105
- stroke: "#99CFFD",
106
- strokeLinecap: "round",
107
- strokeLinejoin: "round",
108
- strokeWidth: 1.225,
109
- d: "M244.297 394.875h4.593M243.763 391.143a4.59 4.59 0 0 1-1.763-3.591c-.014-2.49 1.994-4.562 4.483-4.62a4.6 4.6 0 0 1 2.707.804 4.59 4.59 0 0 1 1.818 5.058 4.6 4.6 0 0 1-1.578 2.343 1.4 1.4 0 0 0-.54 1.097v.344a.46.46 0 0 1-.459.46h-3.675a.46.46 0 0 1-.459-.46v-.344a1.389 1.389 0 0 0-.534-1.091"
110
- }),
111
- /* @__PURE__ */ jsx("path", {
112
- stroke: "#99CFFD",
113
- strokeLinecap: "round",
114
- strokeLinejoin: "round",
115
- strokeWidth: 1.225,
116
- d: "M247.053 384.77c1.148.193 2.102 1.148 2.296 2.296"
117
- }),
118
- /* @__PURE__ */ jsx("path", {
119
- fill: "#101010",
120
- d: "M262.002 393.404v-7.398h-2.278v-.931h5.573v.931h-2.29v7.398zm7.921.122c-2.254 0-2.744-.6-2.744-3.307 0-2.695.49-3.283 2.744-3.283 2.241 0 2.731.588 2.731 3.283 0 2.707-.49 3.307-2.731 3.307m0-.918c1.433 0 1.751-.429 1.751-2.389 0-1.935-.318-2.364-1.751-2.364-1.446 0-1.764.429-1.764 2.364 0 1.96.318 2.389 1.764 2.389m4.833 3.429v-8.978h.894v.698h.061c.258-.674.564-.821 1.691-.821 2.192 0 2.67.588 2.67 3.295s-.478 3.295-2.634 3.295c-1.114 0-1.408-.147-1.665-.82h-.062v3.331zm2.621-3.429c1.421 0 1.739-.429 1.739-2.352 0-1.972-.318-2.401-1.739-2.401-1.408 0-1.715.429-1.715 2.376 0 1.948.307 2.377 1.715 2.377m6.806-6.847v-1.348h1.347v1.348zm-1.74 7.643v-.87h2.119v-4.605h-1.996v-.87h2.94v5.475h1.996v.87zm11.46-1.776h.956c-.123 1.555-.551 1.898-2.328 1.898-2.339 0-2.853-.6-2.853-3.307 0-2.695.514-3.283 2.829-3.283 1.837 0 2.266.368 2.352 2.034h-.98c-.184-.943-.441-1.152-1.433-1.152-1.47 0-1.789.429-1.789 2.413 0 1.985.331 2.413 1.825 2.413.968 0 1.225-.183 1.421-1.016"
121
- }),
122
- /* @__PURE__ */ jsx("rect", {
123
- width: 78.108,
124
- height: 28.33,
125
- x: 225.025,
126
- y: 162.265,
127
- fill: "#fff",
128
- rx: 4.722
129
- }),
130
- /* @__PURE__ */ jsx("rect", {
131
- width: 78.108,
132
- height: 28.33,
133
- x: 225.025,
134
- y: 162.265,
135
- stroke: "#62C79C",
136
- strokeWidth: .63,
137
- rx: 4.722
138
- }),
139
- /* @__PURE__ */ jsx("path", {
140
- stroke: "#3AA175",
141
- strokeLinecap: "round",
142
- strokeLinejoin: "round",
143
- strokeWidth: 1.259,
144
- d: "M242.967 173.125h-11.332a.47.47 0 0 0-.472.472v5.666c0 .261.211.473.472.473h11.332a.47.47 0 0 0 .472-.473v-5.666a.47.47 0 0 0-.472-.472"
145
- }),
146
- /* @__PURE__ */ jsx("path", {
147
- fill: "#53C031",
148
- stroke: "#3AA175",
149
- strokeWidth: .157,
150
- d: "M240.843 176.037a.394.394 0 1 1-.001.787.394.394 0 0 1 .001-.787Z"
151
- }),
152
- /* @__PURE__ */ jsx("path", {
153
- fill: "#101010",
154
- d: "M250.685 178.353h1.033c.088 1.02.453 1.246 1.977 1.246 1.599 0 1.951-.264 1.951-1.498 0-1.007-.352-1.309-1.926-1.649-2.443-.529-2.984-.957-2.984-2.43 0-1.864.529-2.279 2.946-2.279 2.229 0 2.732.34 2.808 1.901h-1.033c-.063-.768-.39-.945-1.775-.945-1.574 0-1.914.24-1.914 1.335 0 .831.353 1.096 1.939 1.436 2.443.528 2.972.982 2.972 2.631 0 2.015-.554 2.455-3.085 2.455-2.38 0-2.909-.39-2.909-2.203m9.25 4.835 1.146-3.236h-.529l-2.191-6.044h1.07l1.876 5.226h.038l1.813-5.226h1.033l-3.249 9.28zm6.303-4.621h1.007c.051.856.366 1.045 1.7 1.045 1.31 0 1.599-.164 1.599-.932s-.327-.982-1.788-1.158c-1.989-.239-2.43-.617-2.43-1.99 0-1.435.466-1.75 2.556-1.75 2.002 0 2.456.315 2.531 1.725h-.995c-.075-.642-.352-.78-1.523-.78-1.284 0-1.574.151-1.574.843 0 .655.302.831 1.662 1.033 2.103.302 2.569.667 2.569 2.115 0 1.511-.479 1.838-2.657 1.838s-2.657-.352-2.657-1.989m7.474-3.79.252-.869h1.486v-1.473l.97-.415v1.888h2.329v.869h-2.342v3.626c0 .995.227 1.209 1.272 1.209.302 0 .554-.025 1.347-.113v.919c-.831.113-1.108.138-1.561.138-1.675 0-2.04-.377-2.04-2.102v-3.677zm12.058 3.954h1.007c-.277 1.498-.73 1.825-2.493 1.825-2.367 0-2.883-.617-2.883-3.399 0-2.77.491-3.375 2.707-3.375 2.329 0 2.833.693 2.795 3.866h-4.545c.05 1.611.39 1.964 1.888 1.964 1.008 0 1.285-.164 1.524-.881m-3.4-1.99h3.564c-.051-1.649-.378-2.014-1.776-2.014-1.423 0-1.75.365-1.788 2.014m6.203 3.689v-6.522h.881v.869h.063c.29-.781.579-.995 1.385-.995s1.07.214 1.234.995h.063c.29-.781.567-.995 1.259-.995 1.159 0 1.461.592 1.461 2.783v3.865h-.97v-3.865c0-1.448-.163-1.851-.793-1.851-.705 0-.907.516-.907 2.38v3.336h-.982l.025-3.865c.013-1.448-.176-1.851-.831-1.851-.73 0-.919.516-.919 2.38v3.336z"
155
- }),
156
- /* @__PURE__ */ jsx("rect", {
157
- width: 69.205,
158
- height: 24.887,
159
- x: 103.925,
160
- y: 429.907,
161
- fill: "#fff",
162
- rx: 4.148
163
- }),
164
- /* @__PURE__ */ jsx("rect", {
165
- width: 69.205,
166
- height: 24.887,
167
- x: 103.925,
168
- y: 429.907,
169
- stroke: "#005EFF",
170
- strokeWidth: .553,
171
- rx: 4.148
172
- }),
173
- /* @__PURE__ */ jsx("path", {
174
- stroke: "#005EFF",
175
- strokeLinecap: "round",
176
- strokeLinejoin: "round",
177
- strokeWidth: 1.106,
178
- d: "M114.71 444.009a3.318 3.318 0 1 0 0-6.636 3.318 3.318 0 0 0 0 6.636M109.732 446.913c1.005-1.736 2.829-2.904 4.978-2.904s3.973 1.168 4.977 2.904"
179
- }),
180
- /* @__PURE__ */ jsx("path", {
181
- fill: "#101010",
182
- d: "M126.954 446.35v-7.521c.642-.055.907-.044 1.449-.044 2.478.022 3.197.531 3.197 2.433 0 1.847-.487 2.256-2.721 2.256h-1.018v2.876zm.907-3.705h.918c1.571 0 1.914-.266 1.914-1.482 0-1.261-.421-1.538-2.102-1.538h-.73zm9.364 2.212h.885c-.243 1.316-.642 1.604-2.19 1.604-2.079 0-2.533-.542-2.533-2.987 0-2.433.431-2.964 2.378-2.964 2.046 0 2.489.608 2.456 3.396h-3.993c.044 1.415.343 1.725 1.659 1.725.885 0 1.128-.144 1.338-.774m-2.986-1.748h3.13c-.044-1.449-.332-1.769-1.56-1.769-1.25 0-1.537.32-1.57 1.769m6.853 3.241v-5.729h.763l-.099 1.205h.055c.586-1.15.664-1.205 1.847-1.216.608-.011.896 0 1.361.055v.852a3.6 3.6 0 0 0-.819-.078c-1.847 0-2.256.476-2.256 2.622v2.289zm5.725-1.637h.885c.044.752.321.918 1.493.918 1.151 0 1.405-.144 1.405-.818 0-.675-.288-.863-1.571-1.018-1.747-.21-2.134-.542-2.134-1.747 0-1.261.409-1.538 2.245-1.538 1.759 0 2.157.277 2.223 1.515h-.874c-.066-.564-.309-.685-1.338-.685-1.128 0-1.383.132-1.383.741 0 .575.266.73 1.46.907 1.848.265 2.257.586 2.257 1.858 0 1.327-.421 1.615-2.334 1.615s-2.334-.31-2.334-1.748m9.021 1.748c-2.035 0-2.477-.542-2.477-2.987 0-2.433.442-2.964 2.477-2.964 2.025 0 2.467.531 2.467 2.964 0 2.445-.442 2.987-2.467 2.987m0-.83c1.295 0 1.582-.387 1.582-2.157 0-1.747-.287-2.134-1.582-2.134-1.305 0-1.592.387-1.592 2.134 0 1.77.287 2.157 1.592 2.157m4.376.719v-5.729h.83v.929h.055c.321-.852.642-1.04 1.781-1.04 1.593 0 1.946.398 1.946 2.19v3.65h-.884v-3.65c0-1.095-.233-1.338-1.272-1.338-1.283 0-1.571.365-1.571 2.057v2.931z"
183
- }),
184
- /* @__PURE__ */ jsx("rect", {
185
- width: 67.576,
186
- height: 26.979,
187
- x: -14.027,
188
- y: 354.696,
189
- fill: "#fff",
190
- rx: 4.496
191
- }),
192
- /* @__PURE__ */ jsx("rect", {
193
- width: 67.576,
194
- height: 26.979,
195
- x: -14.027,
196
- y: 354.696,
197
- stroke: "#CBC24D",
198
- strokeWidth: .6,
199
- rx: 4.496
200
- }),
201
- /* @__PURE__ */ jsx("path", {
202
- stroke: "#FFF7AA",
203
- strokeLinecap: "round",
204
- strokeLinejoin: "round",
205
- strokeWidth: 1.199,
206
- d: "M2.16 363.239h-8.994a.45.45 0 0 0-.45.45v8.992c0 .249.202.45.45.45H2.16a.45.45 0 0 0 .45-.45v-8.992a.45.45 0 0 0-.45-.45M.361 362.34v1.798M-7.283 365.937h9.892"
207
- }),
208
- /* @__PURE__ */ jsx("path", {
209
- fill: "#101010",
210
- d: "M11.224 371.685v-8.154h4.496v.9h-3.513v2.566h3.058v.899h-3.058v2.89h3.753v.899zm8.748 0-2.362-6.211h1.044l1.798 5.048h.084l1.798-5.048h1.044l-2.362 6.211zm9.348-1.619h.96c-.264 1.427-.696 1.739-2.375 1.739-2.254 0-2.745-.588-2.745-3.238 0-2.637.467-3.213 2.578-3.213 2.218 0 2.697.659 2.661 3.681h-4.328c.048 1.535.372 1.871 1.798 1.871.96 0 1.224-.156 1.451-.84m-3.237-1.894h3.393c-.048-1.571-.36-1.919-1.69-1.919-1.355 0-1.667.348-1.703 1.919m6.41 3.513v-6.211h.9v1.007h.06c.347-.923.695-1.127 1.93-1.127 1.726 0 2.11.432 2.11 2.374v3.957h-.96v-3.957c0-1.187-.25-1.451-1.378-1.451-1.39 0-1.703.396-1.703 2.23v3.178zm7.094-5.384.24-.827h1.415v-1.403l.923-.396v1.799h2.218v.827h-2.23v3.454c0 .947.216 1.151 1.21 1.151.288 0 .528-.024 1.284-.108v.875c-.792.108-1.055.132-1.487.132-1.595 0-1.942-.36-1.942-2.003v-3.501z"
211
- }),
212
- /* @__PURE__ */ jsx("rect", {
213
- width: 49.069,
214
- height: 22.119,
215
- x: 132.019,
216
- y: 202.9,
217
- fill: "#fff",
218
- rx: 3.687
219
- }),
220
- /* @__PURE__ */ jsx("rect", {
221
- width: 49.069,
222
- height: 22.119,
223
- x: 132.019,
224
- y: 202.9,
225
- stroke: "#B8B8B8",
226
- strokeWidth: .492,
227
- rx: 3.687
228
- }),
229
- /* @__PURE__ */ jsx("path", {
230
- stroke: "#777",
231
- strokeLinecap: "round",
232
- strokeLinejoin: "round",
233
- strokeWidth: .983,
234
- d: "M138.646 217.248a3.32 3.32 0 0 1 2.958-1.816 3.32 3.32 0 0 1 2.958 1.816"
235
- }),
236
- /* @__PURE__ */ jsx("path", {
237
- stroke: "#777",
238
- strokeLinecap: "round",
239
- strokeLinejoin: "round",
240
- strokeWidth: .983,
241
- d: "M141.604 218.383a4.424 4.424 0 1 0 0-8.849 4.424 4.424 0 0 0 0 8.849"
242
- }),
243
- /* @__PURE__ */ jsx("path", {
244
- stroke: "#777",
245
- strokeLinecap: "round",
246
- strokeLinejoin: "round",
247
- strokeWidth: .983,
248
- d: "M141.604 215.434a1.843 1.843 0 1 0 0-3.686 1.843 1.843 0 0 0 0 3.686"
249
- }),
250
- /* @__PURE__ */ jsx("path", {
251
- fill: "#101010",
252
- d: "M152.379 216.959v-6.685c.334-.029 1.524-.039 1.986-.029 1.818.049 2.212.383 2.212 1.838 0 1.258-.217 1.553-1.219 1.671v.059c.609.099.796.315 1.032 1.2l.511 1.946h-.885l-.432-1.946c-.177-.787-.453-.954-1.544-.954h-.875v2.9zm.786-3.627h1.554c.855 0 1.042-.227 1.042-1.249 0-.895-.325-1.091-1.809-1.091-.158 0-.305.01-.787.029zm7.163 3.725c-1.809 0-2.202-.481-2.202-2.654 0-2.163.393-2.635 2.202-2.635 1.799 0 2.192.472 2.192 2.635 0 2.173-.393 2.654-2.192 2.654m0-.737c1.15 0 1.406-.344 1.406-1.917 0-1.553-.256-1.897-1.406-1.897-1.16 0-1.416.344-1.416 1.897 0 1.573.256 1.917 1.416 1.917m3.929.639v-.698h1.769V210.5h-1.671v-.698h2.438v6.459h1.642v.698zm9.247-1.327h.786c-.216 1.17-.57 1.425-1.947 1.425-1.848 0-2.251-.481-2.251-2.654 0-2.163.384-2.635 2.114-2.635 1.819 0 2.212.541 2.182 3.019h-3.549c.04 1.258.305 1.533 1.475 1.533.786 0 1.003-.128 1.19-.688m-2.655-1.553h2.782c-.039-1.288-.295-1.573-1.386-1.573-1.111 0-1.366.285-1.396 1.573"
253
- }),
254
- /* @__PURE__ */ jsx("rect", {
255
- width: 80.477,
256
- height: 24.245,
257
- x: 107.469,
258
- y: 89.204,
259
- fill: "#fff",
260
- rx: 4.041
261
- }),
262
- /* @__PURE__ */ jsx("rect", {
263
- width: 80.477,
264
- height: 24.245,
265
- x: 107.469,
266
- y: 89.204,
267
- stroke: "#E26178",
268
- strokeWidth: .539,
269
- rx: 4.041
270
- }),
271
- /* @__PURE__ */ jsx("path", {
272
- stroke: "#E26178",
273
- strokeLinecap: "round",
274
- strokeLinejoin: "round",
275
- strokeWidth: 1.078,
276
- d: "M117.975 98.094a1.212 1.212 0 1 0 0-2.425 1.212 1.212 0 0 0 0 2.425M113.48 100.059c-.591-.273-.397-1.157.252-1.157h8.486c.65 0 .844.884.253 1.157l-2.879 1.268 1.155 4.391a.608.608 0 0 1-.757.819.6.6 0 0 1-.342-.307l-1.673-2.883-1.673 2.883a.61.61 0 0 1-.801.285.6.6 0 0 1-.297-.797l1.155-4.391z"
277
- }),
278
- /* @__PURE__ */ jsx("path", {
279
- fill: "#101010",
280
- d: "M133.707 103.103h.884c-.13 1.497-.561 1.831-2.349 1.831-2.058 0-2.511-.678-2.511-3.76 0-2.974.55-3.782 2.511-3.782 1.735 0 2.144.345 2.284 1.885h-.883c-.151-.872-.41-1.066-1.401-1.066-1.326 0-1.617.528-1.617 2.941 0 2.425.291 2.964 1.617 2.964 1.056 0 1.325-.184 1.465-1.013m7.054 1.724h-.808v-.905h-.054c-.313.829-.625 1.012-1.735 1.012-1.552 0-1.896-.387-1.896-2.133v-3.556h.862v3.556c0 1.067.226 1.304 1.239 1.304 1.25 0 1.53-.356 1.53-2.004v-2.856h.862zm1.978-1.595h.862c.044.733.313.894 1.455.894 1.121 0 1.369-.14 1.369-.797s-.281-.841-1.531-.991c-1.702-.205-2.079-.528-2.079-1.703 0-1.228.398-1.498 2.187-1.498 1.714 0 2.101.27 2.166 1.477h-.851c-.065-.55-.302-.669-1.304-.669-1.099 0-1.347.13-1.347.722 0 .561.259.712 1.422.884 1.8.259 2.199.571 2.199 1.81 0 1.293-.41 1.573-2.274 1.573s-2.274-.301-2.274-1.702m6.397-3.243.215-.744h1.272v-1.26l.829-.356v1.616h1.994v.744h-2.004v3.103c0 .851.194 1.034 1.088 1.034.259 0 .474-.021 1.153-.097v.787c-.711.097-.948.118-1.336.118-1.433 0-1.746-.323-1.746-1.799v-3.146zm8.907 4.945c-1.983 0-2.414-.528-2.414-2.909 0-2.37.431-2.888 2.414-2.888 1.972 0 2.403.517 2.403 2.888 0 2.381-.431 2.909-2.403 2.909m0-.808c1.261 0 1.541-.377 1.541-2.101 0-1.702-.28-2.08-1.541-2.08-1.272 0-1.552.378-1.552 2.08 0 1.724.28 2.101 1.552 2.101m3.81.701v-5.582h.754v.744h.054c.248-.669.496-.852 1.186-.852.689 0 .916.183 1.056.852h.053c.248-.669.485-.852 1.078-.852.991 0 1.25.507 1.25 2.382v3.308h-.83v-3.308c0-1.239-.14-1.584-.679-1.584-.603 0-.775.441-.775 2.036v2.856h-.841l.022-3.308c.01-1.239-.151-1.584-.712-1.584-.625 0-.786.441-.786 2.036v2.856zm10.631-1.455h.862c-.237 1.282-.625 1.562-2.133 1.562-2.026 0-2.468-.528-2.468-2.909 0-2.37.42-2.888 2.317-2.888 1.993 0 2.424.593 2.392 3.308h-3.89c.043 1.38.334 1.681 1.616 1.681.862 0 1.1-.14 1.304-.754m-2.909-1.702h3.049c-.043-1.412-.323-1.725-1.519-1.725-1.218 0-1.498.313-1.53 1.725m6.676 3.157v-5.582h.744l-.097 1.175h.054c.571-1.121.646-1.175 1.799-1.186.593-.01.873 0 1.326.054v.83a3.5 3.5 0 0 0-.798-.076c-1.799 0-2.198.464-2.198 2.554v2.231z"
281
- }),
282
- /* @__PURE__ */ jsx("rect", {
283
- width: 180.946,
284
- height: 41.423,
285
- x: 59.2,
286
- y: 267.067,
287
- fill: "#fff",
288
- rx: 6.904
289
- }),
290
- /* @__PURE__ */ jsx("rect", {
291
- width: 180.946,
292
- height: 41.423,
293
- x: 59.2,
294
- y: 267.067,
295
- stroke: "#E1BD8D",
296
- strokeWidth: .921,
297
- rx: 6.904
298
- }),
299
- /* @__PURE__ */ jsx("path", {
300
- stroke: "#AA6D2F",
301
- strokeLinecap: "round",
302
- strokeLinejoin: "round",
303
- strokeWidth: 1.841,
304
- d: "M68.175 295.373h19.33M70.246 280.185v15.188M81.292 295.373v-15.188M73.007 283.636h1.381M77.15 283.636h1.38M73.007 287.088h1.381M77.15 287.088h1.38M73.698 295.373v-4.833h4.142v4.833M69.556 280.185h12.427M85.435 295.373v-11.046M81.292 284.327h4.833"
305
- }),
306
- /* @__PURE__ */ jsx("path", {
307
- fill: "#101010",
308
- d: "M101.083 294.463c-3.59 0-4.382-1.16-4.382-6.444s.792-6.443 4.382-6.443c3.572 0 4.363 1.16 4.363 6.443 0 5.284-.791 6.444-4.363 6.444m0-1.399c2.32 0 2.835-.902 2.835-5.045s-.515-5.044-2.835-5.044c-2.338 0-2.853.902-2.853 5.044 0 4.143.515 5.045 2.853 5.045m8.848 1.215v-9.537h1.271l-.166 2.007h.092c.976-1.915 1.105-2.007 3.075-2.025 1.012-.019 1.491 0 2.264.092v1.417a6 6 0 0 0-1.362-.128c-3.075 0-3.756.791-3.756 4.363v3.811zm9.714 1.141h1.509c0 1.234.369 1.51 2.081 1.51 2.172 0 2.651-.479 2.688-2.67v-1.436h-.092c-.461 1.197-.939 1.455-2.688 1.455-3.148 0-3.848-.866-3.848-4.842 0-3.995.7-4.879 3.866-4.879 1.731 0 2.209.258 2.651 1.436h.092v-1.252h1.418v9.721c-.019 3.093-.737 3.774-3.995 3.774-2.872 0-3.535-.515-3.682-2.817m3.7-2.467c2.117 0 2.578-.626 2.578-3.516 0-2.909-.461-3.553-2.578-3.553s-2.577.644-2.577 3.553c0 2.89.46 3.516 2.577 3.516m13.451 1.326v-1.234h-.092c-.442 1.16-.957 1.418-2.854 1.418-2.577 0-3.148-.497-3.148-2.762 0-2.669.773-3.258 4.271-3.258h1.823v-.405c0-1.786-.423-2.173-2.357-2.173-1.583 0-1.951.258-1.988 1.436h-1.417c0-2.246.607-2.743 3.35-2.743 3.056 0 3.738.626 3.738 3.48v6.241zm-.018-4.548h-2.173c-2.025 0-2.467.313-2.467 1.786 0 1.307.35 1.602 1.896 1.602 2.246 0 2.744-.608 2.744-3.388m4.982 4.548v-9.537h1.38v1.547h.092c.534-1.418 1.068-1.731 2.964-1.731 2.652 0 3.241.663 3.241 3.645v6.076h-1.473v-6.076c0-1.822-.387-2.227-2.117-2.227-2.136 0-2.615.607-2.615 3.424v4.879zm14.15-11.488v-2.025h2.025v2.025zm-2.614 11.488v-1.307h3.185v-6.923h-3.001v-1.307h4.418v8.23h3.001v1.307zm10.873 0v-1.363l5.744-6.848h-5.431v-1.326h7.069v1.363l-5.688 6.83 5.688-.019v1.363zm17.151 0v-1.234h-.092c-.442 1.16-.957 1.418-2.854 1.418-2.577 0-3.148-.497-3.148-2.762 0-2.669.774-3.258 4.272-3.258h1.822v-.405c0-1.786-.423-2.173-2.356-2.173-1.584 0-1.952.258-1.989 1.436h-1.417c0-2.246.607-2.743 3.35-2.743 3.056 0 3.738.626 3.738 3.48v6.241zm-.018-4.548h-2.173c-2.025 0-2.467.313-2.467 1.786 0 1.307.35 1.602 1.897 1.602 2.246 0 2.743-.608 2.743-3.388m4.742-3.718.369-1.271h2.172v-2.154l1.418-.607v2.761h3.405v1.271h-3.424v5.302c0 1.454.332 1.767 1.86 1.767.441 0 .81-.037 1.97-.166v1.344c-1.216.166-1.621.203-2.283.203-2.449 0-2.983-.552-2.983-3.075v-5.375zm14.39-3.222v-2.025h2.025v2.025zm-2.614 11.488v-1.307h3.185v-6.923h-3.001v-1.307h4.418v8.23h3.001v1.307zm14.574.184c-3.388 0-4.124-.902-4.124-4.971 0-4.05.736-4.934 4.124-4.934 3.369 0 4.105.884 4.105 4.934 0 4.069-.736 4.971-4.105 4.971m0-1.381c2.154 0 2.632-.644 2.632-3.59 0-2.909-.478-3.553-2.632-3.553-2.173 0-2.652.644-2.652 3.553 0 2.946.479 3.59 2.652 3.59m7.283 1.197v-9.537h1.381v1.547h.092c.534-1.418 1.067-1.731 2.964-1.731 2.651 0 3.24.663 3.24 3.645v6.076h-1.473v-6.076c0-1.822-.387-2.227-2.117-2.227-2.136 0-2.614.607-2.614 3.424v4.879z"
309
- }),
310
- /* @__PURE__ */ jsx("path", {
311
- stroke: "#BFBFBF",
312
- strokeDasharray: "5 5",
313
- strokeWidth: 1.5,
314
- d: "M504.571 272.699h-81.835"
315
- }),
316
- /* @__PURE__ */ jsx("rect", {
317
- width: 150,
318
- height: 44,
319
- x: 503.409,
320
- y: 342.801,
321
- fill: "#FAFAFA",
322
- rx: 5.421
323
- }),
324
- /* @__PURE__ */ jsx("rect", {
325
- width: 150,
326
- height: 44,
327
- x: 503.409,
328
- y: 342.801,
329
- stroke: "#CDCECD",
330
- rx: 5.421
331
- }),
332
- /* @__PURE__ */ jsx("rect", {
333
- width: 33.158,
334
- height: 33.158,
335
- x: 511.199,
336
- y: 348.222,
337
- fill: "#fff",
338
- rx: 4.737
339
- }),
340
- /* @__PURE__ */ jsxs("g", {
341
- clipPath: "url(#tenant-setup-light_svg__a)",
342
- children: [/* @__PURE__ */ jsx("mask", {
343
- id: "tenant-setup-light_svg__b",
344
- width: 24,
345
- height: 22,
346
- x: 516,
347
- y: 354,
348
- maskUnits: "userSpaceOnUse",
349
- style: { maskType: "luminance" },
350
- children: /* @__PURE__ */ jsx("path", {
351
- fill: "#fff",
352
- d: "M539.777 354.146h-23.684v21.625h23.684z"
353
- })
354
- }), /* @__PURE__ */ jsxs("g", {
355
- mask: "url(#tenant-setup-light_svg__b)",
356
- children: [
357
- /* @__PURE__ */ jsx("path", {
358
- fill: "#0066DA",
359
- d: "m517.884 372.68 1.044 1.844c.217.388.529.693.896.915l3.73-6.599h-7.461c0 .43.109.86.326 1.248z"
360
- }),
361
- /* @__PURE__ */ jsx("path", {
362
- fill: "#00AC47",
363
- d: "m527.935 361.078-3.73-6.599a2.5 2.5 0 0 0-.895.915l-6.891 12.199a2.56 2.56 0 0 0-.326 1.247h7.461z"
364
- }),
365
- /* @__PURE__ */ jsx("path", {
366
- fill: "#EA4335",
367
- d: "M536.047 375.439a2.5 2.5 0 0 0 .896-.915l.434-.763 2.075-3.673c.217-.388.326-.818.326-1.248h-7.462l1.588 3.189z"
368
- }),
369
- /* @__PURE__ */ jsx("path", {
370
- fill: "#00832D",
371
- d: "m527.935 361.077 3.731-6.598a2.34 2.34 0 0 0-1.221-.333h-5.019c-.434 0-.855.125-1.221.333z"
372
- }),
373
- /* @__PURE__ */ jsx("path", {
374
- fill: "#2684FC",
375
- d: "M532.317 368.84h-8.763l-3.73 6.599c.366.221.787.332 1.221.332h13.781a2.5 2.5 0 0 0 1.221-.332z"
376
- }),
377
- /* @__PURE__ */ jsx("path", {
378
- fill: "#FFBA00",
379
- d: "m536.007 361.493-3.446-6.099a2.5 2.5 0 0 0-.895-.915l-3.73 6.599 4.381 7.762h7.447c0-.43-.108-.859-.325-1.247z"
380
- })
381
- ]
382
- })]
383
- }),
384
- /* @__PURE__ */ jsx("path", {
385
- fill: "#101010",
386
- d: "M554.887 373.981c-2.238 0-3.614-1.227-3.614-3.017h1.74c.017 1.011.713 1.674 1.907 1.674 1.277 0 2.188-.712 2.188-2.171v-.929c0-.265 0-.514.034-.762-.448.762-1.36 1.326-2.57 1.326-2.155 0-3.631-1.525-3.631-4.045 0-2.487 1.658-4.062 3.598-4.062 1.376 0 2.155.63 2.603 1.376-.034-.232-.034-.464-.034-.713v-.398h1.725v7.709c0 2.703-1.476 4.012-3.946 4.012m.083-5.239c1.309 0 2.238-1.094 2.238-2.685 0-1.575-.929-2.703-2.238-2.703-1.343 0-2.272 1.111-2.272 2.703 0 1.608.929 2.685 2.272 2.685m9.748 1.824c-2.371 0-4.029-1.658-4.029-4.277 0-2.57 1.675-4.294 4.029-4.294 2.371 0 4.045 1.724 4.045 4.294 0 2.619-1.674 4.277-4.045 4.277m0-1.343c1.392 0 2.288-1.144 2.288-2.934 0-1.824-.912-2.935-2.288-2.935-1.36 0-2.271 1.111-2.271 2.935 0 1.79.878 2.934 2.271 2.934m9.457 1.343c-2.371 0-4.029-1.658-4.029-4.277 0-2.57 1.675-4.294 4.029-4.294 2.371 0 4.045 1.724 4.045 4.294 0 2.619-1.674 4.277-4.045 4.277m0-1.343c1.393 0 2.288-1.144 2.288-2.934 0-1.824-.912-2.935-2.288-2.935-1.36 0-2.271 1.111-2.271 2.935 0 1.79.878 2.934 2.271 2.934m9.391 4.758c-2.238 0-3.614-1.227-3.614-3.017h1.74c.017 1.011.713 1.674 1.907 1.674 1.277 0 2.188-.712 2.188-2.171v-.929c0-.265 0-.514.034-.762-.448.762-1.36 1.326-2.57 1.326-2.155 0-3.631-1.525-3.631-4.045 0-2.487 1.658-4.062 3.598-4.062 1.376 0 2.155.63 2.603 1.376-.034-.232-.034-.464-.034-.713v-.398h1.725v7.709c0 2.703-1.476 4.012-3.946 4.012m.083-5.239c1.309 0 2.238-1.094 2.238-2.685 0-1.575-.929-2.703-2.238-2.703-1.343 0-2.272 1.111-2.272 2.703 0 1.608.929 2.685 2.272 2.685m6.217 1.559v-11.605h1.724v11.605zm7.58.265c-2.404 0-3.996-1.525-3.996-4.31 0-2.504 1.658-4.261 3.929-4.261 2.421 0 3.797 1.691 3.797 4.294v.364h-5.985c.033 1.559.961 2.57 2.271 2.57.929 0 1.741-.447 1.907-1.475h1.741c-.166 1.525-1.426 2.818-3.664 2.818m1.923-5.139c-.017-1.26-.763-2.123-2.006-2.123-1.211 0-2.04.912-2.156 2.123zm3.381 1.459v-1.642h4.294v1.642zm9.555 3.68c-2.122 0-3.697-1.492-3.697-4.277 0-2.653 1.641-4.294 3.73-4.294 1.294 0 2.123.679 2.537 1.376-.033-.249-.033-.481-.033-.713v-3.962h1.724v11.605h-1.724v-.398c0-.265 0-.481.033-.713-.381.663-1.227 1.376-2.57 1.376m.365-1.343c1.31 0 2.271-1.177 2.271-2.951s-.945-2.918-2.271-2.918-2.288 1.194-2.288 2.935c0 1.774.945 2.934 2.288 2.934m6.249 1.078v-8.041h1.724v.481l-.033.912c.414-.912 1.21-1.658 2.437-1.658.133 0 .265 0 .398.033v1.674c-.133-.016-.282-.049-.514-.049-1.393 0-2.288.746-2.288 2.52v4.128zm6.089 0v-8.041h1.725v8.041zm-.083-9.417v-1.907h1.89v1.907zm6.221 9.417-3.05-8.041h1.856l1.907 5.554c.133.348.199.597.282.912.083-.315.166-.564.282-.912l1.873-5.554h1.791l-3.001 8.041zm9.685.265c-2.404 0-3.995-1.525-3.995-4.31 0-2.504 1.658-4.261 3.929-4.261 2.42 0 3.797 1.691 3.797 4.294v.364h-5.985c.033 1.559.961 2.57 2.271 2.57.928 0 1.741-.447 1.906-1.475h1.741c-.166 1.525-1.426 2.818-3.664 2.818m1.923-5.139c-.016-1.26-.762-2.123-2.006-2.123-1.21 0-2.039.912-2.155 2.123z"
387
- }),
388
- /* @__PURE__ */ jsx("rect", {
389
- width: 102.474,
390
- height: 43.816,
391
- x: 497.435,
392
- y: 251.76,
393
- fill: "#FAFAFA",
394
- rx: 5.329
395
- }),
396
- /* @__PURE__ */ jsx("rect", {
397
- width: 102.474,
398
- height: 43.816,
399
- x: 497.435,
400
- y: 251.76,
401
- stroke: "#CDCECD",
402
- strokeWidth: 1.184,
403
- rx: 5.329
404
- }),
405
- /* @__PURE__ */ jsx("rect", {
406
- width: 33.158,
407
- height: 33.158,
408
- x: 505.133,
409
- y: 257.089,
410
- fill: "#fff",
411
- rx: 4.737
412
- }),
413
- /* @__PURE__ */ jsx("path", {
414
- fill: "#fff",
415
- d: "m513.039 264.667 10.892-.819c1.322-.126 1.668-.031 2.518.567l3.494 2.455c.566.409.755.535.755 1.007v13.441c0 .85-.315 1.353-1.385 1.416l-12.654.756c-.818.031-1.196-.063-1.605-.598l-2.55-3.305c-.472-.63-.661-1.07-.661-1.606V266.02c0-.692.315-1.29 1.196-1.353"
416
- }),
417
- /* @__PURE__ */ jsx("path", {
418
- fill: "#000",
419
- fillRule: "evenodd",
420
- d: "m523.931 263.848-10.892.819c-.881.063-1.196.661-1.196 1.353v11.962c0 .535.189 1.007.661 1.605l2.55 3.337c.409.535.818.661 1.605.598l12.654-.756c1.07-.063 1.385-.566 1.385-1.416v-13.472c0-.441-.157-.567-.692-.945-.032-.031-.063-.031-.095-.063l-3.462-2.423c-.819-.63-1.165-.693-2.518-.599m-6.988 3.809c-1.039.063-1.26.095-1.858-.409l-1.479-1.165c-.157-.157-.094-.346.315-.377l10.482-.756c.881-.063 1.322.22 1.668.504l1.794 1.29c.095.032.283.252.032.252l-10.829.661zm-1.197 13.567v-11.426c0-.504.158-.724.599-.756l12.433-.724c.409-.031.598.221.598.724v11.332c0 .504-.094.913-.755.944l-11.899.693c-.661.063-.976-.189-.976-.787m11.741-10.797c.063.346 0 .693-.346.724l-.566.126v8.436c-.504.283-.945.409-1.322.409-.598 0-.756-.189-1.228-.755l-3.777-5.918v5.697l1.196.284s0 .692-.944.692l-2.645.157c-.063-.157 0-.535.252-.598l.693-.188v-7.555l-.945-.094c-.063-.347.126-.85.661-.882l2.833-.189 3.904 5.981v-5.288l-1.008-.126a.642.642 0 0 1 .598-.755z",
421
- clipRule: "evenodd"
422
- }),
423
- /* @__PURE__ */ jsx("path", {
424
- fill: "#101010",
425
- d: "M545.356 279.168v-8.041h1.707v.448c0 .215 0 .414-.033.663.448-.746 1.31-1.376 2.487-1.376 1.807 0 2.901 1.21 2.901 3.233v5.073h-1.724v-4.841c0-1.343-.547-2.106-1.641-2.106-1.194 0-1.973.979-1.973 2.172v4.775zm12.859.265c-2.371 0-4.029-1.658-4.029-4.277 0-2.57 1.675-4.294 4.029-4.294 2.371 0 4.045 1.724 4.045 4.294 0 2.619-1.674 4.277-4.045 4.277m0-1.343c1.392 0 2.288-1.144 2.288-2.934 0-1.824-.912-2.935-2.288-2.935-1.36 0-2.272 1.111-2.272 2.935 0 1.79.879 2.934 2.272 2.934m9.045 1.211c-1.459 0-2.454-.713-2.454-2.504v-4.277h-1.674v-1.393h1.674v-2.785h1.725v2.785h1.823v1.393h-1.823v4.045c0 .895.398 1.293 1.177 1.293.199 0 .398-.016.613-.05v1.377a4.5 4.5 0 0 1-1.061.116m2.889-.133v-8.041h1.724v8.041zm-.083-9.417v-1.906h1.89v1.906zm7.696 9.682c-2.37 0-4.028-1.658-4.028-4.277 0-2.57 1.674-4.294 4.028-4.294 2.371 0 4.046 1.724 4.046 4.294 0 2.619-1.675 4.277-4.046 4.277m0-1.343c1.393 0 2.288-1.144 2.288-2.934 0-1.824-.912-2.935-2.288-2.935-1.359 0-2.271 1.111-2.271 2.935 0 1.79.879 2.934 2.271 2.934m5.926 1.078v-8.041h1.708v.448c0 .215 0 .414-.033.663.447-.746 1.309-1.376 2.487-1.376 1.807 0 2.901 1.21 2.901 3.233v5.073h-1.724v-4.841c0-1.343-.547-2.106-1.642-2.106-1.193 0-1.973.979-1.973 2.172v4.775z"
426
- }),
427
- /* @__PURE__ */ jsx("path", {
428
- fill: "#FAFAFA",
429
- d: "M509.238 157.76h82.817a5.33 5.33 0 0 1 5.328 5.329v33.158a5.33 5.33 0 0 1-5.328 5.329h-82.817a5.33 5.33 0 0 1-5.329-5.329v-33.158a5.33 5.33 0 0 1 5.329-5.329"
430
- }),
431
- /* @__PURE__ */ jsx("path", {
432
- stroke: "#CDCECD",
433
- strokeWidth: 1.184,
434
- d: "M509.238 157.76h82.817a5.33 5.33 0 0 1 5.328 5.329v33.158a5.33 5.33 0 0 1-5.328 5.329h-82.817a5.33 5.33 0 0 1-5.329-5.329v-33.158a5.33 5.33 0 0 1 5.329-5.329Z"
435
- }),
436
- /* @__PURE__ */ jsx("rect", {
437
- width: 33.158,
438
- height: 33.158,
439
- x: 511.607,
440
- y: 163.089,
441
- fill: "#fff",
442
- rx: 4.737
443
- }),
444
- /* @__PURE__ */ jsx("path", {
445
- fill: "#E01E5A",
446
- d: "M522.464 182.272a2.08 2.08 0 0 1-2.073 2.073 2.08 2.08 0 0 1-2.074-2.073 2.08 2.08 0 0 1 2.074-2.074h2.073zM523.509 182.272c0-1.142.932-2.074 2.073-2.074s2.073.932 2.073 2.074v5.191a2.08 2.08 0 0 1-2.073 2.073 2.08 2.08 0 0 1-2.073-2.073z"
447
- }),
448
- /* @__PURE__ */ jsx("path", {
449
- fill: "#36C5F0",
450
- d: "M525.582 173.946a2.08 2.08 0 0 1-2.073-2.073c0-1.141.932-2.073 2.073-2.073s2.073.932 2.073 2.073v2.073zM525.582 174.991c1.141 0 2.073.932 2.073 2.073a2.08 2.08 0 0 1-2.073 2.074h-5.191a2.08 2.08 0 0 1-2.074-2.074c0-1.141.933-2.073 2.074-2.073z"
451
- }),
452
- /* @__PURE__ */ jsx("path", {
453
- fill: "#2EB67D",
454
- d: "M533.908 177.064c0-1.141.932-2.073 2.073-2.073s2.073.932 2.073 2.073a2.08 2.08 0 0 1-2.073 2.074h-2.073zM532.863 177.064a2.08 2.08 0 0 1-2.073 2.074 2.08 2.08 0 0 1-2.074-2.074v-5.191c0-1.141.933-2.073 2.074-2.073s2.073.932 2.073 2.073z"
455
- }),
456
- /* @__PURE__ */ jsx("path", {
457
- fill: "#ECB22E",
458
- d: "M530.79 185.39c1.141 0 2.073.932 2.073 2.073a2.08 2.08 0 0 1-2.073 2.073 2.08 2.08 0 0 1-2.074-2.073v-2.073zM530.79 184.345a2.08 2.08 0 0 1-2.074-2.073 2.08 2.08 0 0 1 2.074-2.074h5.191c1.141 0 2.073.933 2.073 2.074a2.08 2.08 0 0 1-2.073 2.073z"
459
- }),
460
- /* @__PURE__ */ jsx("path", {
461
- fill: "#101010",
462
- d: "M554.831 185.433c-2.222 0-3.548-1.177-3.631-2.984h1.724c.05 1.028.713 1.674 1.89 1.674 1.012 0 1.675-.464 1.675-1.177 0-.58-.448-.911-1.36-1.094l-1.094-.215c-1.592-.299-2.553-1.078-2.553-2.371 0-1.376 1.31-2.404 3.216-2.404 2.039 0 3.299 1.028 3.382 2.686h-1.724c-.083-.879-.713-1.376-1.708-1.376-.862 0-1.459.381-1.459 1.011 0 .564.398.845 1.36 1.028l1.111.215c1.508.299 2.52 1.012 2.52 2.388 0 1.492-1.277 2.619-3.349 2.619m5.209-.265v-11.605h1.725v11.605zm6.387.265c-1.459 0-2.769-.928-2.769-2.47 0-1.691 1.326-2.371 2.901-2.586l1.443-.216c.63-.083.845-.315.845-.763 0-.712-.563-1.226-1.459-1.226-1.094 0-1.707.596-1.757 1.508h-1.757c.083-1.575 1.343-2.818 3.398-2.818 2.222 0 3.283 1.243 3.283 3.299v5.007h-1.608v-.365c0-.248.016-.481.033-.729-.414.812-1.26 1.359-2.553 1.359m.381-1.293c1.177 0 2.073-.829 2.073-2.056v-1.028c-.133.166-.432.266-.912.349l-.912.182c-.945.182-1.625.547-1.625 1.326s.614 1.227 1.376 1.227m9.526 1.293c-2.371 0-4.029-1.542-4.029-4.294 0-2.619 1.791-4.277 4.112-4.277 2.122 0 3.465 1.276 3.647 3.133h-1.757c-.1-.978-.746-1.774-1.907-1.774-1.359 0-2.338 1.161-2.338 2.918s.929 2.951 2.321 2.951c1.211 0 1.89-.762 2.023-1.807h1.724c-.215 1.89-1.508 3.15-3.796 3.15m5.569-.265v-11.605h1.724v6.863c.183-.232.398-.48.597-.679l2.52-2.62h2.222l-3.415 3.415 3.763 4.626h-2.271l-2.669-3.448-.747.746v2.702z"
463
- }),
464
- /* @__PURE__ */ jsx("path", {
465
- stroke: "#BFBFBF",
466
- strokeDasharray: "5 5",
467
- strokeLinecap: "round",
468
- strokeLinejoin: "round",
469
- strokeWidth: 1.5,
470
- d: "M423.563 272.699c27.348 0 33.707 26.738 43.092 51.55 4.082 10.791 9.477 25.724 16.048 31.729 7.23 6.458 11.79 9.744 20.47 9.744M423.563 272.699c27.348 0 33.707-26.541 43.092-51.17 4.082-10.712 9.477-25.536 16.048-31.497 7.23-6.41 11.79-9.672 20.47-9.672"
471
- }),
472
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
473
- id: "tenant-setup-light_svg__a",
474
- children: /* @__PURE__ */ jsx("path", {
475
- fill: "#fff",
476
- d: "M516.093 354.301h23.684v21.316h-23.684z"
477
- })
478
- }) })
479
- ]
480
- });
481
- //#endregion
482
- export { SvgTenantSetupLight as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgUserSetupDark: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgUserSetupDark;