@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.
- 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 +216 -250
- package/dist/charts/ChartAxis.d.ts +47 -22
- package/dist/charts/ChartAxis.js +81 -60
- package/dist/charts/ChartEmptyState.d.ts +17 -0
- package/dist/charts/ChartEmptyState.js +29 -0
- package/dist/charts/ChartFrame.d.ts +82 -0
- package/dist/charts/ChartFrame.js +86 -0
- package/dist/charts/ChartLegend.d.ts +27 -4
- package/dist/charts/ChartLegend.js +46 -23
- package/dist/charts/ChartPrimitives.d.ts +195 -0
- package/dist/charts/ChartPrimitives.js +268 -0
- package/dist/charts/ChartTooltip.d.ts +27 -6
- package/dist/charts/ChartTooltip.js +56 -50
- package/dist/charts/LineChart.d.ts +42 -20
- package/dist/charts/LineChart.js +186 -237
- package/dist/charts/PieChart.d.ts +48 -32
- package/dist/charts/PieChart.js +159 -171
- package/dist/charts/barChartGeometry.d.ts +87 -0
- package/dist/charts/barChartGeometry.js +218 -0
- package/dist/charts/chartFormat.d.ts +19 -0
- package/dist/charts/chartFormat.js +59 -0
- package/dist/charts/chartScales.d.ts +84 -0
- package/dist/charts/chartScales.js +111 -0
- package/dist/charts/chartTheme.d.ts +18 -0
- package/dist/charts/chartTheme.js +26 -0
- package/dist/charts/constants.d.ts +225 -18
- package/dist/charts/constants.js +240 -32
- package/dist/charts/lineChartGeometry.d.ts +54 -0
- package/dist/charts/lineChartGeometry.js +143 -0
- package/dist/charts/pieChartGeometry.d.ts +48 -0
- package/dist/charts/pieChartGeometry.js +89 -0
- package/dist/charts/types.d.ts +522 -54
- package/dist/charts/types.js +136 -0
- package/dist/charts/useChartDimensions.d.ts +40 -0
- package/dist/charts/useChartDimensions.js +53 -0
- package/dist/charts/useChartFormatters.d.ts +19 -0
- package/dist/charts/useChartFormatters.js +20 -0
- package/dist/charts/useChartInteraction.d.ts +71 -0
- package/dist/charts/useChartInteraction.js +130 -0
- package/dist/charts/useChartTooltipPosition.d.ts +53 -0
- package/dist/charts/useChartTooltipPosition.js +39 -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 +5 -2
- package/dist/inputs/Input.js +20 -17
- package/dist/inputs/MultiSelectInput.js +1 -1
- package/dist/inputs/RadioInput.js +7 -2
- package/dist/styles.css +68 -75
- 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,11 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/AttioIcon.tsx
|
|
3
|
-
var SvgAttioIcon = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
xmlSpace: "preserve",
|
|
6
|
-
viewBox: "0 0 60.9 50",
|
|
7
|
-
...props,
|
|
8
|
-
children: /* @__PURE__ */ jsx("path", { d: "m60.3 34.8-5.1-8.1-.5-.7c-.8-1.2-2.1-1.9-3.5-1.9L43 24l-.5 1-9.8 15.7-.5.9 4.1 6.6c.8 1.2 2.1 1.9 3.5 1.9h11.5c1.4 0 2.8-.7 3.5-1.9l.4-.6 5.1-8.2c.8-1.5.8-3.2 0-4.6m-1.6 3.5-5.1 8.2s0 .1-.1.1c-.2.2-.4.2-.5.2s-.4 0-.6-.3l-5.1-8.2c-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3-.1-.4-.1-.8 0-1.3.1-.2.1-.4.3-.6l5.1-8.1c.1-.2.3-.3.4-.3h.2c.1 0 .4 0 .6.3l5.1 8.1c.5.8.5 1.7 0 2.5M45.2 15.1c.8-1.3.8-3.1 0-4.4l-5.1-8.1-.4-.7C38.9.7 37.6 0 36.2 0H24.7c-1.4 0-2.7.7-3.5 1.9L.6 34.9c-.4.6-.6 1.4-.6 2.1 0 .8.2 1.5.6 2.2L6.1 48c.8 1.3 2.1 2 3.6 2h11.5c1.4 0 2.8-.7 3.5-1.9l.4-.7 4.1-6.6 12.1-19.4zM44 13c0 .4-.1.8-.4 1.2L23.5 46.4c-.2.3-.5.3-.6.3s-.4 0-.6-.3l-5.1-8.2c-.5-.7-.5-1.7 0-2.4L37.4 3.6c.2-.3.5-.3.6-.3s.4 0 .6.3l5.1 8.1c.2.4.3.8.3 1.3" })
|
|
9
|
-
});
|
|
10
|
-
//#endregion
|
|
11
|
-
export { SvgAttioIcon as default };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/BigquerySourceIcon.tsx
|
|
3
|
-
var SvgBigquerySourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "-1.633 7.033 131.266 114.634",
|
|
6
|
-
...props,
|
|
7
|
-
children: [
|
|
8
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
9
|
-
id: "bigquery-source-icon_svg__a",
|
|
10
|
-
x1: 64,
|
|
11
|
-
x2: 64,
|
|
12
|
-
y1: 7.034,
|
|
13
|
-
y2: 120.789,
|
|
14
|
-
gradientUnits: "userSpaceOnUse",
|
|
15
|
-
children: [/* @__PURE__ */ jsx("stop", {
|
|
16
|
-
offset: 0,
|
|
17
|
-
stopColor: "#4387fd"
|
|
18
|
-
}), /* @__PURE__ */ jsx("stop", {
|
|
19
|
-
offset: 1,
|
|
20
|
-
stopColor: "#4683ea"
|
|
21
|
-
})]
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "url(#bigquery-source-icon_svg__a)",
|
|
25
|
-
d: "M27.79 115.217 1.54 69.749a11.5 11.5 0 0 1 0-11.499l26.25-45.467a11.5 11.5 0 0 1 9.96-5.75h52.5a11.5 11.5 0 0 1 9.959 5.75l26.25 45.467a11.5 11.5 0 0 1 0 11.5l-26.25 45.467a11.5 11.5 0 0 1-9.959 5.749h-52.5a11.5 11.5 0 0 1-9.96-5.75z"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ jsx("path", {
|
|
28
|
-
d: "M119.229 86.48 80.625 47.874 64 43.425l-14.933 5.55L43.3 64l4.637 16.729 40.938 40.938 8.687-.386z",
|
|
29
|
-
clipPath: "url(#bigquery-source-icon_svg__b)",
|
|
30
|
-
opacity: .07
|
|
31
|
-
}),
|
|
32
|
-
/* @__PURE__ */ jsxs("g", {
|
|
33
|
-
fill: "#fff",
|
|
34
|
-
children: [/* @__PURE__ */ jsx("path", { d: "M64 40.804c-12.81 0-23.195 10.385-23.195 23.196 0 12.81 10.385 23.195 23.195 23.195S87.194 76.81 87.194 64 76.809 40.804 64 40.804m0 40.795c-9.72 0-17.6-7.88-17.6-17.6S54.28 46.4 64 46.4 81.6 54.28 81.6 64 73.72 81.6 64 81.6" }), /* @__PURE__ */ jsx("path", { d: "M52.99 63.104v7.21a12.8 12.8 0 0 0 4.38 4.475V63.104zm8.685-6.078v19.411c.745.137 1.507.22 2.29.22.714 0 1.41-.075 2.093-.189V57.026zm9.091 9.074v8.562a12.8 12.8 0 0 0 4.382-4.7v-3.861zm9.925 12.187-2.403 2.405a1.09 1.09 0 0 0 0 1.537l9.115 9.112a1.09 1.09 0 0 0 1.537 0l2.403-2.402a1.09 1.09 0 0 0 0-1.536l-9.116-9.116a1.09 1.09 0 0 0-1.536 0" })]
|
|
35
|
-
})
|
|
36
|
-
]
|
|
37
|
-
});
|
|
38
|
-
//#endregion
|
|
39
|
-
export { SvgBigquerySourceIcon as default };
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/BrowserbaseSourceIcon.tsx
|
|
3
|
-
var SvgBrowserbaseSourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 200 200",
|
|
6
|
-
...props,
|
|
7
|
-
children: [
|
|
8
|
-
/* @__PURE__ */ jsxs("g", {
|
|
9
|
-
fill: "none",
|
|
10
|
-
stroke: "#f89b81",
|
|
11
|
-
strokeWidth: 2,
|
|
12
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
13
|
-
d: "M72.39 55.56a.37.37 0 0 0-.37.37v87.95a.47.47 0 0 0 .46.47q10.41.25 31.94.03 15.56-.16 21.68-14.05 1.5-3.39 1.68-7.08c.45-9.53-.24-17.2-7.63-23.97a.81.79 32.7 0 1-.2-.89q.05-.13 1.69-2.49c3.74-5.41 4.04-12.12 3.63-18.58-.86-13.62-11.18-21.93-24.76-21.8q-8.65.09-28.12.04",
|
|
14
|
-
vectorEffect: "non-scaling-stroke"
|
|
15
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
16
|
-
d: "m84.74 68.58-.08 24.64a.41.41 0 0 0 .41.41l17.18.06a10.37 10.16.2 0 0 10.4-10.12l.02-5.14a10.37 10.16.2 0 0-10.34-10.2l-17.18-.06a.41.41 0 0 0-.41.41M84.66 106.8l.08 24.6a.44.44 0 0 0 .44.44l19.4-.07a10.7 10.2-.2 0 0 10.67-10.23l-.02-5.08a10.7 10.2-.2 0 0-10.73-10.17l-19.4.07a.44.44 0 0 0-.44.44",
|
|
17
|
-
vectorEffect: "non-scaling-stroke"
|
|
18
|
-
})]
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("path", {
|
|
21
|
-
fill: "#f03603",
|
|
22
|
-
d: "M200 0v200H0V0zM72.39 55.56a.37.37 0 0 0-.37.37v87.95a.47.47 0 0 0 .46.47q10.41.25 31.94.03 15.56-.16 21.68-14.05 1.5-3.39 1.68-7.08c.45-9.53-.24-17.2-7.63-23.97a.81.79 32.7 0 1-.2-.89q.05-.13 1.69-2.49c3.74-5.41 4.04-12.12 3.63-18.58-.86-13.62-11.18-21.93-24.76-21.8q-8.65.09-28.12.04"
|
|
23
|
-
}),
|
|
24
|
-
/* @__PURE__ */ jsx("path", {
|
|
25
|
-
fill: "#fff",
|
|
26
|
-
d: "M72.39 55.56q19.47.05 28.12-.04c13.58-.13 23.9 8.18 24.76 21.8.41 6.46.11 13.17-3.63 18.58q-1.64 2.36-1.69 2.49a.81.79 32.7 0 0 .2.89c7.39 6.77 8.08 14.44 7.63 23.97q-.18 3.69-1.68 7.08-6.12 13.89-21.68 14.05-21.53.22-31.94-.03a.47.47 0 0 1-.46-.47V55.93a.37.37 0 0 1 .37-.37m12.35 13.02-.08 24.64a.41.41 0 0 0 .41.41l17.18.06a10.37 10.16.2 0 0 10.4-10.12l.02-5.14a10.37 10.16.2 0 0-10.34-10.2l-17.18-.06a.41.41 0 0 0-.41.41m-.08 38.22.08 24.6a.44.44 0 0 0 .44.44l19.4-.07a10.7 10.2-.2 0 0 10.67-10.23l-.02-5.08a10.7 10.2-.2 0 0-10.73-10.17l-19.4.07a.44.44 0 0 0-.44.44"
|
|
27
|
-
}),
|
|
28
|
-
/* @__PURE__ */ jsx("path", {
|
|
29
|
-
fill: "#f03603",
|
|
30
|
-
d: "M84.74 68.58a.41.41 0 0 1 .41-.41l17.18.06a10.37 10.16.2 0 1 10.34 10.2l-.02 5.14a10.37 10.16.2 0 1-10.4 10.12l-17.18-.06a.41.41 0 0 1-.41-.41zM84.66 106.8a.44.44 0 0 1 .44-.44l19.4-.07a10.7 10.2-.2 0 1 10.73 10.17l.02 5.08a10.7 10.2-.2 0 1-10.67 10.23l-19.4.07a.44.44 0 0 1-.44-.44z"
|
|
31
|
-
})
|
|
32
|
-
]
|
|
33
|
-
});
|
|
34
|
-
//#endregion
|
|
35
|
-
export { SvgBrowserbaseSourceIcon as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/ClickhouseLogoSourceIconDark.tsx
|
|
3
|
-
var SvgClickhouseLogoSourceIconDark = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 24 24",
|
|
6
|
-
...props,
|
|
7
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
8
|
-
fill: "#212121",
|
|
9
|
-
d: "M21.333 10H24v4h-2.667ZM16 1.335h2.667v21.33H16Zm-5.333 0h2.666v21.33h-2.666ZM0 22.665V1.335h2.667v21.33zm5.333-21.33H8v21.33H5.333Z"
|
|
10
|
-
})
|
|
11
|
-
});
|
|
12
|
-
//#endregion
|
|
13
|
-
export { SvgClickhouseLogoSourceIconDark as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/ClickhouseLogoSourceIconLight.tsx
|
|
3
|
-
var SvgClickhouseLogoSourceIconLight = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 24 24",
|
|
6
|
-
...props,
|
|
7
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
8
|
-
fill: "#FBFF46",
|
|
9
|
-
d: "M21.333 10H24v4h-2.667ZM16 1.335h2.667v21.33H16Zm-5.333 0h2.666v21.33h-2.666ZM0 22.665V1.335h2.667v21.33zm5.333-21.33H8v21.33H5.333Z"
|
|
10
|
-
})
|
|
11
|
-
});
|
|
12
|
-
//#endregion
|
|
13
|
-
export { SvgClickhouseLogoSourceIconLight as default };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/ConfluenceSourceIcon.tsx
|
|
3
|
-
var SvgConfluenceSourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 48 48",
|
|
7
|
-
...props,
|
|
8
|
-
children: [
|
|
9
|
-
/* @__PURE__ */ jsx("path", {
|
|
10
|
-
fill: "#1868DB",
|
|
11
|
-
d: "M0 12C0 5.373 5.373 0 12 0h24c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H12C5.373 48 0 42.627 0 36z"
|
|
12
|
-
}),
|
|
13
|
-
/* @__PURE__ */ jsx("g", {
|
|
14
|
-
clipPath: "url(#confluence-source-icon_svg__a)",
|
|
15
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#fff",
|
|
17
|
-
d: "M34.74 28.53c-7.407-3.581-9.57-4.116-12.692-4.116-3.661 0-6.782 1.523-9.57 5.804l-.458.7c-.374.576-.457.782-.457 1.029s.124.453.582.74l4.702 2.924c.25.164.458.247.666.247.25 0 .416-.124.666-.494l.749-1.153c1.165-1.77 2.205-2.346 3.537-2.346 1.165 0 2.538.329 4.244 1.152l4.91 2.305c.5.247 1.04.124 1.29-.453l2.33-5.104c.25-.576.083-.947-.5-1.235m-21.596-9.015c7.406 3.581 9.57 4.116 12.69 4.116 3.663 0 6.783-1.523 9.571-5.804l.458-.7c.375-.576.458-.782.458-1.029s-.125-.453-.583-.74l-4.702-2.924c-.25-.164-.458-.246-.666-.246-.25 0-.416.123-.665.493l-.75 1.153c-1.164 1.77-2.205 2.346-3.536 2.346-1.165 0-2.538-.329-4.245-1.152l-4.91-2.305c-.499-.247-1.04-.124-1.29.452l-2.33 5.105c-.25.576-.083.947.5 1.235"
|
|
18
|
-
})
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
21
|
-
id: "confluence-source-icon_svg__a",
|
|
22
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
23
|
-
fill: "#fff",
|
|
24
|
-
d: "M11.563 12.188H36.32v23.67H11.563z"
|
|
25
|
-
})
|
|
26
|
-
}) })
|
|
27
|
-
]
|
|
28
|
-
});
|
|
29
|
-
//#endregion
|
|
30
|
-
export { SvgConfluenceSourceIcon as default };
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/GithubSourceIcon.tsx
|
|
3
|
-
var SvgGithubSourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 196 190",
|
|
7
|
-
...props,
|
|
8
|
-
children: [/* @__PURE__ */ jsx("mask", {
|
|
9
|
-
id: "github-source-icon_svg__a",
|
|
10
|
-
width: 196,
|
|
11
|
-
height: 190,
|
|
12
|
-
x: 0,
|
|
13
|
-
y: 0,
|
|
14
|
-
maskUnits: "userSpaceOnUse",
|
|
15
|
-
style: { maskType: "luminance" },
|
|
16
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
17
|
-
fill: "#fff",
|
|
18
|
-
d: "M0 0h196v190H0z"
|
|
19
|
-
})
|
|
20
|
-
}), /* @__PURE__ */ jsxs("g", {
|
|
21
|
-
fill: "#161614",
|
|
22
|
-
mask: "url(#github-source-icon_svg__a)",
|
|
23
|
-
children: [/* @__PURE__ */ jsx("path", { d: "M97.621 0C43.713 0 0 43.552 0 97.279c0 42.981 27.971 79.444 66.76 92.308 4.878.9 6.67-2.111 6.67-4.68 0-2.32-.092-9.983-.133-18.112-27.159 5.885-32.89-11.477-32.89-11.477-4.44-11.245-10.839-14.234-10.839-14.234-8.856-6.038.668-5.914.668-5.914 9.803.687 14.965 10.025 14.965 10.025 8.707 14.872 22.837 10.572 28.408 8.087.876-6.288 3.406-10.579 6.197-13.008-21.682-2.46-44.476-10.802-44.476-48.076 0-10.62 3.813-19.298 10.058-26.11-1.013-2.451-4.354-12.345.946-25.744 0 0 8.198-2.615 26.853 9.971 7.786-2.156 16.138-3.236 24.434-3.273 8.296.037 16.654 1.117 24.456 3.273 18.633-12.586 26.819-9.971 26.819-9.971 5.313 13.399 1.97 23.293.957 25.743 6.259 6.813 10.046 15.49 10.046 26.111 0 37.363-22.837 45.59-44.574 47.998 3.501 3.019 6.621 8.94 6.621 18.015 0 13.015-.114 23.491-.114 26.696 0 2.588 1.757 5.622 6.706 4.667 38.767-12.878 66.703-49.329 66.703-92.295C195.241 43.552 151.534 0 97.621 0" }), /* @__PURE__ */ jsx("path", { d: "M36.562 138.576c-.215.483-.979.628-1.673.297-.708-.318-1.106-.977-.877-1.462.21-.498.975-.637 1.682-.302.71.316 1.114.982.868 1.467m4.802 4.269c-.466.43-1.376.231-1.994-.449-.638-.678-.758-1.585-.285-2.022.48-.43 1.362-.229 2.003.45.638.686.762 1.587.275 2.022zm3.294 5.463c-.598.414-1.577.026-2.18-.839-.599-.865-.599-1.902.012-2.318.607-.416 1.57-.042 2.182.816.597.88.597 1.917-.014 2.342zm5.571 6.327c-.535.587-1.674.43-2.509-.372-.853-.785-1.09-1.898-.554-2.486.541-.589 1.687-.424 2.528.372.847.783 1.106 1.904.536 2.486zm7.2 2.136c-.235.761-1.333 1.108-2.439.784-1.104-.333-1.826-1.226-1.603-1.995.23-.767 1.332-1.128 2.446-.782 1.102.332 1.825 1.218 1.596 1.993m8.195.906c.028.802-.91 1.468-2.07 1.482-1.168.025-2.112-.624-2.125-1.413 0-.81.917-1.469 2.084-1.488 1.16-.023 2.111.621 2.111 1.419m8.05-.308c.139.783-.668 1.587-1.82 1.801-1.133.206-2.182-.277-2.327-1.053-.14-.803.682-1.606 1.813-1.814 1.154-.2 2.187.27 2.334 1.066" })]
|
|
24
|
-
})]
|
|
25
|
-
});
|
|
26
|
-
//#endregion
|
|
27
|
-
export { SvgGithubSourceIcon as default };
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/GoogleDriveIcon.tsx
|
|
3
|
-
var SvgGoogleDriveIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 112 100",
|
|
7
|
-
...props,
|
|
8
|
-
children: [/* @__PURE__ */ jsxs("g", {
|
|
9
|
-
clipPath: "url(#google-drive-icon_svg__a)",
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#0066DA",
|
|
13
|
-
d: "m8.462 85.705 4.935 8.526c1.026 1.795 2.5 3.205 4.231 4.23L35.256 67.95H0c0 1.987.513 3.974 1.538 5.769z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ jsx("path", {
|
|
16
|
-
fill: "#00AC47",
|
|
17
|
-
d: "M55.962 32.051 38.332 1.538c-1.73 1.026-3.205 2.436-4.23 4.231L1.538 62.18A11.6 11.6 0 0 0 0 67.95h35.256z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ jsx("path", {
|
|
20
|
-
fill: "#EA4335",
|
|
21
|
-
d: "M94.295 98.462c1.73-1.026 3.205-2.436 4.23-4.231l2.052-3.526 9.808-16.987a11.6 11.6 0 0 0 1.538-5.77H76.664l7.503 14.744z"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "#00832D",
|
|
25
|
-
d: "M55.962 32.051 73.59 1.538C71.859.513 69.872 0 67.82 0H44.104c-2.052 0-4.039.577-5.77 1.538z"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ jsx("path", {
|
|
28
|
-
fill: "#2684FC",
|
|
29
|
-
d: "M76.667 67.949h-41.41L17.627 98.462c1.731 1.025 3.718 1.538 5.77 1.538h65.128c2.05 0 4.038-.577 5.769-1.538z"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("path", {
|
|
32
|
-
fill: "#FFBA00",
|
|
33
|
-
d: "M94.103 33.974 77.82 5.77c-1.026-1.795-2.5-3.205-4.231-4.23L55.96 32.05 76.668 67.95h35.192a11.6 11.6 0 0 0-1.538-5.77z"
|
|
34
|
-
})
|
|
35
|
-
]
|
|
36
|
-
}), /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", {
|
|
37
|
-
id: "google-drive-icon_svg__a",
|
|
38
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
39
|
-
fill: "#fff",
|
|
40
|
-
d: "M0 0h111.923v100H0z"
|
|
41
|
-
})
|
|
42
|
-
}) })]
|
|
43
|
-
});
|
|
44
|
-
//#endregion
|
|
45
|
-
export { SvgGoogleDriveIcon as default };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/HubspotSourceIcon.tsx
|
|
3
|
-
var SvgHubspotSourceIcon = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 200 210",
|
|
7
|
-
...props,
|
|
8
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "#FF7A59",
|
|
10
|
-
d: "M153.338 68.842V43.945a19.17 19.17 0 0 0 11.054-17.281v-.571c0-10.59-8.584-19.173-19.172-19.173h-.572c-10.588 0-19.172 8.584-19.172 19.173v.57a19.17 19.17 0 0 0 11.054 17.282v24.897a54.3 54.3 0 0 0-25.815 11.366L42.434 27.023c.484-1.753.743-3.56.77-5.379a21.602 21.602 0 1 0-21.63 21.56 21.37 21.37 0 0 0 10.638-2.895L99.45 92.63c-12.362 18.674-12.031 43.011.833 61.343l-20.451 20.456a17.6 17.6 0 0 0-5.11-.832c-9.794.008-17.728 7.951-17.726 17.745.003 9.793 7.942 17.731 17.735 17.734 9.794.002 17.736-7.932 17.745-17.726a17.5 17.5 0 0 0-.834-5.11l20.231-20.238c18.076 13.915 42.903 15.114 62.237 3.005 19.333-12.11 29.09-34.972 24.457-57.308-4.632-22.338-22.675-39.433-45.229-42.857m-8.386 81.884a28 28 0 0 1-20.276-7.923 27.99 27.99 0 0 1 20.276-48.034c15.062.527 27.001 12.886 27.01 27.958.006 15.07-11.921 27.442-26.982 27.984"
|
|
11
|
-
})
|
|
12
|
-
});
|
|
13
|
-
//#endregion
|
|
14
|
-
export { SvgHubspotSourceIcon as default };
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/JiraSourceIcon.tsx
|
|
3
|
-
var SvgJiraSourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 128 128",
|
|
6
|
-
...props,
|
|
7
|
-
children: [
|
|
8
|
-
/* @__PURE__ */ jsxs("defs", { children: [/* @__PURE__ */ jsxs("linearGradient", {
|
|
9
|
-
id: "jira-source-icon_svg__a",
|
|
10
|
-
x1: 22.034,
|
|
11
|
-
x2: 17.118,
|
|
12
|
-
y1: 9.773,
|
|
13
|
-
y2: 14.842,
|
|
14
|
-
gradientTransform: "scale(4)",
|
|
15
|
-
gradientUnits: "userSpaceOnUse",
|
|
16
|
-
children: [/* @__PURE__ */ jsx("stop", {
|
|
17
|
-
offset: .176,
|
|
18
|
-
stopColor: "#0052cc"
|
|
19
|
-
}), /* @__PURE__ */ jsx("stop", {
|
|
20
|
-
offset: 1,
|
|
21
|
-
stopColor: "#2684ff"
|
|
22
|
-
})]
|
|
23
|
-
}), /* @__PURE__ */ jsxs("linearGradient", {
|
|
24
|
-
id: "jira-source-icon_svg__b",
|
|
25
|
-
x1: 16.641,
|
|
26
|
-
x2: 10.957,
|
|
27
|
-
y1: 15.564,
|
|
28
|
-
y2: 21.094,
|
|
29
|
-
gradientTransform: "scale(4)",
|
|
30
|
-
gradientUnits: "userSpaceOnUse",
|
|
31
|
-
children: [/* @__PURE__ */ jsx("stop", {
|
|
32
|
-
offset: .176,
|
|
33
|
-
stopColor: "#0052cc"
|
|
34
|
-
}), /* @__PURE__ */ jsx("stop", {
|
|
35
|
-
offset: 1,
|
|
36
|
-
stopColor: "#2684ff"
|
|
37
|
-
})]
|
|
38
|
-
})] }),
|
|
39
|
-
/* @__PURE__ */ jsx("path", {
|
|
40
|
-
fill: "#2684ff",
|
|
41
|
-
d: "M108.023 16H61.805c0 11.52 9.324 20.848 20.847 20.848h8.5v8.226c0 11.52 9.328 20.848 20.848 20.848V19.977A3.98 3.98 0 0 0 108.023 16m0 0"
|
|
42
|
-
}),
|
|
43
|
-
/* @__PURE__ */ jsx("path", {
|
|
44
|
-
fill: "url(#jira-source-icon_svg__a)",
|
|
45
|
-
d: "M85.121 39.04H38.902c0 11.519 9.325 20.847 20.844 20.847h8.504v8.226c0 11.52 9.328 20.848 20.848 20.848V43.016a3.983 3.983 0 0 0-3.977-3.977zm0 0"
|
|
46
|
-
}),
|
|
47
|
-
/* @__PURE__ */ jsx("path", {
|
|
48
|
-
fill: "url(#jira-source-icon_svg__b)",
|
|
49
|
-
d: "M62.219 62.078H16c0 11.524 9.324 20.848 20.848 20.848h8.5v8.23c0 11.52 9.328 20.844 20.847 20.844V66.059a3.984 3.984 0 0 0-3.976-3.98zm0 0"
|
|
50
|
-
})
|
|
51
|
-
]
|
|
52
|
-
});
|
|
53
|
-
//#endregion
|
|
54
|
-
export { SvgJiraSourceIcon as default };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/LinearSourceIcon.tsx
|
|
3
|
-
var SvgLinearSourceIcon = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 200 200",
|
|
7
|
-
...props,
|
|
8
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "#222326",
|
|
10
|
-
d: "M2.45 123.046c-.444-1.897 1.816-3.092 3.194-1.714l73.024 73.024c1.378 1.378.183 3.638-1.714 3.193-36.851-8.645-65.858-37.652-74.503-74.503M.005 93.778A1.98 1.98 0 0 0 .583 95.3L104.7 199.417c.401.401.954.615 1.521.579 4.738-.295 9.387-.92 13.925-1.852 1.529-.314 2.06-2.192.956-3.296L5.152 78.897c-1.104-1.104-2.982-.573-3.296.956A100 100 0 0 0 .004 93.778m8.418-34.367a1.98 1.98 0 0 0 .415 2.2L138.39 191.163a1.98 1.98 0 0 0 2.2.415 100 100 0 0 0 10.371-5.368c1.104-.656 1.275-2.173.367-3.081L16.871 48.673c-.908-.908-2.425-.737-3.081.367a100 100 0 0 0-5.368 10.37m16.895-23.263a1.97 1.97 0 0 1-.088-2.708C43.559 12.919 70.223 0 99.904 0 155.185 0 200 44.815 200 100.096c0 29.681-12.919 56.345-33.44 74.675a1.97 1.97 0 0 1-2.708-.088z"
|
|
11
|
-
})
|
|
12
|
-
});
|
|
13
|
-
//#endregion
|
|
14
|
-
export { SvgLinearSourceIcon as default };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/MysqlLogoSourceIconDark.tsx
|
|
3
|
-
var SvgMysqlLogoSourceIconDark = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
...props,
|
|
8
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
9
|
-
fill: "#00546b",
|
|
10
|
-
d: "M21.896 18.308c-1.279-.032-2.27.096-3.1.447-.24.096-.624.096-.656.4.128.128.144.335.256.511.192.32.527.751.83.975.336.256.672.512 1.024.735.623.384 1.326.608 1.934.991.351.224.703.512 1.055.752.175.127.287.335.511.415v-.048c-.112-.144-.144-.351-.256-.511-.16-.16-.32-.304-.48-.464a7.6 7.6 0 0 0-1.661-1.614c-.512-.352-1.63-.831-1.839-1.423l-.031-.032c.351-.031.767-.16 1.102-.255.544-.144 1.04-.112 1.599-.256a14 14 0 0 0 .767-.224v-.144c-.288-.287-.496-.67-.8-.943a21 21 0 0 0-2.636-1.966c-.496-.32-1.135-.527-1.663-.799-.191-.096-.511-.144-.623-.303-.288-.352-.448-.815-.655-1.231a40 40 0 0 1-1.311-2.781c-.288-.623-.463-1.247-.815-1.822C12.802 6 11.012 4.354 8.262 2.74c-.591-.335-1.294-.48-2.045-.655-.4-.016-.8-.048-1.2-.064-.255-.112-.51-.416-.734-.56C3.372.887 1.023-.36.35 1.287c-.432 1.039.64 2.061 1.007 2.589.272.368.623.783.815 1.199.112.271.144.56.256.847.255.703.495 1.486.83 2.142.177.335.368.687.592.99.128.176.352.256.4.544-.224.32-.24.799-.368 1.199-.575 1.806-.352 4.043.464 5.37.255.4.863 1.279 1.678.943.719-.288.56-1.199.767-1.998.048-.192.016-.32.112-.447v.032c.224.447.447.879.655 1.326.496.783 1.359 1.598 2.078 2.142.384.287.687.783 1.167.959v-.048h-.032c-.096-.144-.24-.208-.368-.32a8 8 0 0 1-.83-.959c-.672-.895-1.264-1.886-1.791-2.909-.256-.495-.48-1.039-.687-1.534-.096-.192-.096-.48-.256-.575-.24.351-.591.655-.767 1.086-.304.688-.336 1.535-.448 2.414-.064.016-.032 0-.064.032-.511-.128-.687-.656-.879-1.103-.48-1.135-.56-2.957-.144-4.267.112-.336.592-1.391.4-1.71-.096-.304-.416-.48-.591-.72a6.4 6.4 0 0 1-.576-1.023c-.383-.895-.575-1.886-.99-2.781-.193-.416-.528-.847-.8-1.23-.304-.432-.64-.736-.879-1.247-.08-.176-.192-.464-.064-.656.032-.127.096-.175.224-.207.208-.176.799.048 1.007.143.591.24 1.087.464 1.582.8.224.16.464.463.751.543h.336c.511.112 1.087.032 1.566.176.847.271 1.615.671 2.302 1.103a14.2 14.2 0 0 1 4.987 5.466c.191.367.271.703.447 1.087.336.783.751 1.582 1.087 2.35.336.75.655 1.518 1.135 2.141.24.336 1.198.511 1.63.687.32.144.815.272 1.103.448.543.335 1.087.719 1.598 1.087.256.191 1.055.591 1.103.91"
|
|
11
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#00546b",
|
|
13
|
-
d: "M5.593 4.418a2.5 2.5 0 0 0-.655.08v.032h.032c.128.256.351.432.511.655.128.256.24.512.368.768l.032-.032c.224-.16.335-.416.335-.8-.096-.111-.112-.223-.191-.335-.096-.16-.304-.24-.432-.368"
|
|
14
|
-
})]
|
|
15
|
-
});
|
|
16
|
-
//#endregion
|
|
17
|
-
export { SvgMysqlLogoSourceIconDark as default };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/NetsuiteSourceIcon.tsx
|
|
3
|
-
var SvgNetsuiteSourceIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
fill: "none",
|
|
6
|
-
viewBox: "0 0 175 175",
|
|
7
|
-
...props,
|
|
8
|
-
children: [/* @__PURE__ */ jsx("mask", {
|
|
9
|
-
id: "netsuite-source-icon_svg__a",
|
|
10
|
-
width: 175,
|
|
11
|
-
height: 175,
|
|
12
|
-
x: 0,
|
|
13
|
-
y: 0,
|
|
14
|
-
maskUnits: "userSpaceOnUse",
|
|
15
|
-
style: { maskType: "luminance" },
|
|
16
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
17
|
-
fill: "#fff",
|
|
18
|
-
d: "M0 0h175v175H0z"
|
|
19
|
-
})
|
|
20
|
-
}), /* @__PURE__ */ jsxs("g", {
|
|
21
|
-
mask: "url(#netsuite-source-icon_svg__a)",
|
|
22
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
23
|
-
fill: "#BACCDB",
|
|
24
|
-
d: "M23.527 55.417h27.617V121.1h13.75v25.667H23.527zm127.83 60.433H123.74V50.167h-13.75V24.5h41.367z"
|
|
25
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
26
|
-
fill: "#125580",
|
|
27
|
-
d: "M17.117 18.2h87.279v75.017l-33.56-43.284h-53.72zm140.531 134.983H70.37V78.167l33.56 43.283h53.718"
|
|
28
|
-
})]
|
|
29
|
-
})]
|
|
30
|
-
});
|
|
31
|
-
//#endregion
|
|
32
|
-
export { SvgNetsuiteSourceIcon as default };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/NotionIcon.tsx
|
|
3
|
-
var SvgNotionIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
xmlSpace: "preserve",
|
|
6
|
-
viewBox: "0 0 59.9 62.6",
|
|
7
|
-
...props,
|
|
8
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
9
|
-
d: "M3.8 2.7 38.4.1c4.2-.4 5.3-.1 8 1.8l11.1 7.8c1.8 1.3 2.4 1.7 2.4 3.2v42.7c0 2.7-1 4.3-4.4 4.5l-40.2 2.4c-2.6.1-3.8-.2-5.1-1.9L2.1 50.1C.6 48.1 0 46.7 0 45V7c0-2.2 1-4.1 3.8-4.3m0 0",
|
|
10
|
-
style: { fill: "#fff" }
|
|
11
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
12
|
-
d: "M38.4.1 3.8 2.7C1 2.9 0 4.8 0 7v38c0 1.7.6 3.2 2.1 5.1l8.1 10.6c1.3 1.7 2.6 2.1 5.1 1.9l40.2-2.4c3.4-.2 4.4-1.8 4.4-4.5V12.9c0-1.4-.5-1.8-2.2-3-.1-.1-.2-.1-.3-.2L46.4 2c-2.6-2-3.7-2.2-8-1.9M16.2 12.2c-3.3.2-4 .3-5.9-1.3L5.6 7.2c-.5-.5-.3-1.1 1-1.2l33.3-2.4c2.8-.2 4.2.7 5.3 1.6l5.7 4.1c.3.1.9.8.1.8l-34.4 2.1zm-3.8 43.1V19c0-1.6.5-2.3 1.9-2.4l39.5-2.3c1.3-.1 1.9.7 1.9 2.3v36c0 1.6-.3 2.9-2.4 3l-37.8 2.2c-2.1.2-3.1-.6-3.1-2.5M49.7 21c.2 1.1 0 2.2-1.1 2.3l-1.8.4v26.8c-1.6.9-3 1.3-4.2 1.3-1.9 0-2.4-.6-3.9-2.4l-12-18.8v18.1l3.8.9s0 2.2-3 2.2l-8.4.5c-.2-.5 0-1.7.8-1.9l2.2-.6v-24l-3-.3c-.2-1.1.4-2.7 2.1-2.8l9-.6 12.4 19V24.3l-3.2-.4c-.2-1.3.7-2.3 1.9-2.4zm0 0",
|
|
13
|
-
style: {
|
|
14
|
-
fillRule: "evenodd",
|
|
15
|
-
clipRule: "evenodd"
|
|
16
|
-
}
|
|
17
|
-
})]
|
|
18
|
-
});
|
|
19
|
-
//#endregion
|
|
20
|
-
export { SvgNotionIcon as default };
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/PostgresqlIcon.tsx
|
|
3
|
-
var SvgPostgresqlIcon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 25.6 25.6",
|
|
6
|
-
...props,
|
|
7
|
-
children: [/* @__PURE__ */ jsx("style", { children: ".postgresql-icon_svg__B{stroke-linecap:round}.postgresql-icon_svg__C{stroke-linejoin:round}.postgresql-icon_svg__D{stroke-linejoin:miter}.postgresql-icon_svg__E{stroke-width:.716}" }), /* @__PURE__ */ jsxs("g", {
|
|
8
|
-
fill: "none",
|
|
9
|
-
stroke: "#fff",
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ jsx("path", {
|
|
12
|
-
fill: "#000",
|
|
13
|
-
stroke: "#000",
|
|
14
|
-
strokeWidth: 2.149,
|
|
15
|
-
d: "M18.983 18.636c.163-1.357.114-1.555 1.124-1.336l.257.023c.777.035 1.793-.125 2.4-.402 1.285-.596 2.047-1.592.78-1.33-2.89.596-3.1-.383-3.1-.383 3.053-4.53 4.33-10.28 3.227-11.687-3.004-3.84-8.205-2.024-8.292-1.976l-.028.005c-.57-.12-1.2-.19-1.93-.2-1.308-.02-2.3.343-3.054.914 0 0-9.277-3.822-8.846 4.807.092 1.836 2.63 13.9 5.66 10.25C8.29 15.987 9.36 14.86 9.36 14.86c.53.353 1.167.533 1.834.468l.052-.044a2 2 0 0 0 .021.518c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.162l-.046.183c.306.245.285 1.76.33 2.842s.116 2.093.337 2.688.48 2.13 2.53 1.7c1.713-.367 3.023-.896 3.143-5.81",
|
|
16
|
-
className: "postgresql-icon_svg__D"
|
|
17
|
-
}),
|
|
18
|
-
/* @__PURE__ */ jsx("path", {
|
|
19
|
-
fill: "#336791",
|
|
20
|
-
stroke: "none",
|
|
21
|
-
d: "M23.535 15.6c-2.89.596-3.1-.383-3.1-.383 3.053-4.53 4.33-10.28 3.228-11.687-3.004-3.84-8.205-2.023-8.292-1.976l-.028.005a10.3 10.3 0 0 0-1.929-.201c-1.308-.02-2.3.343-3.054.914 0 0-9.278-3.822-8.846 4.807.092 1.836 2.63 13.9 5.66 10.25C8.29 15.987 9.36 14.86 9.36 14.86c.53.353 1.167.533 1.834.468l.052-.044a2 2 0 0 0 .021.518c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.162l-.046.183c.306.245.52 1.593.484 2.815s-.06 2.06.18 2.716.48 2.13 2.53 1.7c1.713-.367 2.6-1.32 2.725-2.906.088-1.128.286-.962.3-1.97l.16-.478c.183-1.53.03-2.023 1.085-1.793l.257.023c.777.035 1.794-.125 2.39-.402 1.285-.596 2.047-1.592.78-1.33z"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ jsxs("g", {
|
|
24
|
-
className: "postgresql-icon_svg__E",
|
|
25
|
-
children: [/* @__PURE__ */ jsxs("g", {
|
|
26
|
-
className: "postgresql-icon_svg__B",
|
|
27
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
28
|
-
d: "M12.814 16.467c-.08 2.846.02 5.712.298 6.4s.875 2.05 2.926 1.612c1.713-.367 2.337-1.078 2.607-2.647l.633-5.017M10.356 2.2S1.072-1.596 1.504 7.033c.092 1.836 2.63 13.9 5.66 10.25C8.27 15.95 9.27 14.907 9.27 14.907m6.1-13.4c-.32.1 5.164-2.005 8.282 1.978 1.1 1.407-.175 7.157-3.228 11.687",
|
|
29
|
-
className: "postgresql-icon_svg__C"
|
|
30
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
31
|
-
strokeLinejoin: "bevel",
|
|
32
|
-
d: "M20.425 15.17s.2.98 3.1.382c1.267-.262.504.734-.78 1.33-1.054.49-3.418.615-3.457-.06-.1-1.745 1.244-1.215 1.147-1.652-.088-.394-.69-.78-1.086-1.744-.347-.84-4.76-7.29 1.224-6.333.22-.045-1.56-5.7-7.16-5.782S7.99 8.196 7.99 8.196"
|
|
33
|
-
})]
|
|
34
|
-
}), /* @__PURE__ */ jsxs("g", {
|
|
35
|
-
className: "postgresql-icon_svg__C",
|
|
36
|
-
children: [/* @__PURE__ */ jsx("path", { d: "M11.247 15.768c-.78.872-.55 1.025-2.11 1.346-1.578.325-.65.904-.046 1.056.734.184 2.432.444 3.58-1.163.35-.49-.002-1.27-.482-1.468-.232-.096-.542-.216-.94.23z" }), /* @__PURE__ */ jsx("path", {
|
|
37
|
-
d: "M11.196 15.753c-.08-.513.168-1.122.433-1.836.398-1.07 1.316-2.14.582-5.537-.547-2.53-4.22-.527-4.22-.184s.166 1.74-.06 3.365c-.297 2.122 1.35 3.916 3.246 3.733",
|
|
38
|
-
className: "postgresql-icon_svg__B"
|
|
39
|
-
})]
|
|
40
|
-
})]
|
|
41
|
-
}),
|
|
42
|
-
/* @__PURE__ */ jsxs("g", {
|
|
43
|
-
fill: "#fff",
|
|
44
|
-
className: "postgresql-icon_svg__D",
|
|
45
|
-
children: [/* @__PURE__ */ jsx("path", {
|
|
46
|
-
strokeWidth: .239,
|
|
47
|
-
d: "M10.322 8.145c-.017.117.215.43.516.472s.558-.202.575-.32-.215-.246-.516-.288-.56.02-.575.136z"
|
|
48
|
-
}), /* @__PURE__ */ jsx("path", {
|
|
49
|
-
strokeWidth: .119,
|
|
50
|
-
d: "M19.486 7.906c.016.117-.215.43-.516.472s-.56-.202-.575-.32.215-.246.516-.288.56.02.575.136z"
|
|
51
|
-
})]
|
|
52
|
-
}),
|
|
53
|
-
/* @__PURE__ */ jsx("path", {
|
|
54
|
-
d: "M20.562 7.095c.05.92-.198 1.545-.23 2.524-.046 1.422.678 3.05-.413 4.68",
|
|
55
|
-
className: "postgresql-icon_svg__B postgresql-icon_svg__C postgresql-icon_svg__E"
|
|
56
|
-
})
|
|
57
|
-
]
|
|
58
|
-
})]
|
|
59
|
-
});
|
|
60
|
-
//#endregion
|
|
61
|
-
export { SvgPostgresqlIcon as default };
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/S3Icon.tsx
|
|
3
|
-
var SvgS3Icon = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
6
|
-
fill: "#fff",
|
|
7
|
-
fillRule: "evenodd",
|
|
8
|
-
stroke: "#000",
|
|
9
|
-
strokeLinecap: "round",
|
|
10
|
-
strokeLinejoin: "round",
|
|
11
|
-
viewBox: "0 0 74.375 85",
|
|
12
|
-
...props,
|
|
13
|
-
children: [/* @__PURE__ */ jsx("use", {
|
|
14
|
-
xlinkHref: "#s3-icon_svg__a",
|
|
15
|
-
x: 2.188,
|
|
16
|
-
y: 2.5
|
|
17
|
-
}), /* @__PURE__ */ jsx("symbol", {
|
|
18
|
-
id: "s3-icon_svg__a",
|
|
19
|
-
overflow: "visible",
|
|
20
|
-
children: /* @__PURE__ */ jsxs("g", {
|
|
21
|
-
stroke: "none",
|
|
22
|
-
children: [
|
|
23
|
-
/* @__PURE__ */ jsx("path", {
|
|
24
|
-
fill: "#8c3123",
|
|
25
|
-
d: "M5.634 13.883 0 16.546v46.8l5.634 2.663 13.827-26.068z"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ jsx("path", {
|
|
28
|
-
fill: "#e05243",
|
|
29
|
-
d: "M35 59.278 5.634 66V13.883L35 20.605 48.878 40.02z"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ jsx("path", {
|
|
32
|
-
fill: "#8c3123",
|
|
33
|
-
d: "M35 59.278 64.356 66l5.077-25.395-5.077-26.722L35 20.605z"
|
|
34
|
-
}),
|
|
35
|
-
/* @__PURE__ */ jsx("path", {
|
|
36
|
-
fill: "#e05243",
|
|
37
|
-
d: "M64.356 13.883 70 16.546v46.8l-5.644 2.663z"
|
|
38
|
-
}),
|
|
39
|
-
/* @__PURE__ */ jsx("path", {
|
|
40
|
-
fill: "#8c3123",
|
|
41
|
-
d: "M22.195 48.566 35 50.117 45.153 40.02 35 29.932l-12.805 1.522z"
|
|
42
|
-
}),
|
|
43
|
-
/* @__PURE__ */ jsx("path", {
|
|
44
|
-
fill: "#5e1f18",
|
|
45
|
-
d: "M47.805 23.171 35 25.376l-12.805-2.205L35 0z"
|
|
46
|
-
}),
|
|
47
|
-
/* @__PURE__ */ jsx("path", {
|
|
48
|
-
fill: "#f2b0a9",
|
|
49
|
-
d: "M47.805 56.829 35 54.605l-12.805 2.224L35 80z"
|
|
50
|
-
}),
|
|
51
|
-
/* @__PURE__ */ jsx("path", {
|
|
52
|
-
fill: "#e05243",
|
|
53
|
-
d: "M47.805 23.171 35 20.176V0l12.805 6.049z"
|
|
54
|
-
}),
|
|
55
|
-
/* @__PURE__ */ jsx("path", {
|
|
56
|
-
fill: "#8c3123",
|
|
57
|
-
d: "M22.195 23.171 35 20.176V0L22.195 6.049z"
|
|
58
|
-
}),
|
|
59
|
-
/* @__PURE__ */ jsx("path", {
|
|
60
|
-
fill: "#e05243",
|
|
61
|
-
d: "m35 80 12.805-6.049V56.829L35 59.824z"
|
|
62
|
-
}),
|
|
63
|
-
/* @__PURE__ */ jsx("path", {
|
|
64
|
-
fill: "#8c3123",
|
|
65
|
-
d: "m35 80-12.805-6.049V56.829L35 59.824z"
|
|
66
|
-
}),
|
|
67
|
-
/* @__PURE__ */ jsx("path", {
|
|
68
|
-
fill: "#e05243",
|
|
69
|
-
d: "M47.805 48.566 35 50.117V29.932l12.805 1.522z"
|
|
70
|
-
})
|
|
71
|
-
]
|
|
72
|
-
})
|
|
73
|
-
})]
|
|
74
|
-
});
|
|
75
|
-
//#endregion
|
|
76
|
-
export { SvgS3Icon as default };
|