@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,150 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/projects/MappingMethodBlankDark.tsx
3
- var SvgMappingMethodBlankDark = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- viewBox: "0 0 220 80",
7
- ...props,
8
- children: [
9
- /* @__PURE__ */ jsxs("g", {
10
- clipPath: "url(#mapping-method-blank-dark_svg__a)",
11
- children: [
12
- /* @__PURE__ */ jsx("path", { d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z" }),
13
- /* @__PURE__ */ jsx("path", {
14
- fill: "#5A5A5A",
15
- fillOpacity: .2,
16
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5"
17
- }),
18
- /* @__PURE__ */ jsx("path", {
19
- stroke: "url(#mapping-method-blank-dark_svg__b)",
20
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5Z"
21
- }),
22
- /* @__PURE__ */ jsx("path", {
23
- fill: "#5A5A5A",
24
- fillOpacity: .2,
25
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5"
26
- }),
27
- /* @__PURE__ */ jsx("path", {
28
- stroke: "#2C2C2C",
29
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5Z"
30
- }),
31
- /* @__PURE__ */ jsx("path", {
32
- fill: "#868686",
33
- d: "M84 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M86.031 40a.47.47 0 0 1-.469.469H84.47v1.093a.47.47 0 0 1-.938 0V40.47h-1.094a.47.47 0 0 1 0-.938h1.094v-1.093a.469.469 0 1 1 .938 0v1.093h1.094a.47.47 0 0 1 .468.469"
34
- }),
35
- /* @__PURE__ */ jsx("path", {
36
- fill: "#0F1011",
37
- d: "M77.5 40a.375.375 0 0 1-.375.375h-3.75v3.75a.375.375 0 0 1-.75 0v-3.75h-3.75a.375.375 0 0 1 0-.75h3.75v-3.75a.375.375 0 0 1 .75 0v3.75h3.75A.375.375 0 0 1 77.5 40"
38
- }),
39
- /* @__PURE__ */ jsx("path", {
40
- stroke: "#fff",
41
- strokeOpacity: .64,
42
- strokeWidth: .75,
43
- d: "M73.148 35.14a.75.75 0 0 1 .602.735v3.375h3.375a.75.75 0 0 1 0 1.5H73.75v3.375a.75.75 0 0 1-1.5 0V40.75h-3.375a.75.75 0 0 1 0-1.5h3.375v-3.375a.75.75 0 0 1 .75-.75z"
44
- }),
45
- /* @__PURE__ */ jsx("path", {
46
- fill: "#ACACAC",
47
- d: "M34 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M36.031 40a.47.47 0 0 1-.468.469h-1.094v1.093a.47.47 0 0 1-.938 0V40.47h-1.093a.47.47 0 0 1 0-.938h1.093v-1.093a.469.469 0 1 1 .938 0v1.093h1.093a.47.47 0 0 1 .47.469",
48
- opacity: .4
49
- }),
50
- /* @__PURE__ */ jsx("path", {
51
- stroke: "#fff",
52
- strokeDasharray: "0.79 0.79",
53
- strokeOpacity: .48,
54
- strokeWidth: .397,
55
- d: "M20 39.801h53"
56
- })
57
- ]
58
- }),
59
- /* @__PURE__ */ jsx("path", {
60
- fill: "url(#mapping-method-blank-dark_svg__c)",
61
- d: "M0 0h220v28H0z",
62
- transform: "translate(0 52)"
63
- }),
64
- /* @__PURE__ */ jsx("path", {
65
- fill: "url(#mapping-method-blank-dark_svg__d)",
66
- d: "M0 0h80v28H0z",
67
- transform: "rotate(90 14 14)"
68
- }),
69
- /* @__PURE__ */ jsx("path", {
70
- fill: "url(#mapping-method-blank-dark_svg__e)",
71
- d: "M0 0h220v28H0z",
72
- transform: "matrix(1 0 0 -1 0 28)"
73
- }),
74
- /* @__PURE__ */ jsxs("defs", { children: [
75
- /* @__PURE__ */ jsxs("linearGradient", {
76
- id: "mapping-method-blank-dark_svg__b",
77
- x1: 113,
78
- x2: 113,
79
- y1: 20,
80
- y2: 60,
81
- gradientUnits: "userSpaceOnUse",
82
- children: [
83
- /* @__PURE__ */ jsx("stop", { stopColor: "#2C2C2C" }),
84
- /* @__PURE__ */ jsx("stop", {
85
- offset: .456,
86
- stopColor: "#666"
87
- }),
88
- /* @__PURE__ */ jsx("stop", {
89
- offset: 1,
90
- stopColor: "#2C2C2C"
91
- })
92
- ]
93
- }),
94
- /* @__PURE__ */ jsxs("linearGradient", {
95
- id: "mapping-method-blank-dark_svg__c",
96
- x1: 110,
97
- x2: 110,
98
- y1: 0,
99
- y2: 28,
100
- gradientUnits: "userSpaceOnUse",
101
- children: [/* @__PURE__ */ jsx("stop", {
102
- stopColor: "#161616",
103
- stopOpacity: 0
104
- }), /* @__PURE__ */ jsx("stop", {
105
- offset: 1,
106
- stopColor: "#161616"
107
- })]
108
- }),
109
- /* @__PURE__ */ jsxs("linearGradient", {
110
- id: "mapping-method-blank-dark_svg__d",
111
- x1: 40,
112
- x2: 40,
113
- y1: 0,
114
- y2: 28,
115
- gradientUnits: "userSpaceOnUse",
116
- children: [/* @__PURE__ */ jsx("stop", {
117
- stopColor: "#161616",
118
- stopOpacity: 0
119
- }), /* @__PURE__ */ jsx("stop", {
120
- offset: 1,
121
- stopColor: "#161616"
122
- })]
123
- }),
124
- /* @__PURE__ */ jsxs("linearGradient", {
125
- id: "mapping-method-blank-dark_svg__e",
126
- x1: 110,
127
- x2: 110,
128
- y1: 0,
129
- y2: 28,
130
- gradientUnits: "userSpaceOnUse",
131
- children: [/* @__PURE__ */ jsx("stop", {
132
- stopColor: "#161616",
133
- stopOpacity: 0
134
- }), /* @__PURE__ */ jsx("stop", {
135
- offset: 1,
136
- stopColor: "#161616"
137
- })]
138
- }),
139
- /* @__PURE__ */ jsx("clipPath", {
140
- id: "mapping-method-blank-dark_svg__a",
141
- children: /* @__PURE__ */ jsx("path", {
142
- fill: "#fff",
143
- d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z"
144
- })
145
- })
146
- ] })
147
- ]
148
- });
149
- //#endregion
150
- export { SvgMappingMethodBlankDark as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgMappingMethodBlankDarkHovered: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgMappingMethodBlankDarkHovered;
@@ -1,150 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/projects/MappingMethodBlankDarkHovered.tsx
3
- var SvgMappingMethodBlankDarkHovered = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- viewBox: "0 0 220 80",
7
- ...props,
8
- children: [
9
- /* @__PURE__ */ jsxs("g", {
10
- clipPath: "url(#mapping-method-blank-dark-hovered_svg__a)",
11
- children: [
12
- /* @__PURE__ */ jsx("path", { d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z" }),
13
- /* @__PURE__ */ jsx("path", {
14
- fill: "#5A5A5A",
15
- fillOpacity: .2,
16
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5"
17
- }),
18
- /* @__PURE__ */ jsx("path", {
19
- stroke: "url(#mapping-method-blank-dark-hovered_svg__b)",
20
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5Z"
21
- }),
22
- /* @__PURE__ */ jsx("path", {
23
- fill: "#5A5A5A",
24
- fillOpacity: .2,
25
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5"
26
- }),
27
- /* @__PURE__ */ jsx("path", {
28
- stroke: "#2C2C2C",
29
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5Z"
30
- }),
31
- /* @__PURE__ */ jsx("path", {
32
- fill: "#868686",
33
- d: "M84 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M86.031 40a.47.47 0 0 1-.469.469H84.47v1.093a.47.47 0 0 1-.938 0V40.47h-1.094a.47.47 0 0 1 0-.938h1.094v-1.093a.469.469 0 1 1 .938 0v1.093h1.094a.47.47 0 0 1 .468.469"
34
- }),
35
- /* @__PURE__ */ jsx("path", {
36
- fill: "#0F1011",
37
- d: "M77.5 40a.375.375 0 0 1-.375.375h-3.75v3.75a.375.375 0 0 1-.75 0v-3.75h-3.75a.375.375 0 0 1 0-.75h3.75v-3.75a.375.375 0 0 1 .75 0v3.75h3.75A.375.375 0 0 1 77.5 40"
38
- }),
39
- /* @__PURE__ */ jsx("path", {
40
- stroke: "#fff",
41
- strokeOpacity: .64,
42
- strokeWidth: .75,
43
- d: "M73.148 35.14a.75.75 0 0 1 .602.735v3.375h3.375a.75.75 0 0 1 0 1.5H73.75v3.375a.75.75 0 0 1-1.5 0V40.75h-3.375a.75.75 0 0 1 0-1.5h3.375v-3.375a.75.75 0 0 1 .75-.75z"
44
- }),
45
- /* @__PURE__ */ jsx("path", {
46
- fill: "#ACACAC",
47
- d: "M34 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M36.031 40a.47.47 0 0 1-.468.469h-1.094v1.093a.47.47 0 0 1-.938 0V40.47h-1.093a.47.47 0 0 1 0-.938h1.093v-1.093a.469.469 0 1 1 .938 0v1.093h1.093a.47.47 0 0 1 .47.469",
48
- opacity: .4
49
- }),
50
- /* @__PURE__ */ jsx("path", {
51
- stroke: "#fff",
52
- strokeDasharray: "0.79 0.79",
53
- strokeOpacity: .48,
54
- strokeWidth: .397,
55
- d: "M20 39.801h53"
56
- })
57
- ]
58
- }),
59
- /* @__PURE__ */ jsx("path", {
60
- fill: "url(#mapping-method-blank-dark-hovered_svg__c)",
61
- d: "M0 0h220v28H0z",
62
- transform: "translate(0 52)"
63
- }),
64
- /* @__PURE__ */ jsx("path", {
65
- fill: "url(#mapping-method-blank-dark-hovered_svg__d)",
66
- d: "M0 0h80v28H0z",
67
- transform: "rotate(90 14 14)"
68
- }),
69
- /* @__PURE__ */ jsx("path", {
70
- fill: "url(#mapping-method-blank-dark-hovered_svg__e)",
71
- d: "M0 0h220v28H0z",
72
- transform: "matrix(1 0 0 -1 0 28)"
73
- }),
74
- /* @__PURE__ */ jsxs("defs", { children: [
75
- /* @__PURE__ */ jsxs("linearGradient", {
76
- id: "mapping-method-blank-dark-hovered_svg__b",
77
- x1: 113,
78
- x2: 113,
79
- y1: 20,
80
- y2: 60,
81
- gradientUnits: "userSpaceOnUse",
82
- children: [
83
- /* @__PURE__ */ jsx("stop", { stopColor: "#2C2C2C" }),
84
- /* @__PURE__ */ jsx("stop", {
85
- offset: .456,
86
- stopColor: "#666"
87
- }),
88
- /* @__PURE__ */ jsx("stop", {
89
- offset: 1,
90
- stopColor: "#2C2C2C"
91
- })
92
- ]
93
- }),
94
- /* @__PURE__ */ jsxs("linearGradient", {
95
- id: "mapping-method-blank-dark-hovered_svg__c",
96
- x1: 110,
97
- x2: 110,
98
- y1: 0,
99
- y2: 28,
100
- gradientUnits: "userSpaceOnUse",
101
- children: [/* @__PURE__ */ jsx("stop", {
102
- stopColor: "#1B1B1B",
103
- stopOpacity: 0
104
- }), /* @__PURE__ */ jsx("stop", {
105
- offset: 1,
106
- stopColor: "#1B1B1B"
107
- })]
108
- }),
109
- /* @__PURE__ */ jsxs("linearGradient", {
110
- id: "mapping-method-blank-dark-hovered_svg__d",
111
- x1: 40,
112
- x2: 40,
113
- y1: 0,
114
- y2: 28,
115
- gradientUnits: "userSpaceOnUse",
116
- children: [/* @__PURE__ */ jsx("stop", {
117
- stopColor: "#1B1B1B",
118
- stopOpacity: 0
119
- }), /* @__PURE__ */ jsx("stop", {
120
- offset: 1,
121
- stopColor: "#1B1B1B"
122
- })]
123
- }),
124
- /* @__PURE__ */ jsxs("linearGradient", {
125
- id: "mapping-method-blank-dark-hovered_svg__e",
126
- x1: 110,
127
- x2: 110,
128
- y1: 0,
129
- y2: 28,
130
- gradientUnits: "userSpaceOnUse",
131
- children: [/* @__PURE__ */ jsx("stop", {
132
- stopColor: "#1B1B1B",
133
- stopOpacity: 0
134
- }), /* @__PURE__ */ jsx("stop", {
135
- offset: 1,
136
- stopColor: "#1B1B1B"
137
- })]
138
- }),
139
- /* @__PURE__ */ jsx("clipPath", {
140
- id: "mapping-method-blank-dark-hovered_svg__a",
141
- children: /* @__PURE__ */ jsx("path", {
142
- fill: "#fff",
143
- d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z"
144
- })
145
- })
146
- ] })
147
- ]
148
- });
149
- //#endregion
150
- export { SvgMappingMethodBlankDarkHovered as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgMappingMethodBlankLight: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgMappingMethodBlankLight;
@@ -1,150 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/projects/MappingMethodBlankLight.tsx
3
- var SvgMappingMethodBlankLight = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- viewBox: "0 0 220 80",
7
- ...props,
8
- children: [
9
- /* @__PURE__ */ jsxs("g", {
10
- clipPath: "url(#mapping-method-blank-light_svg__a)",
11
- children: [
12
- /* @__PURE__ */ jsx("path", { d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z" }),
13
- /* @__PURE__ */ jsx("path", {
14
- fill: "#5A5A5A",
15
- fillOpacity: .2,
16
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5"
17
- }),
18
- /* @__PURE__ */ jsx("path", {
19
- stroke: "url(#mapping-method-blank-light_svg__b)",
20
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5Z"
21
- }),
22
- /* @__PURE__ */ jsx("path", {
23
- fill: "#5A5A5A",
24
- fillOpacity: .2,
25
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5"
26
- }),
27
- /* @__PURE__ */ jsx("path", {
28
- stroke: "#E0E1E2",
29
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5Z"
30
- }),
31
- /* @__PURE__ */ jsx("path", {
32
- fill: "#9E9E9E",
33
- d: "M84 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M86.031 40a.47.47 0 0 1-.469.469H84.47v1.093a.47.47 0 0 1-.938 0V40.47h-1.094a.47.47 0 0 1 0-.938h1.094v-1.093a.469.469 0 1 1 .938 0v1.093h1.094a.47.47 0 0 1 .468.469"
34
- }),
35
- /* @__PURE__ */ jsx("path", {
36
- fill: "#0F1011",
37
- d: "M77.5 40a.375.375 0 0 1-.375.375h-3.75v3.75a.375.375 0 0 1-.75 0v-3.75h-3.75a.375.375 0 0 1 0-.75h3.75v-3.75a.375.375 0 0 1 .75 0v3.75h3.75A.375.375 0 0 1 77.5 40"
38
- }),
39
- /* @__PURE__ */ jsx("path", {
40
- stroke: "#fff",
41
- strokeOpacity: .64,
42
- strokeWidth: .75,
43
- d: "M73.148 35.14a.75.75 0 0 1 .602.735v3.375h3.375a.75.75 0 0 1 0 1.5H73.75v3.375a.75.75 0 0 1-1.5 0V40.75h-3.375a.75.75 0 0 1 0-1.5h3.375v-3.375a.75.75 0 0 1 .75-.75z"
44
- }),
45
- /* @__PURE__ */ jsx("path", {
46
- fill: "#3F3F3F",
47
- d: "M34 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M36.031 40a.47.47 0 0 1-.468.469h-1.094v1.093a.47.47 0 0 1-.938 0V40.47h-1.093a.47.47 0 0 1 0-.938h1.093v-1.093a.469.469 0 1 1 .938 0v1.093h1.093a.47.47 0 0 1 .47.469",
48
- opacity: .4
49
- }),
50
- /* @__PURE__ */ jsx("path", {
51
- stroke: "#000",
52
- strokeDasharray: "0.79 0.79",
53
- strokeOpacity: .48,
54
- strokeWidth: .397,
55
- d: "M20 39.801h53"
56
- })
57
- ]
58
- }),
59
- /* @__PURE__ */ jsx("path", {
60
- fill: "url(#mapping-method-blank-light_svg__c)",
61
- d: "M0 0h220v28H0z",
62
- transform: "translate(0 52)"
63
- }),
64
- /* @__PURE__ */ jsx("path", {
65
- fill: "url(#mapping-method-blank-light_svg__d)",
66
- d: "M0 0h80v28H0z",
67
- transform: "rotate(90 14 14)"
68
- }),
69
- /* @__PURE__ */ jsx("path", {
70
- fill: "url(#mapping-method-blank-light_svg__e)",
71
- d: "M0 0h220v28H0z",
72
- transform: "matrix(1 0 0 -1 0 28)"
73
- }),
74
- /* @__PURE__ */ jsxs("defs", { children: [
75
- /* @__PURE__ */ jsxs("linearGradient", {
76
- id: "mapping-method-blank-light_svg__b",
77
- x1: 113,
78
- x2: 113,
79
- y1: 20,
80
- y2: 60,
81
- gradientUnits: "userSpaceOnUse",
82
- children: [
83
- /* @__PURE__ */ jsx("stop", { stopColor: "#2C2C2C" }),
84
- /* @__PURE__ */ jsx("stop", {
85
- offset: .456,
86
- stopColor: "#666"
87
- }),
88
- /* @__PURE__ */ jsx("stop", {
89
- offset: 1,
90
- stopColor: "#2C2C2C"
91
- })
92
- ]
93
- }),
94
- /* @__PURE__ */ jsxs("linearGradient", {
95
- id: "mapping-method-blank-light_svg__c",
96
- x1: 110,
97
- x2: 110,
98
- y1: 0,
99
- y2: 28,
100
- gradientUnits: "userSpaceOnUse",
101
- children: [/* @__PURE__ */ jsx("stop", {
102
- stopColor: "#FAFAFA",
103
- stopOpacity: 0
104
- }), /* @__PURE__ */ jsx("stop", {
105
- offset: 1,
106
- stopColor: "#FAFAFA"
107
- })]
108
- }),
109
- /* @__PURE__ */ jsxs("linearGradient", {
110
- id: "mapping-method-blank-light_svg__d",
111
- x1: 40,
112
- x2: 40,
113
- y1: 0,
114
- y2: 28,
115
- gradientUnits: "userSpaceOnUse",
116
- children: [/* @__PURE__ */ jsx("stop", {
117
- stopColor: "#FAFAFA",
118
- stopOpacity: 0
119
- }), /* @__PURE__ */ jsx("stop", {
120
- offset: 1,
121
- stopColor: "#FAFAFA"
122
- })]
123
- }),
124
- /* @__PURE__ */ jsxs("linearGradient", {
125
- id: "mapping-method-blank-light_svg__e",
126
- x1: 110,
127
- x2: 110,
128
- y1: 0,
129
- y2: 28,
130
- gradientUnits: "userSpaceOnUse",
131
- children: [/* @__PURE__ */ jsx("stop", {
132
- stopColor: "#FAFAFA",
133
- stopOpacity: 0
134
- }), /* @__PURE__ */ jsx("stop", {
135
- offset: 1,
136
- stopColor: "#FAFAFA"
137
- })]
138
- }),
139
- /* @__PURE__ */ jsx("clipPath", {
140
- id: "mapping-method-blank-light_svg__a",
141
- children: /* @__PURE__ */ jsx("path", {
142
- fill: "#fff",
143
- d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z"
144
- })
145
- })
146
- ] })
147
- ]
148
- });
149
- //#endregion
150
- export { SvgMappingMethodBlankLight as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgMappingMethodBlankLightHovered: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgMappingMethodBlankLightHovered;
@@ -1,150 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- //#region src/assets/components/projects/MappingMethodBlankLightHovered.tsx
3
- var SvgMappingMethodBlankLightHovered = (props) => /* @__PURE__ */ jsxs("svg", {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- fill: "none",
6
- viewBox: "0 0 220 80",
7
- ...props,
8
- children: [
9
- /* @__PURE__ */ jsxs("g", {
10
- clipPath: "url(#mapping-method-blank-light-hovered_svg__a)",
11
- children: [
12
- /* @__PURE__ */ jsx("path", { d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z" }),
13
- /* @__PURE__ */ jsx("path", {
14
- fill: "#5A5A5A",
15
- fillOpacity: .2,
16
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5"
17
- }),
18
- /* @__PURE__ */ jsx("path", {
19
- stroke: "url(#mapping-method-blank-light-hovered_svg__b)",
20
- d: "M113 20.5c10.77 0 19.5 8.73 19.5 19.5s-8.73 19.5-19.5 19.5S93.5 50.77 93.5 40s8.73-19.5 19.5-19.5Z"
21
- }),
22
- /* @__PURE__ */ jsx("path", {
23
- fill: "#5A5A5A",
24
- fillOpacity: .2,
25
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5"
26
- }),
27
- /* @__PURE__ */ jsx("path", {
28
- stroke: "#E0E1E2",
29
- d: "M0 20.5c10.77 0 19.5 8.73 19.5 19.5S10.77 59.5 0 59.5-19.5 50.77-19.5 40-10.77 20.5 0 20.5Z"
30
- }),
31
- /* @__PURE__ */ jsx("path", {
32
- fill: "#9E9E9E",
33
- d: "M84 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M86.031 40a.47.47 0 0 1-.469.469H84.47v1.093a.47.47 0 0 1-.938 0V40.47h-1.094a.47.47 0 0 1 0-.938h1.094v-1.093a.469.469 0 1 1 .938 0v1.093h1.094a.47.47 0 0 1 .468.469"
34
- }),
35
- /* @__PURE__ */ jsx("path", {
36
- fill: "#0F1011",
37
- d: "M77.5 40a.375.375 0 0 1-.375.375h-3.75v3.75a.375.375 0 0 1-.75 0v-3.75h-3.75a.375.375 0 0 1 0-.75h3.75v-3.75a.375.375 0 0 1 .75 0v3.75h3.75A.375.375 0 0 1 77.5 40"
38
- }),
39
- /* @__PURE__ */ jsx("path", {
40
- stroke: "#fff",
41
- strokeOpacity: .64,
42
- strokeWidth: .75,
43
- d: "M73.148 35.14a.75.75 0 0 1 .602.735v3.375h3.375a.75.75 0 0 1 0 1.5H73.75v3.375a.75.75 0 0 1-1.5 0V40.75h-3.375a.75.75 0 0 1 0-1.5h3.375v-3.375a.75.75 0 0 1 .75-.75z"
44
- }),
45
- /* @__PURE__ */ jsx("path", {
46
- fill: "#3F3F3F",
47
- d: "M34 35.781a4.22 4.22 0 1 0 0 8.439 4.22 4.22 0 0 0 0-8.439m0 7.5a3.282 3.282 0 1 1 0-6.563 3.282 3.282 0 0 1 0 6.563M36.031 40a.47.47 0 0 1-.468.469h-1.094v1.093a.47.47 0 0 1-.938 0V40.47h-1.093a.47.47 0 0 1 0-.938h1.093v-1.093a.469.469 0 1 1 .938 0v1.093h1.093a.47.47 0 0 1 .47.469",
48
- opacity: .4
49
- }),
50
- /* @__PURE__ */ jsx("path", {
51
- stroke: "#000",
52
- strokeDasharray: "0.79 0.79",
53
- strokeOpacity: .48,
54
- strokeWidth: .397,
55
- d: "M20 39.801h53"
56
- })
57
- ]
58
- }),
59
- /* @__PURE__ */ jsx("path", {
60
- fill: "url(#mapping-method-blank-light-hovered_svg__c)",
61
- d: "M0 0h220v28H0z",
62
- transform: "translate(0 52)"
63
- }),
64
- /* @__PURE__ */ jsx("path", {
65
- fill: "url(#mapping-method-blank-light-hovered_svg__d)",
66
- d: "M0 0h80v28H0z",
67
- transform: "rotate(90 14 14)"
68
- }),
69
- /* @__PURE__ */ jsx("path", {
70
- fill: "url(#mapping-method-blank-light-hovered_svg__e)",
71
- d: "M0 0h220v28H0z",
72
- transform: "matrix(1 0 0 -1 0 28)"
73
- }),
74
- /* @__PURE__ */ jsxs("defs", { children: [
75
- /* @__PURE__ */ jsxs("linearGradient", {
76
- id: "mapping-method-blank-light-hovered_svg__b",
77
- x1: 113,
78
- x2: 113,
79
- y1: 20,
80
- y2: 60,
81
- gradientUnits: "userSpaceOnUse",
82
- children: [
83
- /* @__PURE__ */ jsx("stop", { stopColor: "#2C2C2C" }),
84
- /* @__PURE__ */ jsx("stop", {
85
- offset: .456,
86
- stopColor: "#666"
87
- }),
88
- /* @__PURE__ */ jsx("stop", {
89
- offset: 1,
90
- stopColor: "#2C2C2C"
91
- })
92
- ]
93
- }),
94
- /* @__PURE__ */ jsxs("linearGradient", {
95
- id: "mapping-method-blank-light-hovered_svg__c",
96
- x1: 110,
97
- x2: 110,
98
- y1: 0,
99
- y2: 28,
100
- gradientUnits: "userSpaceOnUse",
101
- children: [/* @__PURE__ */ jsx("stop", {
102
- stopColor: "#F5F5F5",
103
- stopOpacity: 0
104
- }), /* @__PURE__ */ jsx("stop", {
105
- offset: 1,
106
- stopColor: "#F5F5F5"
107
- })]
108
- }),
109
- /* @__PURE__ */ jsxs("linearGradient", {
110
- id: "mapping-method-blank-light-hovered_svg__d",
111
- x1: 40,
112
- x2: 40,
113
- y1: 0,
114
- y2: 28,
115
- gradientUnits: "userSpaceOnUse",
116
- children: [/* @__PURE__ */ jsx("stop", {
117
- stopColor: "#F5F5F5",
118
- stopOpacity: 0
119
- }), /* @__PURE__ */ jsx("stop", {
120
- offset: 1,
121
- stopColor: "#F5F5F5"
122
- })]
123
- }),
124
- /* @__PURE__ */ jsxs("linearGradient", {
125
- id: "mapping-method-blank-light-hovered_svg__e",
126
- x1: 110,
127
- x2: 110,
128
- y1: 0,
129
- y2: 28,
130
- gradientUnits: "userSpaceOnUse",
131
- children: [/* @__PURE__ */ jsx("stop", {
132
- stopColor: "#F5F5F5",
133
- stopOpacity: 0
134
- }), /* @__PURE__ */ jsx("stop", {
135
- offset: 1,
136
- stopColor: "#F5F5F5"
137
- })]
138
- }),
139
- /* @__PURE__ */ jsx("clipPath", {
140
- id: "mapping-method-blank-light-hovered_svg__a",
141
- children: /* @__PURE__ */ jsx("path", {
142
- fill: "#fff",
143
- d: "M0 8a8 8 0 0 1 8-8h204a8 8 0 0 1 8 8v64a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z"
144
- })
145
- })
146
- ] })
147
- ]
148
- });
149
- //#endregion
150
- export { SvgMappingMethodBlankLightHovered as default };
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from "react";
2
- declare const SvgMappingMethodJsonDark: (props: SVGProps<SVGSVGElement>) => import("react").JSX.Element;
3
- export default SvgMappingMethodJsonDark;