@galaxy-io/dls 1.2.7 → 1.3.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.
Files changed (305) 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 +183 -253
  8. package/dist/charts/ChartAxis.d.ts +47 -22
  9. package/dist/charts/ChartAxis.js +81 -60
  10. package/dist/charts/ChartCategoryTargets.d.ts +27 -0
  11. package/dist/charts/ChartCategoryTargets.js +75 -0
  12. package/dist/charts/ChartEmptyState.d.ts +17 -0
  13. package/dist/charts/ChartEmptyState.js +29 -0
  14. package/dist/charts/ChartFrame.d.ts +110 -0
  15. package/dist/charts/ChartFrame.js +143 -0
  16. package/dist/charts/ChartLegend.d.ts +27 -4
  17. package/dist/charts/ChartLegend.js +46 -23
  18. package/dist/charts/ChartPrimitives.d.ts +230 -0
  19. package/dist/charts/ChartPrimitives.js +305 -0
  20. package/dist/charts/ChartTooltip.d.ts +25 -4
  21. package/dist/charts/ChartTooltip.js +55 -49
  22. package/dist/charts/LineChart.d.ts +42 -20
  23. package/dist/charts/LineChart.js +175 -241
  24. package/dist/charts/PieChart.d.ts +48 -32
  25. package/dist/charts/PieChart.js +180 -170
  26. package/dist/charts/barChartGeometry.d.ts +120 -0
  27. package/dist/charts/barChartGeometry.js +210 -0
  28. package/dist/charts/barChartLegend.d.ts +25 -0
  29. package/dist/charts/barChartLegend.js +23 -0
  30. package/dist/charts/chartFormat.d.ts +27 -0
  31. package/dist/charts/chartFormat.js +71 -0
  32. package/dist/charts/chartScales.d.ts +120 -0
  33. package/dist/charts/chartScales.js +165 -0
  34. package/dist/charts/chartTheme.d.ts +18 -0
  35. package/dist/charts/chartTheme.js +26 -0
  36. package/dist/charts/constants.d.ts +241 -18
  37. package/dist/charts/constants.js +261 -32
  38. package/dist/charts/lineChartGeometry.d.ts +92 -0
  39. package/dist/charts/lineChartGeometry.js +134 -0
  40. package/dist/charts/pieChartGeometry.d.ts +60 -0
  41. package/dist/charts/pieChartGeometry.js +79 -0
  42. package/dist/charts/types.d.ts +428 -54
  43. package/dist/charts/types.js +155 -0
  44. package/dist/charts/useCartesianChartLayout.d.ts +70 -0
  45. package/dist/charts/useCartesianChartLayout.js +56 -0
  46. package/dist/charts/useChartDimensions.d.ts +47 -0
  47. package/dist/charts/useChartDimensions.js +63 -0
  48. package/dist/charts/useChartFormatters.d.ts +19 -0
  49. package/dist/charts/useChartFormatters.js +20 -0
  50. package/dist/charts/useChartInteraction.d.ts +76 -0
  51. package/dist/charts/useChartInteraction.js +126 -0
  52. package/dist/charts/useChartTooltipPosition.d.ts +53 -0
  53. package/dist/charts/useChartTooltipPosition.js +39 -0
  54. package/dist/charts/useSeriesColorResolver.d.ts +37 -0
  55. package/dist/charts/useSeriesColorResolver.js +27 -0
  56. package/dist/hooks/useElementClientSize.d.ts +20 -0
  57. package/dist/hooks/useElementClientSize.js +43 -0
  58. package/dist/inputs/CheckboxInput.d.ts +7 -2
  59. package/dist/inputs/CheckboxInput.js +30 -14
  60. package/dist/inputs/Input.d.ts +1 -1
  61. package/dist/inputs/Input.js +6 -2
  62. package/dist/inputs/MultiSelectInput.js +1 -1
  63. package/dist/inputs/RadioInput.js +7 -2
  64. package/dist/styles.css +69 -74
  65. package/dist/table/InfiniteSpreadsheet.d.ts +6 -0
  66. package/dist/table/InfiniteSpreadsheet.js +235 -0
  67. package/dist/table/InfiniteTable.d.ts +7 -88
  68. package/dist/table/InfiniteTable.js +366 -577
  69. package/dist/{spreadsheet → table}/SpreadsheetCell.d.ts +6 -4
  70. package/dist/table/SpreadsheetCell.js +71 -0
  71. package/dist/{spreadsheet → table}/SpreadsheetCellEditor.js +27 -21
  72. package/dist/table/SpreadsheetHeaderCell.d.ts +23 -0
  73. package/dist/table/SpreadsheetHeaderCell.js +91 -0
  74. package/dist/table/SpreadsheetMenuItem.d.ts +14 -0
  75. package/dist/table/SpreadsheetMenuItem.js +33 -0
  76. package/dist/table/SpreadsheetPrimitives.d.ts +172 -0
  77. package/dist/table/SpreadsheetPrimitives.js +105 -0
  78. package/dist/table/SpreadsheetRow.d.ts +33 -0
  79. package/dist/table/SpreadsheetRow.js +73 -0
  80. package/dist/{spreadsheet → table}/SpreadsheetRowActionCell.d.ts +5 -7
  81. package/dist/table/SpreadsheetRowActionCell.js +51 -0
  82. package/dist/table/TableExpandCell.d.ts +11 -0
  83. package/dist/table/TableExpandCell.js +24 -0
  84. package/dist/table/TableExpandedRow.d.ts +16 -0
  85. package/dist/table/TableExpandedRow.js +77 -0
  86. package/dist/table/TableHeaderCellContent.d.ts +30 -0
  87. package/dist/table/TableHeaderCellContent.js +48 -0
  88. package/dist/table/TablePrimitives.d.ts +307 -0
  89. package/dist/table/TablePrimitives.js +298 -0
  90. package/dist/table/TableSelectCell.d.ts +18 -0
  91. package/dist/table/TableSelectCell.js +26 -0
  92. package/dist/table/TableStatusRow.d.ts +18 -0
  93. package/dist/table/TableStatusRow.js +50 -0
  94. package/dist/table/VirtualizedInfiniteTable.d.ts +11 -27
  95. package/dist/table/VirtualizedInfiniteTable.js +182 -317
  96. package/dist/table/types.d.ts +249 -0
  97. package/dist/table/types.js +51 -0
  98. package/dist/table/useInfiniteScrollSentinel.d.ts +24 -0
  99. package/dist/table/useInfiniteScrollSentinel.js +53 -0
  100. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.d.ts +1 -1
  101. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.js +1 -1
  102. package/dist/table/useTableColumnLayout.d.ts +28 -0
  103. package/dist/table/useTableColumnLayout.js +63 -0
  104. package/dist/table/useTableColumnResize.d.ts +38 -0
  105. package/dist/table/useTableColumnResize.js +155 -0
  106. package/dist/table/useTableKeyboardNavigation.d.ts +25 -0
  107. package/dist/table/useTableKeyboardNavigation.js +83 -0
  108. package/dist/table/useTableRowExpansion.d.ts +24 -0
  109. package/dist/table/useTableRowExpansion.js +62 -0
  110. package/dist/table/useTableRowSelection.d.ts +27 -0
  111. package/dist/table/useTableRowSelection.js +94 -0
  112. package/dist/table/utils.d.ts +50 -0
  113. package/dist/table/utils.js +78 -0
  114. package/dist/text/MarkdownText.js +45 -27
  115. package/dist/theme/variants/dark.js +1 -1
  116. package/dist/widget/Widget.d.ts +2 -0
  117. package/dist/widget/Widget.js +14 -7
  118. package/package.json +1 -5
  119. package/dist/assets/components/enrichment/PerplexityIcon.d.ts +0 -3
  120. package/dist/assets/components/enrichment/PerplexityIcon.js +0 -35
  121. package/dist/assets/components/enrichment/TavilyIcon.d.ts +0 -3
  122. package/dist/assets/components/enrichment/TavilyIcon.js +0 -15
  123. package/dist/assets/components/onboarding/TenantSetupDark.d.ts +0 -3
  124. package/dist/assets/components/onboarding/TenantSetupDark.js +0 -498
  125. package/dist/assets/components/onboarding/TenantSetupLight.d.ts +0 -3
  126. package/dist/assets/components/onboarding/TenantSetupLight.js +0 -482
  127. package/dist/assets/components/onboarding/UserSetupDark.d.ts +0 -3
  128. package/dist/assets/components/onboarding/UserSetupDark.js +0 -1086
  129. package/dist/assets/components/onboarding/UserSetupLight.d.ts +0 -3
  130. package/dist/assets/components/onboarding/UserSetupLight.js +0 -1024
  131. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.d.ts +0 -3
  132. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.js +0 -466
  133. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.d.ts +0 -3
  134. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.js +0 -460
  135. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.d.ts +0 -3
  136. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.js +0 -336
  137. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.d.ts +0 -3
  138. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.js +0 -336
  139. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.d.ts +0 -3
  140. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.js +0 -153
  141. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.d.ts +0 -3
  142. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.js +0 -153
  143. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.d.ts +0 -3
  144. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.js +0 -117
  145. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.d.ts +0 -3
  146. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.js +0 -117
  147. package/dist/assets/components/projects/MappingMethodBlankDark.d.ts +0 -3
  148. package/dist/assets/components/projects/MappingMethodBlankDark.js +0 -150
  149. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.d.ts +0 -3
  150. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.js +0 -150
  151. package/dist/assets/components/projects/MappingMethodBlankLight.d.ts +0 -3
  152. package/dist/assets/components/projects/MappingMethodBlankLight.js +0 -150
  153. package/dist/assets/components/projects/MappingMethodBlankLightHovered.d.ts +0 -3
  154. package/dist/assets/components/projects/MappingMethodBlankLightHovered.js +0 -150
  155. package/dist/assets/components/projects/MappingMethodJsonDark.d.ts +0 -3
  156. package/dist/assets/components/projects/MappingMethodJsonDark.js +0 -90
  157. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.d.ts +0 -3
  158. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.js +0 -90
  159. package/dist/assets/components/projects/MappingMethodJsonLight.d.ts +0 -3
  160. package/dist/assets/components/projects/MappingMethodJsonLight.js +0 -90
  161. package/dist/assets/components/projects/MappingMethodJsonLightHovered.d.ts +0 -3
  162. package/dist/assets/components/projects/MappingMethodJsonLightHovered.js +0 -90
  163. package/dist/assets/components/projects/ProjectsEmptyStateDark.d.ts +0 -3
  164. package/dist/assets/components/projects/ProjectsEmptyStateDark.js +0 -454
  165. package/dist/assets/components/projects/ProjectsEmptyStateLight.d.ts +0 -3
  166. package/dist/assets/components/projects/ProjectsEmptyStateLight.js +0 -456
  167. package/dist/assets/components/root/CreateProjectActionCardDark.d.ts +0 -3
  168. package/dist/assets/components/root/CreateProjectActionCardDark.js +0 -1796
  169. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.d.ts +0 -3
  170. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.js +0 -1796
  171. package/dist/assets/components/root/CreateProjectActionCardLight.d.ts +0 -3
  172. package/dist/assets/components/root/CreateProjectActionCardLight.js +0 -1786
  173. package/dist/assets/components/root/CreateProjectActionCardLightHovered.d.ts +0 -3
  174. package/dist/assets/components/root/CreateProjectActionCardLightHovered.js +0 -1786
  175. package/dist/assets/components/root/CreateSourceActionCardDark.d.ts +0 -3
  176. package/dist/assets/components/root/CreateSourceActionCardDark.js +0 -879
  177. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.d.ts +0 -3
  178. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.js +0 -879
  179. package/dist/assets/components/root/CreateSourceActionCardLight.d.ts +0 -3
  180. package/dist/assets/components/root/CreateSourceActionCardLight.js +0 -889
  181. package/dist/assets/components/root/CreateSourceActionCardLightHovered.d.ts +0 -3
  182. package/dist/assets/components/root/CreateSourceActionCardLightHovered.js +0 -889
  183. package/dist/assets/components/sources/AttioIcon.d.ts +0 -3
  184. package/dist/assets/components/sources/AttioIcon.js +0 -11
  185. package/dist/assets/components/sources/BigquerySourceIcon.d.ts +0 -3
  186. package/dist/assets/components/sources/BigquerySourceIcon.js +0 -39
  187. package/dist/assets/components/sources/BrowserbaseSourceIcon.d.ts +0 -3
  188. package/dist/assets/components/sources/BrowserbaseSourceIcon.js +0 -35
  189. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.d.ts +0 -3
  190. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.js +0 -13
  191. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.d.ts +0 -3
  192. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.js +0 -13
  193. package/dist/assets/components/sources/ConfluenceSourceIcon.d.ts +0 -3
  194. package/dist/assets/components/sources/ConfluenceSourceIcon.js +0 -30
  195. package/dist/assets/components/sources/GithubSourceIcon.d.ts +0 -3
  196. package/dist/assets/components/sources/GithubSourceIcon.js +0 -27
  197. package/dist/assets/components/sources/GoogleDriveIcon.d.ts +0 -3
  198. package/dist/assets/components/sources/GoogleDriveIcon.js +0 -45
  199. package/dist/assets/components/sources/HubspotSourceIcon.d.ts +0 -3
  200. package/dist/assets/components/sources/HubspotSourceIcon.js +0 -14
  201. package/dist/assets/components/sources/JiraSourceIcon.d.ts +0 -3
  202. package/dist/assets/components/sources/JiraSourceIcon.js +0 -54
  203. package/dist/assets/components/sources/LinearSourceIcon.d.ts +0 -3
  204. package/dist/assets/components/sources/LinearSourceIcon.js +0 -14
  205. package/dist/assets/components/sources/MysqlLogoSourceIconDark.d.ts +0 -3
  206. package/dist/assets/components/sources/MysqlLogoSourceIconDark.js +0 -17
  207. package/dist/assets/components/sources/NetsuiteSourceIcon.d.ts +0 -3
  208. package/dist/assets/components/sources/NetsuiteSourceIcon.js +0 -32
  209. package/dist/assets/components/sources/NotionIcon.d.ts +0 -3
  210. package/dist/assets/components/sources/NotionIcon.js +0 -20
  211. package/dist/assets/components/sources/PostgresqlIcon.d.ts +0 -3
  212. package/dist/assets/components/sources/PostgresqlIcon.js +0 -61
  213. package/dist/assets/components/sources/S3Icon.d.ts +0 -3
  214. package/dist/assets/components/sources/S3Icon.js +0 -76
  215. package/dist/assets/components/sources/SalesforceSourceIcon.d.ts +0 -3
  216. package/dist/assets/components/sources/SalesforceSourceIcon.js +0 -23
  217. package/dist/assets/components/sources/SlackIcon.d.ts +0 -3
  218. package/dist/assets/components/sources/SlackIcon.js +0 -32
  219. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.d.ts +0 -3
  220. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.js +0 -14
  221. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.d.ts +0 -3
  222. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.js +0 -14
  223. package/dist/assets/components/sources/WikipediaSourceIcon.d.ts +0 -3
  224. package/dist/assets/components/sources/WikipediaSourceIcon.js +0 -1490
  225. package/dist/avatar/AvatarEmpty.d.ts +0 -7
  226. package/dist/avatar/AvatarEmpty.js +0 -99
  227. package/dist/avatar/types.d.ts +0 -5
  228. package/dist/avatar/types.js +0 -9
  229. package/dist/charts/utils.d.ts +0 -29
  230. package/dist/charts/utils.js +0 -62
  231. package/dist/icons/BackIcon.d.ts +0 -3
  232. package/dist/icons/BackIcon.js +0 -13
  233. package/dist/icons/CloseIcon.d.ts +0 -3
  234. package/dist/icons/CloseIcon.js +0 -13
  235. package/dist/icons/CreateIcon.d.ts +0 -3
  236. package/dist/icons/CreateIcon.js +0 -13
  237. package/dist/icons/ForwardIcon.d.ts +0 -3
  238. package/dist/icons/ForwardIcon.js +0 -13
  239. package/dist/icons/HelpIcon.d.ts +0 -3
  240. package/dist/icons/HelpIcon.js +0 -14
  241. package/dist/icons/ProjectsIcon.d.ts +0 -3
  242. package/dist/icons/ProjectsIcon.js +0 -12
  243. package/dist/icons/SearchIcon.d.ts +0 -3
  244. package/dist/icons/SearchIcon.js +0 -12
  245. package/dist/icons/SourcesIcon.d.ts +0 -3
  246. package/dist/icons/SourcesIcon.js +0 -12
  247. package/dist/icons/TextIcon.d.ts +0 -4
  248. package/dist/icons/TextIcon.js +0 -22
  249. package/dist/icons/WebScrapeIcon.d.ts +0 -4
  250. package/dist/icons/WebScrapeIcon.js +0 -22
  251. package/dist/icons/WebhookIcon.d.ts +0 -4
  252. package/dist/icons/WebhookIcon.js +0 -22
  253. package/dist/icons/sources/AttioLogomark.d.ts +0 -4
  254. package/dist/icons/sources/AttioLogomark.js +0 -8
  255. package/dist/icons/sources/BrowserbaseLogomark.d.ts +0 -4
  256. package/dist/icons/sources/BrowserbaseLogomark.js +0 -8
  257. package/dist/icons/sources/ClickhouseLogomark.d.ts +0 -4
  258. package/dist/icons/sources/ClickhouseLogomark.js +0 -16
  259. package/dist/icons/sources/ConfluenceLogomark.d.ts +0 -4
  260. package/dist/icons/sources/ConfluenceLogomark.js +0 -8
  261. package/dist/icons/sources/GithubLogomark.d.ts +0 -4
  262. package/dist/icons/sources/GithubLogomark.js +0 -8
  263. package/dist/icons/sources/GoogleBigqueryLogomark.d.ts +0 -4
  264. package/dist/icons/sources/GoogleBigqueryLogomark.js +0 -8
  265. package/dist/icons/sources/GoogleDriveLogomark.d.ts +0 -4
  266. package/dist/icons/sources/GoogleDriveLogomark.js +0 -8
  267. package/dist/icons/sources/HubspotLogomark.d.ts +0 -4
  268. package/dist/icons/sources/HubspotLogomark.js +0 -8
  269. package/dist/icons/sources/JiraLogomark.d.ts +0 -4
  270. package/dist/icons/sources/JiraLogomark.js +0 -8
  271. package/dist/icons/sources/LinearLogomark.d.ts +0 -4
  272. package/dist/icons/sources/LinearLogomark.js +0 -8
  273. package/dist/icons/sources/MySQLLogomark.d.ts +0 -4
  274. package/dist/icons/sources/MySQLLogomark.js +0 -8
  275. package/dist/icons/sources/NetsuiteLogomark.d.ts +0 -4
  276. package/dist/icons/sources/NetsuiteLogomark.js +0 -8
  277. package/dist/icons/sources/NotionLogomark.d.ts +0 -4
  278. package/dist/icons/sources/NotionLogomark.js +0 -8
  279. package/dist/icons/sources/PostgresLogomark.d.ts +0 -4
  280. package/dist/icons/sources/PostgresLogomark.js +0 -8
  281. package/dist/icons/sources/S3Logomark.d.ts +0 -4
  282. package/dist/icons/sources/S3Logomark.js +0 -8
  283. package/dist/icons/sources/SalesforceLogomark.d.ts +0 -4
  284. package/dist/icons/sources/SalesforceLogomark.js +0 -8
  285. package/dist/icons/sources/SlackLogoIconmark.d.ts +0 -4
  286. package/dist/icons/sources/SlackLogoIconmark.js +0 -8
  287. package/dist/icons/sources/SnowflakeLogomark.d.ts +0 -4
  288. package/dist/icons/sources/SnowflakeLogomark.js +0 -16
  289. package/dist/icons/sources/WikipediaLogomark.d.ts +0 -4
  290. package/dist/icons/sources/WikipediaLogomark.js +0 -8
  291. package/dist/spreadsheet/InfiniteSpreadsheet.d.ts +0 -3
  292. package/dist/spreadsheet/InfiniteSpreadsheet.js +0 -265
  293. package/dist/spreadsheet/SpreadsheetAddColumnButton.d.ts +0 -6
  294. package/dist/spreadsheet/SpreadsheetAddColumnButton.js +0 -32
  295. package/dist/spreadsheet/SpreadsheetCell.js +0 -115
  296. package/dist/spreadsheet/SpreadsheetHeaderCell.d.ts +0 -18
  297. package/dist/spreadsheet/SpreadsheetHeaderCell.js +0 -141
  298. package/dist/spreadsheet/SpreadsheetRow.d.ts +0 -21
  299. package/dist/spreadsheet/SpreadsheetRow.js +0 -68
  300. package/dist/spreadsheet/SpreadsheetRowActionCell.js +0 -78
  301. package/dist/spreadsheet/hooks/useColumnResize.d.ts +0 -6
  302. package/dist/spreadsheet/hooks/useColumnResize.js +0 -46
  303. package/dist/spreadsheet/types.d.ts +0 -92
  304. package/dist/spreadsheet/types.js +0 -21
  305. /package/dist/{spreadsheet → table}/SpreadsheetCellEditor.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galaxy-io/dls",
