@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.
- package/README.md +2 -0
- package/dist/avatar/Avatar.d.ts +2 -1
- package/dist/avatar/Avatar.js +103 -14
- package/dist/buttons/Button.d.ts +6 -1
- package/dist/buttons/Button.js +8 -4
- package/dist/charts/BarChart.d.ts +30 -20
- package/dist/charts/BarChart.js +183 -253
- package/dist/charts/ChartAxis.d.ts +47 -22
- package/dist/charts/ChartAxis.js +81 -60
- package/dist/charts/ChartCategoryTargets.d.ts +27 -0
- package/dist/charts/ChartCategoryTargets.js +75 -0
- package/dist/charts/ChartEmptyState.d.ts +17 -0
- package/dist/charts/ChartEmptyState.js +29 -0
- package/dist/charts/ChartFrame.d.ts +110 -0
- package/dist/charts/ChartFrame.js +143 -0
- package/dist/charts/ChartLegend.d.ts +27 -4
- package/dist/charts/ChartLegend.js +46 -23
- package/dist/charts/ChartPrimitives.d.ts +230 -0
- package/dist/charts/ChartPrimitives.js +305 -0
- package/dist/charts/ChartTooltip.d.ts +25 -4
- package/dist/charts/ChartTooltip.js +55 -49
- package/dist/charts/LineChart.d.ts +42 -20
- package/dist/charts/LineChart.js +175 -241
- package/dist/charts/PieChart.d.ts +48 -32
- package/dist/charts/PieChart.js +180 -170
- package/dist/charts/barChartGeometry.d.ts +120 -0
- package/dist/charts/barChartGeometry.js +210 -0
- package/dist/charts/barChartLegend.d.ts +25 -0
- package/dist/charts/barChartLegend.js +23 -0
- package/dist/charts/chartFormat.d.ts +27 -0
- package/dist/charts/chartFormat.js +71 -0
- package/dist/charts/chartScales.d.ts +120 -0
- package/dist/charts/chartScales.js +165 -0
- package/dist/charts/chartTheme.d.ts +18 -0
- package/dist/charts/chartTheme.js +26 -0
- package/dist/charts/constants.d.ts +241 -18
- package/dist/charts/constants.js +261 -32
- package/dist/charts/lineChartGeometry.d.ts +92 -0
- package/dist/charts/lineChartGeometry.js +134 -0
- package/dist/charts/pieChartGeometry.d.ts +60 -0
- package/dist/charts/pieChartGeometry.js +79 -0
- package/dist/charts/types.d.ts +428 -54
- package/dist/charts/types.js +155 -0
- package/dist/charts/useCartesianChartLayout.d.ts +70 -0
- package/dist/charts/useCartesianChartLayout.js +56 -0
- package/dist/charts/useChartDimensions.d.ts +47 -0
- package/dist/charts/useChartDimensions.js +63 -0
- package/dist/charts/useChartFormatters.d.ts +19 -0
- package/dist/charts/useChartFormatters.js +20 -0
- package/dist/charts/useChartInteraction.d.ts +76 -0
- package/dist/charts/useChartInteraction.js +126 -0
- package/dist/charts/useChartTooltipPosition.d.ts +53 -0
- package/dist/charts/useChartTooltipPosition.js +39 -0
- package/dist/charts/useSeriesColorResolver.d.ts +37 -0
- package/dist/charts/useSeriesColorResolver.js +27 -0
- package/dist/hooks/useElementClientSize.d.ts +20 -0
- package/dist/hooks/useElementClientSize.js +43 -0
- package/dist/inputs/CheckboxInput.d.ts +7 -2
- package/dist/inputs/CheckboxInput.js +30 -14
- package/dist/inputs/Input.d.ts +1 -1
- package/dist/inputs/Input.js +6 -2
- package/dist/inputs/MultiSelectInput.js +1 -1
- package/dist/inputs/RadioInput.js +7 -2
- package/dist/styles.css +69 -74
- package/dist/table/InfiniteSpreadsheet.d.ts +6 -0
- package/dist/table/InfiniteSpreadsheet.js +235 -0
- package/dist/table/InfiniteTable.d.ts +7 -88
- package/dist/table/InfiniteTable.js +366 -577
- package/dist/{spreadsheet → table}/SpreadsheetCell.d.ts +6 -4
- package/dist/table/SpreadsheetCell.js +71 -0
- package/dist/{spreadsheet → table}/SpreadsheetCellEditor.js +27 -21
- package/dist/table/SpreadsheetHeaderCell.d.ts +23 -0
- package/dist/table/SpreadsheetHeaderCell.js +91 -0
- package/dist/table/SpreadsheetMenuItem.d.ts +14 -0
- package/dist/table/SpreadsheetMenuItem.js +33 -0
- package/dist/table/SpreadsheetPrimitives.d.ts +172 -0
- package/dist/table/SpreadsheetPrimitives.js +105 -0
- package/dist/table/SpreadsheetRow.d.ts +33 -0
- package/dist/table/SpreadsheetRow.js +73 -0
- package/dist/{spreadsheet → table}/SpreadsheetRowActionCell.d.ts +5 -7
- package/dist/table/SpreadsheetRowActionCell.js +51 -0
- package/dist/table/TableExpandCell.d.ts +11 -0
- package/dist/table/TableExpandCell.js +24 -0
- package/dist/table/TableExpandedRow.d.ts +16 -0
- package/dist/table/TableExpandedRow.js +77 -0
- package/dist/table/TableHeaderCellContent.d.ts +30 -0
- package/dist/table/TableHeaderCellContent.js +48 -0
- package/dist/table/TablePrimitives.d.ts +307 -0
- package/dist/table/TablePrimitives.js +298 -0
- package/dist/table/TableSelectCell.d.ts +18 -0
- package/dist/table/TableSelectCell.js +26 -0
- package/dist/table/TableStatusRow.d.ts +18 -0
- package/dist/table/TableStatusRow.js +50 -0
- package/dist/table/VirtualizedInfiniteTable.d.ts +11 -27
- package/dist/table/VirtualizedInfiniteTable.js +182 -317
- package/dist/table/types.d.ts +249 -0
- package/dist/table/types.js +51 -0
- package/dist/table/useInfiniteScrollSentinel.d.ts +24 -0
- package/dist/table/useInfiniteScrollSentinel.js +53 -0
- package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.d.ts +1 -1
- package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.js +1 -1
- package/dist/table/useTableColumnLayout.d.ts +28 -0
- package/dist/table/useTableColumnLayout.js +63 -0
- package/dist/table/useTableColumnResize.d.ts +38 -0
- package/dist/table/useTableColumnResize.js +155 -0
- package/dist/table/useTableKeyboardNavigation.d.ts +25 -0
- package/dist/table/useTableKeyboardNavigation.js +83 -0
- package/dist/table/useTableRowExpansion.d.ts +24 -0
- package/dist/table/useTableRowExpansion.js +62 -0
- package/dist/table/useTableRowSelection.d.ts +27 -0
- package/dist/table/useTableRowSelection.js +94 -0
- package/dist/table/utils.d.ts +50 -0
- package/dist/table/utils.js +78 -0
- package/dist/text/MarkdownText.js +45 -27
- package/dist/theme/variants/dark.js +1 -1
- package/dist/widget/Widget.d.ts +2 -0
- package/dist/widget/Widget.js +14 -7
- package/package.json +1 -5
- package/dist/assets/components/enrichment/PerplexityIcon.d.ts +0 -3
- package/dist/assets/components/enrichment/PerplexityIcon.js +0 -35
- package/dist/assets/components/enrichment/TavilyIcon.d.ts +0 -3
- package/dist/assets/components/enrichment/TavilyIcon.js +0 -15
- package/dist/assets/components/onboarding/TenantSetupDark.d.ts +0 -3
- package/dist/assets/components/onboarding/TenantSetupDark.js +0 -498
- package/dist/assets/components/onboarding/TenantSetupLight.d.ts +0 -3
- package/dist/assets/components/onboarding/TenantSetupLight.js +0 -482
- package/dist/assets/components/onboarding/UserSetupDark.d.ts +0 -3
- package/dist/assets/components/onboarding/UserSetupDark.js +0 -1086
- package/dist/assets/components/onboarding/UserSetupLight.d.ts +0 -3
- package/dist/assets/components/onboarding/UserSetupLight.js +0 -1024
- package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.js +0 -466
- package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.js +0 -460
- package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.js +0 -336
- package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.js +0 -336
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.js +0 -153
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.js +0 -153
- package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.js +0 -117
- package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.js +0 -117
- package/dist/assets/components/projects/MappingMethodBlankDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankDark.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankDarkHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankDarkHovered.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankLight.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankLightHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankLightHovered.js +0 -150
- package/dist/assets/components/projects/MappingMethodJsonDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonDark.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonDarkHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonDarkHovered.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonLight.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonLightHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonLightHovered.js +0 -90
- package/dist/assets/components/projects/ProjectsEmptyStateDark.d.ts +0 -3
- package/dist/assets/components/projects/ProjectsEmptyStateDark.js +0 -454
- package/dist/assets/components/projects/ProjectsEmptyStateLight.d.ts +0 -3
- package/dist/assets/components/projects/ProjectsEmptyStateLight.js +0 -456
- package/dist/assets/components/root/CreateProjectActionCardDark.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardDark.js +0 -1796
- package/dist/assets/components/root/CreateProjectActionCardDarkHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardDarkHovered.js +0 -1796
- package/dist/assets/components/root/CreateProjectActionCardLight.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardLight.js +0 -1786
- package/dist/assets/components/root/CreateProjectActionCardLightHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardLightHovered.js +0 -1786
- package/dist/assets/components/root/CreateSourceActionCardDark.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardDark.js +0 -879
- package/dist/assets/components/root/CreateSourceActionCardDarkHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardDarkHovered.js +0 -879
- package/dist/assets/components/root/CreateSourceActionCardLight.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardLight.js +0 -889
- package/dist/assets/components/root/CreateSourceActionCardLightHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardLightHovered.js +0 -889
- package/dist/assets/components/sources/AttioIcon.d.ts +0 -3
- package/dist/assets/components/sources/AttioIcon.js +0 -11
- package/dist/assets/components/sources/BigquerySourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/BigquerySourceIcon.js +0 -39
- package/dist/assets/components/sources/BrowserbaseSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/BrowserbaseSourceIcon.js +0 -35
- package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.js +0 -13
- package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.js +0 -13
- package/dist/assets/components/sources/ConfluenceSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/ConfluenceSourceIcon.js +0 -30
- package/dist/assets/components/sources/GithubSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/GithubSourceIcon.js +0 -27
- package/dist/assets/components/sources/GoogleDriveIcon.d.ts +0 -3
- package/dist/assets/components/sources/GoogleDriveIcon.js +0 -45
- package/dist/assets/components/sources/HubspotSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/HubspotSourceIcon.js +0 -14
- package/dist/assets/components/sources/JiraSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/JiraSourceIcon.js +0 -54
- package/dist/assets/components/sources/LinearSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/LinearSourceIcon.js +0 -14
- package/dist/assets/components/sources/MysqlLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/MysqlLogoSourceIconDark.js +0 -17
- package/dist/assets/components/sources/NetsuiteSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/NetsuiteSourceIcon.js +0 -32
- package/dist/assets/components/sources/NotionIcon.d.ts +0 -3
- package/dist/assets/components/sources/NotionIcon.js +0 -20
- package/dist/assets/components/sources/PostgresqlIcon.d.ts +0 -3
- package/dist/assets/components/sources/PostgresqlIcon.js +0 -61
- package/dist/assets/components/sources/S3Icon.d.ts +0 -3
- package/dist/assets/components/sources/S3Icon.js +0 -76
- package/dist/assets/components/sources/SalesforceSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/SalesforceSourceIcon.js +0 -23
- package/dist/assets/components/sources/SlackIcon.d.ts +0 -3
- package/dist/assets/components/sources/SlackIcon.js +0 -32
- package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.js +0 -14
- package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.js +0 -14
- package/dist/assets/components/sources/WikipediaSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/WikipediaSourceIcon.js +0 -1490
- package/dist/avatar/AvatarEmpty.d.ts +0 -7
- package/dist/avatar/AvatarEmpty.js +0 -99
- package/dist/avatar/types.d.ts +0 -5
- package/dist/avatar/types.js +0 -9
- package/dist/charts/utils.d.ts +0 -29
- package/dist/charts/utils.js +0 -62
- package/dist/icons/BackIcon.d.ts +0 -3
- package/dist/icons/BackIcon.js +0 -13
- package/dist/icons/CloseIcon.d.ts +0 -3
- package/dist/icons/CloseIcon.js +0 -13
- package/dist/icons/CreateIcon.d.ts +0 -3
- package/dist/icons/CreateIcon.js +0 -13
- package/dist/icons/ForwardIcon.d.ts +0 -3
- package/dist/icons/ForwardIcon.js +0 -13
- package/dist/icons/HelpIcon.d.ts +0 -3
- package/dist/icons/HelpIcon.js +0 -14
- package/dist/icons/ProjectsIcon.d.ts +0 -3
- package/dist/icons/ProjectsIcon.js +0 -12
- package/dist/icons/SearchIcon.d.ts +0 -3
- package/dist/icons/SearchIcon.js +0 -12
- package/dist/icons/SourcesIcon.d.ts +0 -3
- package/dist/icons/SourcesIcon.js +0 -12
- package/dist/icons/TextIcon.d.ts +0 -4
- package/dist/icons/TextIcon.js +0 -22
- package/dist/icons/WebScrapeIcon.d.ts +0 -4
- package/dist/icons/WebScrapeIcon.js +0 -22
- package/dist/icons/WebhookIcon.d.ts +0 -4
- package/dist/icons/WebhookIcon.js +0 -22
- package/dist/icons/sources/AttioLogomark.d.ts +0 -4
- package/dist/icons/sources/AttioLogomark.js +0 -8
- package/dist/icons/sources/BrowserbaseLogomark.d.ts +0 -4
- package/dist/icons/sources/BrowserbaseLogomark.js +0 -8
- package/dist/icons/sources/ClickhouseLogomark.d.ts +0 -4
- package/dist/icons/sources/ClickhouseLogomark.js +0 -16
- package/dist/icons/sources/ConfluenceLogomark.d.ts +0 -4
- package/dist/icons/sources/ConfluenceLogomark.js +0 -8
- package/dist/icons/sources/GithubLogomark.d.ts +0 -4
- package/dist/icons/sources/GithubLogomark.js +0 -8
- package/dist/icons/sources/GoogleBigqueryLogomark.d.ts +0 -4
- package/dist/icons/sources/GoogleBigqueryLogomark.js +0 -8
- package/dist/icons/sources/GoogleDriveLogomark.d.ts +0 -4
- package/dist/icons/sources/GoogleDriveLogomark.js +0 -8
- package/dist/icons/sources/HubspotLogomark.d.ts +0 -4
- package/dist/icons/sources/HubspotLogomark.js +0 -8
- package/dist/icons/sources/JiraLogomark.d.ts +0 -4
- package/dist/icons/sources/JiraLogomark.js +0 -8
- package/dist/icons/sources/LinearLogomark.d.ts +0 -4
- package/dist/icons/sources/LinearLogomark.js +0 -8
- package/dist/icons/sources/MySQLLogomark.d.ts +0 -4
- package/dist/icons/sources/MySQLLogomark.js +0 -8
- package/dist/icons/sources/NetsuiteLogomark.d.ts +0 -4
- package/dist/icons/sources/NetsuiteLogomark.js +0 -8
- package/dist/icons/sources/NotionLogomark.d.ts +0 -4
- package/dist/icons/sources/NotionLogomark.js +0 -8
- package/dist/icons/sources/PostgresLogomark.d.ts +0 -4
- package/dist/icons/sources/PostgresLogomark.js +0 -8
- package/dist/icons/sources/S3Logomark.d.ts +0 -4
- package/dist/icons/sources/S3Logomark.js +0 -8
- package/dist/icons/sources/SalesforceLogomark.d.ts +0 -4
- package/dist/icons/sources/SalesforceLogomark.js +0 -8
- package/dist/icons/sources/SlackLogoIconmark.d.ts +0 -4
- package/dist/icons/sources/SlackLogoIconmark.js +0 -8
- package/dist/icons/sources/SnowflakeLogomark.d.ts +0 -4
- package/dist/icons/sources/SnowflakeLogomark.js +0 -16
- package/dist/icons/sources/WikipediaLogomark.d.ts +0 -4
- package/dist/icons/sources/WikipediaLogomark.js +0 -8
- package/dist/spreadsheet/InfiniteSpreadsheet.d.ts +0 -3
- package/dist/spreadsheet/InfiniteSpreadsheet.js +0 -265
- package/dist/spreadsheet/SpreadsheetAddColumnButton.d.ts +0 -6
- package/dist/spreadsheet/SpreadsheetAddColumnButton.js +0 -32
- package/dist/spreadsheet/SpreadsheetCell.js +0 -115
- package/dist/spreadsheet/SpreadsheetHeaderCell.d.ts +0 -18
- package/dist/spreadsheet/SpreadsheetHeaderCell.js +0 -141
- package/dist/spreadsheet/SpreadsheetRow.d.ts +0 -21
- package/dist/spreadsheet/SpreadsheetRow.js +0 -68
- package/dist/spreadsheet/SpreadsheetRowActionCell.js +0 -78
- package/dist/spreadsheet/hooks/useColumnResize.d.ts +0 -6
- package/dist/spreadsheet/hooks/useColumnResize.js +0 -46
- package/dist/spreadsheet/types.d.ts +0 -92
- package/dist/spreadsheet/types.js +0 -21
- /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,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,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,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 };
|