3
- "version": "1.2.7",
3
+ "version": "1.3.1",
4
4
  "description": "Galaxy Design Language System",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -119,10 +119,6 @@
119
119
  "types": "./dist/shapes/*.d.ts",
120
120
  "import": "./dist/shapes/*.js"
121
121
  },
122
- "./spreadsheet/*": {
123
- "types": "./dist/spreadsheet/*.d.ts",
124
- "import": "./dist/spreadsheet/*.js"
125
- },
126
122
  "./switcher/*": {
127
123
  "types": "./dist/switcher/*.d.ts",
128
124
  "import": "./dist/switcher/*.js"
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgPerplexityIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgPerplexityIcon;
@@ -1,35 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/enrichment/PerplexityIcon.tsx
3
- var SvgPerplexityIcon = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- viewBox: "0 0 512 512",
6
- ...props,
7
- children: [
8
- /* @__PURE__ */ jsxs("g", {
9
- fill: "none",
10
- stroke: "#8f8f8f",
11
- strokeWidth: 2,
12
- children: [/* @__PURE__ */ jsx("path", {
13
- d: "M247.92 176.24a.3.3 0 0 1-.5.22l-94.29-84.05a.3.3 0 0 0-.5.22v94.62a.3.3 0 0 1-.3.3h-38.16a.3.3 0 0 0-.3.3v142.82a.3.3 0 0 0 .3.3h36.86a.3.3 0 0 1 .3.3v88.65a.3.3 0 0 0 .5.22l95.59-85.35a.3.3 0 0 1 .5.22v82.94a.3.3 0 0 0 .3.3h16.41a.3.3 0 0 0 .3-.3v-82.97a.3.3 0 0 1 .5-.22l93.45 85.74a.3.3 0 0 0 .5-.22v-89.01a.3.3 0 0 1 .3-.3h38.17a.3.3 0 0 0 .3-.3V187.85a.3.3 0 0 0-.3-.3h-31.69a.3.3 0 0 1-.3-.3V93.27a.3.3 0 0 0-.49-.23l-99.95 84.51a.3.3 0 0 1-.49-.23V94.04a.3.3 0 0 0-.3-.3h-16.41a.3.3 0 0 0-.3.3v82.2",
14
- vectorEffect: "non-scaling-stroke"
15
- }), /* @__PURE__ */ jsx("path", {
16
- d: "M348.53 187.55a.34.34 0 0 0 .34-.34v-57.26a.34.34 0 0 0-.56-.26l-67.7 57.26a.34.34 0 0 0 .22.6h67.7M169.64 187.23a.32.32 0 0 0 .32.32h63.5a.32.32 0 0 0 .21-.56l-63.5-56.6a.32.32 0 0 0-.53.23v56.61M151.3 286.99a.35.35 0 0 1 .11-.25l83.7-81.57a.35.35 0 0 0-.24-.6H131.25a.35.35 0 0 0-.35.35v108.64a.35.35 0 0 0 .35.35h19.7a.35.35 0 0 0 .35-.35v-26.57M380.76 313.92a.34.34 0 0 0 .34-.34V204.91a.34.34 0 0 0-.34-.34H277.93a.34.34 0 0 0-.24.58l81.58 81.58a.34.34 0 0 1 .1.24v26.61a.34.34 0 0 0 .34.34h21.05M168.38 381.88a.34.34 0 0 0 .57.25l78.86-70.41a.34.34 0 0 0 .11-.25v-94.25a.34.34 0 0 0-.58-.25l-78.86 76.85a.34.34 0 0 0-.1.24v87.82M342.37 293.95a.3.3 0 0 0-.09-.21l-76.63-76.63a.3.3 0 0 0-.51.21v93.99a.3.3 0 0 0 .1.22l76.63 70.32a.3.3 0 0 0 .5-.22v-87.68",
17
- vectorEffect: "non-scaling-stroke"
18
- })]
19
- }),
20
- /* @__PURE__ */ jsx("path", {
21
- fill: "#1f1f1f",
22
- d: "M512 113.91v283.82q-.51 4.16-.88 8.39-1.38 15.96-6.56 29.72c-11.14 29.55-34.06 53.05-63.04 65.64-14.43 6.27-30.48 9.31-46.02 9.32q-119.83.07-276.5.01-14.21-.01-24.48-2.09-11.42-2.3-15.26-3.83-8.24-3.28-8.41-3.35-37.1-15.55-57.18-52.18Q5.54 434.53 2.31 418 .89 410.74 0 398.74V113.7q.38-2.45.53-4.95C3.68 54.54 46.3 9.7 99.91 2.26q8.55-1.19 30.23-1.18 93.57.05 266.86.09 10.78 0 23.73 2.71c37.87 7.92 69.57 35.56 83.47 71.34q5.48 14.11 6.94 30.53.36 4.1.86 8.16m-264.08 62.33a.3.3 0 0 1-.5.22l-94.29-84.05a.3.3 0 0 0-.5.22v94.62a.3.3 0 0 1-.3.3h-38.16a.3.3 0 0 0-.3.3v142.82a.3.3 0 0 0 .3.3h36.86a.3.3 0 0 1 .3.3v88.65a.3.3 0 0 0 .5.22l95.59-85.35a.3.3 0 0 1 .5.22v82.94a.3.3 0 0 0 .3.3h16.41a.3.3 0 0 0 .3-.3v-82.97a.3.3 0 0 1 .5-.22l93.45 85.74a.3.3 0 0 0 .5-.22v-89.01a.3.3 0 0 1 .3-.3h38.17a.3.3 0 0 0 .3-.3V187.85a.3.3 0 0 0-.3-.3h-31.69a.3.3 0 0 1-.3-.3V93.27a.3.3 0 0 0-.49-.23l-99.95 84.51a.3.3 0 0 1-.49-.23V94.04a.3.3 0 0 0-.3-.3h-16.41a.3.3 0 0 0-.3.3z"
23
- }),
24
- /* @__PURE__ */ jsx("path", {
25
- fill: "#fff",
26
- d: "M247.92 176.24v-82.2a.3.3 0 0 1 .3-.3h16.41a.3.3 0 0 1 .3.3v83.28a.3.3 0 0 0 .49.23l99.95-84.51a.3.3 0 0 1 .49.23v93.98a.3.3 0 0 0 .3.3h31.69a.3.3 0 0 1 .3.3v142.82a.3.3 0 0 1-.3.3h-38.17a.3.3 0 0 0-.3.3v89.01a.3.3 0 0 1-.5.22l-93.45-85.74a.3.3 0 0 0-.5.22v82.97a.3.3 0 0 1-.3.3h-16.41a.3.3 0 0 1-.3-.3v-82.94a.3.3 0 0 0-.5-.22l-95.59 85.35a.3.3 0 0 1-.5-.22v-88.65a.3.3 0 0 0-.3-.3h-36.86a.3.3 0 0 1-.3-.3V187.85a.3.3 0 0 1 .3-.3h38.16a.3.3 0 0 0 .3-.3V92.63a.3.3 0 0 1 .5-.22l94.29 84.05a.3.3 0 0 0 .5-.22m100.61 11.31a.34.34 0 0 0 .34-.34v-57.26a.34.34 0 0 0-.56-.26l-67.7 57.26a.34.34 0 0 0 .22.6zm-178.89-.32a.32.32 0 0 0 .32.32h63.5a.32.32 0 0 0 .21-.56l-63.5-56.6a.32.32 0 0 0-.53.23zm-18.34 99.76a.35.35 0 0 1 .11-.25l83.7-81.57a.35.35 0 0 0-.24-.6H131.25a.35.35 0 0 0-.35.35v108.64a.35.35 0 0 0 .35.35h19.7a.35.35 0 0 0 .35-.35zm229.46 26.93a.34.34 0 0 0 .34-.34V204.91a.34.34 0 0 0-.34-.34H277.93a.34.34 0 0 0-.24.58l81.58 81.58a.34.34 0 0 1 .1.24v26.61a.34.34 0 0 0 .34.34zm-212.38 67.96a.34.34 0 0 0 .57.25l78.86-70.41a.34.34 0 0 0 .11-.25v-94.25a.34.34 0 0 0-.58-.25l-78.86 76.85a.34.34 0 0 0-.1.24zm173.99-87.93a.3.3 0 0 0-.09-.21l-76.63-76.63a.3.3 0 0 0-.51.21v93.99a.3.3 0 0 0 .1.22l76.63 70.32a.3.3 0 0 0 .5-.22z"
27
- }),
28
- /* @__PURE__ */ jsx("path", {
29
- fill: "#1f1f1f",
30
- d: "M348.53 187.55h-67.7a.34.34 0 0 1-.22-.6l67.7-57.26a.34.34 0 0 1 .56.26v57.26a.34.34 0 0 1-.34.34M169.64 187.23v-56.61a.32.32 0 0 1 .53-.23l63.5 56.6a.32.32 0 0 1-.21.56h-63.5a.32.32 0 0 1-.32-.32M151.3 286.99v26.57a.35.35 0 0 1-.35.35h-19.7a.35.35 0 0 1-.35-.35V204.92a.35.35 0 0 1 .35-.35h103.62a.35.35 0 0 1 .24.6l-83.7 81.57a.35.35 0 0 0-.11.25M380.76 313.92h-21.05a.34.34 0 0 1-.34-.34v-26.61a.34.34 0 0 0-.1-.24l-81.58-81.58a.34.34 0 0 1 .24-.58h102.83a.34.34 0 0 1 .34.34v108.67a.34.34 0 0 1-.34.34M168.38 381.88v-87.82a.34.34 0 0 1 .1-.24l78.86-76.85a.34.34 0 0 1 .58.25v94.25a.34.34 0 0 1-.11.25l-78.86 70.41a.34.34 0 0 1-.57-.25M342.37 293.95v87.68a.3.3 0 0 1-.5.22l-76.63-70.32a.3.3 0 0 1-.1-.22v-93.99a.3.3 0 0 1 .51-.21l76.63 76.63a.3.3 0 0 1 .09.21"
31
- })
32
- ]
33
- });
34
- //#endregion
35
- export { SvgPerplexityIcon as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgTavilyIcon: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgTavilyIcon;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- //#region src/assets/components/enrichment/TavilyIcon.tsx
3
- var SvgTavilyIcon = (props) => /* @__PURE__ */ jsx("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- style: { maxHeight: 500 },
7
- viewBox: "0 0 56.172 56.186",
8
- ...props,
9
- children: /* @__PURE__ */ jsx("path", {
10
- fill: "#3C3A39",
11
- d: "M39.514 0c5.77 0 8.656 0 10.86 1.123a10.3 10.3 0 0 1 4.503 4.503C56 7.83 56 10.716 56 16.486v23.029c0 5.77 0 8.655-1.123 10.859a10.3 10.3 0 0 1-4.503 4.503C48.17 56 45.284 56 39.514 56H16.485c-5.77 0-8.656 0-10.86-1.123a10.3 10.3 0 0 1-4.502-4.503C0 48.17 0 45.284 0 39.514V16.486c0-5.77 0-8.655 1.123-10.859a10.3 10.3 0 0 1 4.502-4.503C7.829 0 10.715 0 16.485 0zM23.81 30.958a2.3 2.3 0 0 0-1.631.679l-4.408 4.426-1.172-1.176c-.861-.864-2.334-.437-2.602.756l-1.67 7.428a1.55 1.55 0 0 0 .412 1.438v.002a1.53 1.53 0 0 0 1.433.416l7.4-1.677c1.187-.269 1.613-1.748.752-2.612l-1.172-1.176 4.41-4.425a2.325 2.325 0 0 0 0-3.278l-.06-.06h.003l-.062-.062a2.3 2.3 0 0 0-1.633-.679m15.904-2.79c-1.03-.652-2.371.092-2.371 1.314v1.663h-9.448c.316.605.497 1.294.497 2.025a4.37 4.37 0 0 1-.995 2.782h9.945v1.662c0 1.223 1.342 1.966 2.372 1.313l6.414-4.066c.48-.305.72-.81.72-1.314-.001-.503-.241-1.007-.722-1.312zM24.039 10.407a1.53 1.53 0 0 0-1.309.725l-4.05 6.437h-.001c-.651 1.034.09 2.382 1.308 2.382h1.657v9.564a4.33 4.33 0 0 1 2.394-.72c.885 0 1.707.266 2.395.72V19.95h1.657c1.218 0 1.957-1.347 1.308-2.382l-4.052-6.437a1.54 1.54 0 0 0-1.307-.725M161.691 53.37v-5.32h2.61c2.309 0 3.363.05 4.518-2.811l.301-.753-10.34-26.903h7.579l6.124 19.475 6.274-19.475h7.027l-9.888 26.2c-3.162 8.383-4.568 9.587-11.293 9.587zM156.686 44.586h-6.926V8.196h6.926zM144.554 17.583v27.003h-6.927V17.583zM122.309 37.56l6.325-19.977h6.876l-9.687 27.003h-7.278l-9.838-27.003h7.278zM93.59 45.239c-5.17 0-9.737-3.012-9.737-7.93 0-6.375 7.177-8.282 17.768-9.487v-.452c0-4.166-2.259-5.621-5.07-5.621-2.66 0-4.868 1.405-5.019 4.367h-6.475c.502-5.32 4.919-9.236 11.846-9.236 6.424 0 11.644 2.76 11.644 11.896 0 .853-.1 4.417-.1 6.876 0 4.267.301 6.676.803 8.935h-6.374c-.201-.854-.352-2.058-.452-3.363-1.908 2.81-4.769 4.015-8.834 4.015m8.232-13c-7.73.803-10.842 1.707-10.842 4.718 0 1.958 1.556 3.564 4.668 3.564 4.316 0 6.174-2.36 6.174-6.274zM68.974 10.255H75.9v7.328h5.622v4.768H75.9v13.954c0 2.76.954 3.312 3.413 3.312h2.109v4.97h-5.07c-6.174 0-7.378-1.908-7.378-7.279V22.352h-3.815v-4.768h3.815zM141.091 7.218a3.815 3.815 0 1 0 0 7.63 3.815 3.815 0 0 0 0-7.63"
12
- })
13
- });
14
- //#endregion
15
- export { SvgTavilyIcon as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgTenantSetupDark: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgTenantSetupDark;
@@ -1,498 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/onboarding/TenantSetupDark.tsx
3
- var SvgTenantSetupDark = (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: "#141414",
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: "#777",
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.959-45.04 288.818M24.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.182 101.326l115.245 75.632M330.005 288.818l-72.578-111.86M142.182 101.326l193.831 190.367M264.134 393.599l71.878-101.906M26.457 176.958l309.555 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.457 180.091l130.048 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: "#1B1B1B",
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: "#F3A8EF",
45
- strokeWidth: .696,
46
- rx: 5.221
47
- }),
48
- /* @__PURE__ */ jsx("path", {
49
- stroke: "#F3A8EF",
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.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-.522M307.206 288.827h-3.133a.523.523 0 0 0-.522.523v3.132c0 .289.234.522.522.522h3.133a.52.52 0 0 0 .522-.522v-3.132a.523.523 0 0 0-.522-.523M313.471 288.827h-3.132a.523.523 0 0 0-.523.523v3.132c0 .289.234.522.523.522h3.132a.52.52 0 0 0 .522-.522v-3.132a.52.52 0 0 0-.522-.523"
54
- }),
55
- /* @__PURE__ */ jsx("path", {
56
- fill: "#fff",
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: "#1B1B1B",
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: "#99CFFD",
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.716M7.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: "#fff",
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.182-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: "#1B1B1B",
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: "#99CFFD",
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: "#0F1011",
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: "#fff",
120
- d: "M262.002 393.404v-7.399h-2.278v-.931h5.573v.931h-2.29v7.399zm7.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-.919c1.433 0 1.751-.428 1.751-2.388 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.388 1.764 2.388m4.833 3.43v-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-.821h-.062v3.332zm2.621-3.43c1.421 0 1.739-.428 1.739-2.351 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.376 1.715 2.376m6.806-6.847v-1.347h1.347v1.347zm-1.74 7.644v-.87h2.119v-4.606h-1.996v-.869h2.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-.944-.441-1.152-1.433-1.152-1.47 0-1.789.429-1.789 2.413s.331 2.413 1.825 2.413c.968 0 1.225-.184 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: "#1B1B1B",
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: "#3AA175",
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.392.392 0 1 1 .002.788.392.392 0 0 1-.002-.788Z"
151
- }),
152
- /* @__PURE__ */ jsx("path", {
153
- fill: "#fff",
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.339 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.435 2.443.529 2.972.983 2.972 2.632 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: "#1B1B1B",
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.735 2.829-2.903 4.978-2.903s3.973 1.168 4.977 2.903"
179
- }),
180
- /* @__PURE__ */ jsx("path", {
181
- fill: "#fff",
182
- d: "M126.954 446.35v-7.521c.642-.055.907-.044 1.449-.044 2.478.022 3.197.53 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.748 0-1.26.409-1.537 2.245-1.537 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: "#1B1B1B",
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: "#FFF7AA",
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.993a.45.45 0 0 0 .45.449H2.16a.45.45 0 0 0 .45-.449v-8.993a.45.45 0 0 0-.45-.45M.361 362.34v1.798M-7.283 365.937h9.892"
207
- }),
208
- /* @__PURE__ */ jsx("path", {
209
- fill: "#fff",
210
- d: "M11.225 371.685v-8.153h4.496v.899h-3.513v2.566h3.057v.899h-3.057v2.89h3.753v.899zm8.748 0-2.362-6.211h1.043l1.799 5.048h.084l1.798-5.048h1.043l-2.362 6.211zm9.348-1.619h.959c-.264 1.427-.695 1.739-2.374 1.739-2.254 0-2.746-.588-2.746-3.237 0-2.638.468-3.214 2.578-3.214 2.218 0 2.698.66 2.662 3.681H26.07c.048 1.535.372 1.871 1.799 1.871.96 0 1.223-.156 1.45-.84m-3.238-1.894h3.394c-.048-1.571-.36-1.919-1.691-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.727 0 2.11.432 2.11 2.374v3.957h-.959v-3.957c0-1.187-.251-1.451-1.378-1.451-1.391 0-1.703.396-1.703 2.231v3.177zm7.094-5.384.24-.827h1.415v-1.403l.923-.396v1.799h2.218v.827h-2.23v3.454c0 .947.216 1.151 1.211 1.151.288 0 .528-.024 1.283-.108v.875c-.791.108-1.055.132-1.487.132-1.594 0-1.942-.36-1.942-2.002v-3.502z"
211
- }),
212
- /* @__PURE__ */ jsx("rect", {
213
- width: 49.069,
214
- height: 22.119,
215
- x: 132.019,
216
- y: 202.899,
217
- fill: "#1B1B1B",
218
- rx: 3.687
219
- }),
220
- /* @__PURE__ */ jsx("rect", {
221
- width: 49.069,
222
- height: 22.119,
223
- x: 132.019,
224
- y: 202.899,
225
- stroke: "#777",
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.844 1.844 0 1 0-.001-3.687 1.844 1.844 0 0 0 .001 3.687"
249
- }),
250
- /* @__PURE__ */ jsx("path", {
251
- fill: "#fff",
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.018h-3.549c.04 1.259.305 1.534 1.475 1.534.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: "#1B1B1B",
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: "#AC4757",
268
- strokeWidth: .539,
269
- rx: 4.041
270
- }),
271
- /* @__PURE__ */ jsx("path", {
272
- stroke: "#AC4757",
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: "#fff",
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.344 2.284 1.885h-.883c-.151-.873-.41-1.067-1.401-1.067-1.326 0-1.617.529-1.617 2.942 0 2.425.291 2.963 1.617 2.963 1.056 0 1.325-.183 1.465-1.012m7.054 1.724h-.808v-.905h-.054c-.313.829-.625 1.012-1.735 1.012-1.552 0-1.896-.388-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.005v-2.855h.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.476h-.851c-.065-.549-.302-.668-1.304-.668-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.743h-2.004v3.104c0 .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.147zm8.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.743h.054c.248-.668.496-.85 1.186-.85.689 0 .916.182 1.056.85h.053c.248-.668.485-.85 1.078-.85.991 0 1.25.506 1.25 2.381v3.308h-.83v-3.308c0-1.24-.14-1.584-.679-1.584-.603 0-.775.441-.775 2.036v2.856h-.841l.022-3.308c.01-1.24-.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.703h3.049c-.043-1.411-.323-1.724-1.519-1.724-1.218 0-1.498.313-1.53 1.724m6.676 3.158v-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: "#1B1B1B",
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: "#AA6D2F",
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: "#fff",
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.418a6 6 0 0 0-1.362-.129c-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-.865-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: "#777",
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: "#161616",
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: "#777",
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: "#131313",
338
- rx: 4.737
339
- }),
340
- /* @__PURE__ */ jsxs("g", {
341
- clipPath: "url(#tenant-setup-dark_svg__a)",
342
- children: [/* @__PURE__ */ jsx("mask", {
343
- id: "tenant-setup-dark_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-dark_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.077-3.73-6.598a2.5 2.5 0 0 0-.895.915l-6.891 12.198c-.213.38-.325.81-.326 1.248h7.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.598 4.381 7.763h7.447c0-.43-.108-.859-.325-1.248z"
380
- })
381
- ]
382
- })]
383
- }),
384
- /* @__PURE__ */ jsx("path", {
385
- fill: "#fff",
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: "#161616",
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: "#777",
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: "#131313",
411
- rx: 4.737
412
- }),
413
- /* @__PURE__ */ jsx("path", {
414
- fill: "#fff",
415
- d: "m513.039 264.666 10.892-.818c1.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.306c-.472-.629-.661-1.07-.661-1.605V266.02c0-.693.315-1.291 1.196-1.354"
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.336c.409.536.818.661 1.605.599l12.654-.756c1.07-.063 1.385-.566 1.385-1.416v-13.473c0-.44-.157-.566-.692-.944-.032-.031-.063-.031-.095-.063l-3.462-2.424c-.819-.629-1.165-.692-2.518-.598m-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 .503-.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-.189v-7.554l-.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: "#fff",
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("rect", {
428
- width: 96,
429
- height: 46,
430
- x: 502.909,
431
- y: 156.699,
432
- fill: "#020202",
433
- rx: 5.172
434
- }),
435
- /* @__PURE__ */ jsx("rect", {
436
- width: 93.474,
437
- height: 43.816,
438
- x: 503.909,
439
- y: 157.76,
440
- fill: "#161616",
441
- rx: 5.329
442
- }),
443
- /* @__PURE__ */ jsx("rect", {
444
- width: 93.474,
445
- height: 43.816,
446
- x: 503.909,
447
- y: 157.76,
448
- stroke: "#777",
449
- strokeWidth: 1.184,
450
- rx: 5.329
451
- }),
452
- /* @__PURE__ */ jsx("rect", {
453
- width: 33.158,
454
- height: 33.158,
455
- x: 511.607,
456
- y: 163.089,
457
- fill: "#131313",
458
- rx: 4.737
459
- }),
460
- /* @__PURE__ */ jsx("path", {
461
- fill: "#E01E5A",
462
- 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.271c0-1.141.932-2.073 2.073-2.073s2.073.932 2.073 2.073v5.192a2.08 2.08 0 0 1-2.073 2.073 2.08 2.08 0 0 1-2.073-2.073z"
463
- }),
464
- /* @__PURE__ */ jsx("path", {
465
- fill: "#36C5F0",
466
- d: "M525.582 173.946a2.08 2.08 0 0 1-2.073-2.073c0-1.141.932-2.074 2.073-2.074s2.073.933 2.073 2.074v2.073zM525.582 174.991c1.141 0 2.073.932 2.073 2.073a2.08 2.08 0 0 1-2.073 2.073h-5.191a2.08 2.08 0 0 1-2.074-2.073c0-1.141.933-2.073 2.074-2.073z"
467
- }),
468
- /* @__PURE__ */ jsx("path", {
469
- fill: "#2EB67D",
470
- 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.073h-2.073zM532.863 177.064a2.08 2.08 0 0 1-2.073 2.073 2.08 2.08 0 0 1-2.074-2.073v-5.191a2.08 2.08 0 0 1 2.074-2.074c1.141 0 2.073.933 2.073 2.074z"
471
- }),
472
- /* @__PURE__ */ jsx("path", {
473
- fill: "#ECB22E",
474
- 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.932 2.073 2.074a2.08 2.08 0 0 1-2.073 2.073z"
475
- }),
476
- /* @__PURE__ */ jsx("path", {
477
- fill: "#fff",
478
- 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"
479
- }),
480
- /* @__PURE__ */ jsx("path", {
481
- stroke: "#777",
482
- strokeDasharray: "5 5",
483
- strokeLinecap: "round",
484
- strokeLinejoin: "round",
485
- strokeWidth: 1.5,
486
- 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.535 16.048-31.496 7.23-6.411 11.79-9.673 20.47-9.673"
487
- }),
488
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
489
- id: "tenant-setup-dark_svg__a",
490
- children: /* @__PURE__ */ jsx("path", {
491
- fill: "#fff",
492
- d: "M516.093 354.301h23.684v21.316h-23.684z"
493
- })
494
- }) })
495
- ]
496
- });
497
- //#endregion
498
- export { SvgTenantSetupDark as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgTenantSetupLight: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgTenantSetupLight;