@galaxy-io/dls 1.0.3 → 1.0.5
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 +58 -21
- package/package.json +1 -1
- package/dist/assets/components/sources/GalaxyFileUploadSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/GalaxyFileUploadSourceIcon.js +0 -16
- package/dist/assets/components/sources/GalaxyTextSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/GalaxyTextSourceIcon.js +0 -16
- package/dist/assets/components/sources/GalaxyWebhookSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/GalaxyWebhookSourceIcon.js +0 -16
- package/dist/assets/components/sources/MysqlLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/MysqlLogoSourceIconLight.js +0 -17
- package/dist/assets/components/sources/NotionLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/NotionLogoSourceIconDark.js +0 -10
- package/dist/assets/components/sources/NotionLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/NotionLogoSourceIconLight.js +0 -13
- package/dist/assets/components/sources/PostgresLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/PostgresLogoSourceIconDark.js +0 -28
- package/dist/assets/components/sources/PostgresLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/PostgresLogoSourceIconLight.js +0 -28
- package/dist/assets/components/sources/PostgresqlLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/PostgresqlLogoSourceIconDark.js +0 -10
- package/dist/assets/components/sources/PostgresqlLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/PostgresqlLogoSourceIconLight.js +0 -13
- package/dist/assets/components/sources/S3LogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/S3LogoSourceIconDark.js +0 -10
- package/dist/assets/components/sources/S3LogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/S3LogoSourceIconLight.js +0 -13
- package/dist/assets/components/sources/SlackLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/SlackLogoSourceIconDark.js +0 -15
- package/dist/assets/components/sources/SlackLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/SlackLogoSourceIconLight.js +0 -15
- package/dist/assets/components/sources/SourcesEmptyStateDark.d.ts +0 -3
- package/dist/assets/components/sources/SourcesEmptyStateDark.js +0 -432
- package/dist/assets/components/sources/SourcesEmptyStateLight.d.ts +0 -3
- package/dist/assets/components/sources/SourcesEmptyStateLight.js +0 -434
package/README.md
CHANGED
|
@@ -1,42 +1,79 @@
|
|
|
1
1
|
# @galaxy-io/dls
|
|
2
2
|
|
|
3
|
-
Galaxy Design Language System
|
|
3
|
+
Galaxy Design Language System — a React component library with precompiled styles. Zero bundler configuration required.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
Add to your project's `.npmrc` (token needs `read:packages`):
|
|
8
|
-
|
|
9
|
-
```ini
|
|
10
|
-
@galaxy-io:registry=https://npm.pkg.github.com
|
|
11
|
-
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
|
|
12
|
-
```
|
|
5
|
+
## Installation
|
|
13
6
|
|
|
14
7
|
```bash
|
|
8
|
+
npm install @galaxy-io/dls
|
|
9
|
+
# or
|
|
15
10
|
pnpm add @galaxy-io/dls
|
|
16
11
|
```
|
|
17
12
|
|
|
18
|
-
|
|
13
|
+
**Peer dependencies:** `react` (18 or 19), `react-dom`, `@tanstack/react-query`
|
|
14
|
+
|
|
15
|
+
## Quick Start
|
|
19
16
|
|
|
20
17
|
```tsx
|
|
18
|
+
// 1. Import the stylesheet once at your app root
|
|
21
19
|
import "@galaxy-io/dls/styles.css";
|
|
22
20
|
|
|
21
|
+
// 2. Wrap your app in the theme provider
|
|
23
22
|
import { GalaxyThemeProvider } from "@galaxy-io/dls/theme/GalaxyTheme";
|
|
24
|
-
|
|
23
|
+
|
|
24
|
+
// 3. Import components by subpath
|
|
25
|
+
import Button, { ButtonVariant, ButtonSize } from "@galaxy-io/dls/buttons/Button";
|
|
26
|
+
import Text, { TextVariant, TextSize } from "@galaxy-io/dls/text/Text";
|
|
27
|
+
|
|
28
|
+
function App() {
|
|
29
|
+
return (
|
|
30
|
+
<GalaxyThemeProvider>
|
|
31
|
+
<Text variant={TextVariant.PRIMARY} size={TextSize.BODY_MD}>
|
|
32
|
+
Hello, Galaxy
|
|
33
|
+
</Text>
|
|
34
|
+
<Button
|
|
35
|
+
label="Get Started"
|
|
36
|
+
variant={ButtonVariant.PRIMARY}
|
|
37
|
+
size={ButtonSize.MEDIUM}
|
|
38
|
+
onClick={() => {}}
|
|
39
|
+
/>
|
|
40
|
+
</GalaxyThemeProvider>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
25
43
|
```
|
|
26
44
|
|
|
27
|
-
|
|
45
|
+
## Theming
|
|
28
46
|
|
|
29
|
-
|
|
47
|
+
The provider respects system preferences by default:
|
|
30
48
|
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
49
|
+
```tsx
|
|
50
|
+
import { GalaxyThemeProvider } from "@galaxy-io/dls/theme/GalaxyTheme";
|
|
51
|
+
import { GalaxyTheme } from "@galaxy-io/dls/theme/constants";
|
|
52
|
+
|
|
53
|
+
// System preference (default)
|
|
54
|
+
<GalaxyThemeProvider />
|
|
55
|
+
|
|
56
|
+
// Force a specific theme
|
|
57
|
+
<GalaxyThemeProvider initialTheme={GalaxyTheme.DARK} />
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Access theme state in components:
|
|
61
|
+
|
|
62
|
+
```tsx
|
|
63
|
+
import { useGalaxyTheme } from "@galaxy-io/dls/theme/GalaxyTheme";
|
|
64
|
+
|
|
65
|
+
function ThemeSwitcher() {
|
|
66
|
+
const { galaxyTheme, selectedTheme, setTheme } = useGalaxyTheme();
|
|
67
|
+
}
|
|
36
68
|
```
|
|
37
69
|
|
|
38
|
-
##
|
|
70
|
+
## Components
|
|
71
|
+
|
|
72
|
+
Import from subpaths — there is no barrel export:
|
|
39
73
|
|
|
40
|
-
|
|
74
|
+
```tsx
|
|
75
|
+
import Button from "@galaxy-io/dls/buttons/Button";
|
|
76
|
+
import Text from "@galaxy-io/dls/text/Text";
|
|
77
|
+
```
|
|
41
78
|
|
|
42
|
-
|
|
79
|
+
To explore all available components, visit [Storybook](https://storybook.getgalaxy.io).
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/GalaxyFileUploadSourceIcon.tsx
|
|
3
|
-
var SvgGalaxyFileUploadSourceIcon = (props) => /* @__PURE__ */ jsx("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: "#000",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M8 10a4 4 0 1 1 8 0v1h1a3.5 3.5 0 1 1 0 7h-1a1 1 0 1 0 0 2h1a5.5 5.5 0 0 0 .93-10.922 6.001 6.001 0 0 0-11.86 0A5.502 5.502 0 0 0 7 20h1a1 1 0 1 0 0-2H7a3.5 3.5 0 1 1 0-7h1zm7.707 3.293-3-3a1 1 0 0 0-1.414 0l-3 3a1 1 0 1 0 1.414 1.414L11 13.414V19a1 1 0 1 0 2 0v-5.586l1.293 1.293a1 1 0 0 0 1.414-1.414",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
//#endregion
|
|
16
|
-
export { SvgGalaxyFileUploadSourceIcon as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/GalaxyTextSourceIcon.tsx
|
|
3
|
-
var SvgGalaxyTextSourceIcon = (props) => /* @__PURE__ */ jsx("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: "#000",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M10 1a1 1 0 0 0-.707.293l-6 6A1 1 0 0 0 3 8v12a3 3 0 0 0 3 3h1a1 1 0 1 0 0-2H6a1 1 0 0 1-1-1V9h5a1 1 0 0 0 1-1V3h7a1 1 0 0 1 1 1v3a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3zM9 7H6.414L9 4.414zm13.121 3.707a3 3 0 0 0-4.242 0l-1.68 1.68-4.906 4.906a1 1 0 0 0-.263.465l-1 4a1 1 0 0 0 1.213 1.212l4-1a1 1 0 0 0 .464-.263l4.849-4.848 1.737-1.738a3 3 0 0 0 0-4.242zm-3.814 2.4.986-.986a1 1 0 0 1 1.414 0l.172.172a1 1 0 0 1 0 1.414l-1.017 1.017zm-1.415 1.415 1.556 1.616-3.96 3.959-2.114.529.529-2.115z",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
//#endregion
|
|
16
|
-
export { SvgGalaxyTextSourceIcon as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/GalaxyWebhookSourceIcon.tsx
|
|
3
|
-
var SvgGalaxyWebhookSourceIcon = (props) => /* @__PURE__ */ jsx("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: "#000",
|
|
10
|
-
fillRule: "evenodd",
|
|
11
|
-
d: "M12.52 3.046a3 3 0 0 0-2.13 5.486 1 1 0 0 1 .306 1.38l-3.922 6.163a2 2 0 1 1-1.688-1.073l3.44-5.405a5 5 0 1 1 8.398-2.728 1 1 0 1 1-1.97-.348 3 3 0 0 0-2.433-3.475zM10 6a2 2 0 1 1 3.774.925l3.44 5.405a5 5 0 1 1-1.427 8.5 1 1 0 0 1 1.285-1.532 3 3 0 1 0 .317-4.83 1 1 0 0 1-1.38-.307l-3.923-6.163A2 2 0 0 1 10 6m-5.428 6.9a1 1 0 0 1-.598 1.281A3 3 0 1 0 8.001 17a1 1 0 0 1 1-1h8.266a2 2 0 1 1 0 2H9.9a5 5 0 1 1-6.61-5.698 1 1 0 0 1 1.282.597Z",
|
|
12
|
-
clipRule: "evenodd"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
//#endregion
|
|
16
|
-
export { SvgGalaxyWebhookSourceIcon as default };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/MysqlLogoSourceIconLight.tsx
|
|
3
|
-
var SvgMysqlLogoSourceIconLight = (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 { SvgMysqlLogoSourceIconLight as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/NotionLogoSourceIconDark.tsx
|
|
3
|
-
var SvgNotionLogoSourceIconDark = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 32 32",
|
|
6
|
-
...props,
|
|
7
|
-
children: /* @__PURE__ */ jsx("path", { d: "M5.948 5.609c.99.807 1.365.75 3.234.625l17.62-1.057c.375 0 .063-.375-.063-.438l-2.927-2.115c-.557-.438-1.307-.932-2.74-.813L4.015 3.061c-.625.057-.75.37-.5.62zm1.057 4.11v18.536c0 .995.495 1.37 1.615 1.307l19.365-1.12c1.12-.063 1.25-.745 1.25-1.557V8.474c0-.813-.313-1.245-1-1.182L8.001 8.474c-.75.063-.995.432-.995 1.24zm19.115.989c.125.563 0 1.12-.563 1.188l-.932.188v13.682c-.813.438-1.557.688-2.177.688-1 0-1.25-.313-1.995-1.245l-6.104-9.583v9.271l1.932.438s0 1.12-1.557 1.12l-4.297.25c-.125-.25 0-.875.438-.995l1.12-.313V13.142l-1.557-.125c-.125-.563.188-1.37 1.057-1.432l4.609-.313 6.354 9.708v-8.589l-1.62-.188c-.125-.682.37-1.182.995-1.24zM2.583 1.38 20.328.073c2.177-.188 2.74-.063 4.109.932l5.667 3.984c.932.682 1.245.87 1.245 1.615v21.839c0 1.37-.5 2.177-2.24 2.302L8.494 31.99c-1.302.063-1.927-.125-2.615-.995l-4.172-5.417C.962 24.583.65 23.838.65 22.969V3.558c0-1.12.5-2.052 1.932-2.177z" })
|
|
8
|
-
});
|
|
9
|
-
//#endregion
|
|
10
|
-
export { SvgNotionLogoSourceIconDark as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/NotionLogoSourceIconLight.tsx
|
|
3
|
-
var SvgNotionLogoSourceIconLight = (props) => /* @__PURE__ */ jsx("svg", {
|
|
4
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
-
viewBox: "0 0 32 32",
|
|
6
|
-
...props,
|
|
7
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
8
|
-
fill: "#fff",
|
|
9
|
-
d: "M5.948 5.609c.99.807 1.365.75 3.234.625l17.62-1.057c.375 0 .063-.375-.063-.438l-2.927-2.115c-.557-.438-1.307-.932-2.74-.813L4.015 3.061c-.625.057-.75.37-.5.62zm1.057 4.11v18.536c0 .995.495 1.37 1.615 1.307l19.365-1.12c1.12-.063 1.25-.745 1.25-1.557V8.474c0-.813-.313-1.245-1-1.182L8.001 8.474c-.75.063-.995.432-.995 1.24zm19.115.989c.125.563 0 1.12-.563 1.188l-.932.188v13.682c-.813.438-1.557.688-2.177.688-1 0-1.25-.313-1.995-1.245l-6.104-9.583v9.271l1.932.438s0 1.12-1.557 1.12l-4.297.25c-.125-.25 0-.875.438-.995l1.12-.313V13.142l-1.557-.125c-.125-.563.188-1.37 1.057-1.432l4.609-.313 6.354 9.708v-8.589l-1.62-.188c-.125-.682.37-1.182.995-1.24zM2.583 1.38 20.328.073c2.177-.188 2.74-.063 4.109.932l5.667 3.984c.932.682 1.245.87 1.245 1.615v21.839c0 1.37-.5 2.177-2.24 2.302L8.494 31.99c-1.302.063-1.927-.125-2.615-.995l-4.172-5.417C.962 24.583.65 23.838.65 22.969V3.558c0-1.12.5-2.052 1.932-2.177z"
|
|
10
|
-
})
|
|
11
|
-
});
|
|
12
|
-
//#endregion
|
|
13
|
-
export { SvgNotionLogoSourceIconLight as default };
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/PostgresLogoSourceIconDark.tsx
|
|
3
|
-
var SvgPostgresLogoSourceIconDark = (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: [
|
|
9
|
-
/* @__PURE__ */ jsx("path", {
|
|
10
|
-
fill: "#000",
|
|
11
|
-
d: "M23.337 14.327c-.137-.415-.496-.704-.96-.773a2.2 2.2 0 0 0-.767.042 7 7 0 0 1-1.18.155c1.057-1.783 1.916-3.818 2.41-5.732.8-3.096.373-4.507-.127-5.145-1.321-1.688-3.25-2.596-5.576-2.623a9.9 9.9 0 0 0-2.898.406 11 11 0 0 0-1.695-.155c-1.119-.018-2.108.226-2.952.727A13.5 13.5 0 0 0 7.507.706C5.467.37 3.825.632 2.623 1.48 1.168 2.509.493 4.295.618 6.789c.04.793.482 3.202 1.18 5.488.4 1.313.828 2.404 1.27 3.242.628 1.189 1.299 1.888 2.052 2.14.423.14 1.19.239 1.997-.433.102.124.238.247.42.361.23.145.51.264.792.334 1.012.253 1.96.19 2.769-.165l.012.4.018.558c.048 1.194.129 2.122.37 2.771l.05.148c.12.368.32.983.83 1.465.53.499 1.17.652 1.755.652.294 0 .574-.039.82-.091.876-.188 1.872-.474 2.592-1.5.68-.969 1.012-2.429 1.072-4.73l.021-.185.015-.122.16.014.041.003c.893.04 1.985-.149 2.655-.46.53-.246 2.227-1.142 1.828-2.352"
|
|
12
|
-
}),
|
|
13
|
-
/* @__PURE__ */ jsx("path", {
|
|
14
|
-
fill: "#336791",
|
|
15
|
-
d: "M21.81 14.562c-2.654.548-2.837-.35-2.837-.35 2.803-4.16 3.974-9.438 2.963-10.73-2.758-3.524-7.532-1.857-7.612-1.814l-.026.004a9.5 9.5 0 0 0-1.77-.184c-1.202-.02-2.113.315-2.804.84 0 0-8.517-3.51-8.121 4.412.084 1.685 2.415 12.752 5.196 9.41 1.016-1.223 1.998-2.256 1.998-2.256.488.324 1.072.489 1.684.43l.047-.041c-.014.152-.008.3.02.476-.717.8-.506.94-1.938 1.236-1.45.298-.598.83-.042.969.673.168 2.232.407 3.285-1.067l-.042.168c.281.225.478 1.462.445 2.584s-.055 1.892.166 2.493c.221.602.442 1.955 2.324 1.552 1.573-.337 2.388-1.21 2.502-2.668.08-1.036.262-.882.274-1.809l.146-.438c.168-1.404.026-1.857.996-1.647l.235.021c.713.033 1.647-.115 2.195-.37 1.18-.547 1.88-1.46.716-1.22"
|
|
16
|
-
}),
|
|
17
|
-
/* @__PURE__ */ jsx("path", {
|
|
18
|
-
fill: "#fff",
|
|
19
|
-
d: "M10.223 7.494c-.24-.034-.456-.003-.566.08a.2.2 0 0 0-.086.138c-.013.099.056.208.098.264a.74.74 0 0 0 .47.293q.038.005.075.005c.29 0 .553-.225.576-.392.029-.208-.274-.347-.567-.388M18.147 7.5c-.023-.163-.314-.21-.59-.171s-.543.162-.52.326c.018.128.247.345.52.345a1 1 0 0 0 .07-.005.67.67 0 0 0 .378-.207c.096-.101.152-.214.142-.288"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("path", {
|
|
22
|
-
fill: "#fff",
|
|
23
|
-
d: "M22.693 14.5c-.1-.306-.427-.404-.968-.292-1.607.331-2.182.101-2.371-.038 1.249-1.903 2.276-4.203 2.83-6.349.263-1.016.408-1.96.42-2.73.013-.845-.13-1.465-.427-1.844C20.98 1.718 19.225.898 17.1.876c-1.461-.017-2.695.357-2.935.462a7.3 7.3 0 0 0-1.651-.212c-1.097-.018-2.045.245-2.83.78-.34-.127-1.222-.43-2.3-.603-1.862-.3-3.342-.072-4.399.676-1.26.893-1.842 2.49-1.73 4.745.038.758.47 3.093 1.153 5.328.898 2.942 1.874 4.608 2.901 4.95.12.04.26.068.412.068.375 0 .834-.169 1.312-.743a47 47 0 0 1 1.808-2.046c.404.216.848.337 1.301.35l.004.035q-.135.163-.23.283c-.314.4-.38.482-1.391.69-.288.06-1.053.218-1.064.754-.012.585.904.831 1.008.857q.547.136 1.048.136c.813 0 1.528-.267 2.099-.784-.018 2.088.07 4.144.32 4.77.205.514.707 1.768 2.29 1.768q.349.002.77-.088c1.653-.354 2.371-1.085 2.649-2.695.148-.861.403-2.917.523-4.02.253.08.58.116.932.116.734 0 1.582-.157 2.114-.403.597-.278 1.675-.958 1.48-1.55m-3.936-7.45a7 7 0 0 1-.098.929c-.051.332-.104.675-.117 1.091-.013.405.037.827.086 1.234.1.823.2 1.67-.192 2.506a3 3 0 0 1-.174-.358 7 7 0 0 0-.302-.571c-.571-1.025-1.908-3.423-1.224-4.402.204-.291.722-.59 2.02-.43m-1.575-5.515c1.904.042 3.41.754 4.477 2.117.818 1.045-.083 5.801-2.69 9.904l-.08-.1-.032-.04c.673-1.114.542-2.214.424-3.19-.048-.401-.093-.78-.082-1.135.012-.377.062-.7.11-1.012.06-.385.12-.783.103-1.253a.5.5 0 0 0 .01-.176c-.042-.45-.556-1.798-1.603-3.018a7.2 7.2 0 0 0-2.55-1.917 8.6 8.6 0 0 1 1.913-.18M6.527 15.906c-.526.633-.89.512-1.01.472-.779-.26-1.683-1.907-2.48-4.518-.69-2.26-1.093-4.532-1.125-5.17-.1-2.014.388-3.419 1.452-4.173 1.732-1.229 4.58-.494 5.724-.12q-.026.023-.05.047C7.16 4.34 7.205 7.58 7.209 7.778c0 .076.007.184.015.333.033.545.093 1.56-.068 2.708-.149 1.067.18 2.111.903 2.865q.112.117.233.22a48 48 0 0 0-1.765 2.002m2.007-2.677c-.583-.608-.847-1.453-.726-2.32.17-1.213.107-2.27.073-2.837l-.011-.204c.274-.243 1.545-.924 2.451-.716.414.095.666.376.77.86.543 2.509.073 3.554-.305 4.394a8 8 0 0 0-.215.506l-.049.131c-.123.331-.238.639-.309.93a2.34 2.34 0 0 1-1.68-.744m.095 3.383a1.5 1.5 0 0 1-.44-.189 2 2 0 0 1 .468-.139c1.19-.245 1.374-.418 1.776-.928.092-.117.196-.249.34-.41h.001c.215-.242.314-.2.492-.127.145.06.286.242.343.441.027.094.057.273-.042.412-.839 1.175-2.06 1.16-2.938.94m6.23 5.797c-1.457.312-1.973-.43-2.312-1.28-.22-.549-.327-3.022-.25-5.752a.3.3 0 0 0-.015-.105 1.4 1.4 0 0 0-.04-.193c-.115-.397-.392-.73-.724-.867-.132-.055-.375-.155-.666-.08a8 8 0 0 1 .287-.859l.049-.132c.055-.148.124-.302.197-.465.396-.879.938-2.083.35-4.802-.22-1.019-.956-1.516-2.071-1.401-.669.07-1.28.339-1.585.494a5 5 0 0 0-.182.096c.085-1.026.407-2.944 1.61-4.158.758-.764 1.767-1.141 2.996-1.121 2.422.04 3.976 1.283 4.852 2.319.756.892 1.165 1.791 1.328 2.276-1.228-.124-2.063.118-2.486.723-.92 1.316.504 3.871 1.189 5.099.125.225.234.42.268.502.223.54.511.901.722 1.164.065.081.127.16.175.228-.372.107-1.04.355-.979 1.593-.049.62-.398 3.53-.575 4.557-.235 1.357-.734 1.863-2.139 2.164m6.078-6.956c-.38.177-1.017.309-1.621.337-.668.032-1.008-.074-1.088-.14-.037-.771.25-.852.554-.937q.072-.02.14-.042.041.034.091.067c.537.354 1.494.393 2.845.114l.015-.003c-.182.17-.494.399-.936.604"
|
|
24
|
-
})
|
|
25
|
-
]
|
|
26
|
-
});
|
|
27
|
-
//#endregion
|
|
28
|
-
export { SvgPostgresLogoSourceIconDark as default };
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/PostgresLogoSourceIconLight.tsx
|
|
3
|
-
var SvgPostgresLogoSourceIconLight = (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: [
|
|
9
|
-
/* @__PURE__ */ jsx("path", {
|
|
10
|
-
fill: "#000",
|
|
11
|
-
d: "M23.337 14.327c-.137-.415-.496-.704-.96-.773a2.2 2.2 0 0 0-.767.042 7 7 0 0 1-1.18.155c1.057-1.783 1.916-3.818 2.41-5.732.8-3.096.373-4.507-.127-5.145-1.321-1.688-3.25-2.596-5.576-2.623a9.9 9.9 0 0 0-2.898.406 11 11 0 0 0-1.695-.155c-1.119-.018-2.108.226-2.952.727A13.5 13.5 0 0 0 7.507.706C5.467.37 3.825.632 2.623 1.48 1.168 2.509.493 4.295.618 6.789c.04.793.482 3.202 1.18 5.488.4 1.313.828 2.404 1.27 3.242.628 1.189 1.299 1.888 2.052 2.14.423.14 1.19.239 1.997-.433.102.124.238.247.42.361.23.145.51.264.792.334 1.012.253 1.96.19 2.769-.165l.012.4.018.558c.048 1.194.129 2.122.37 2.771l.05.148c.12.368.32.983.83 1.465.53.499 1.17.652 1.755.652.294 0 .574-.039.82-.091.876-.188 1.872-.474 2.592-1.5.68-.969 1.012-2.429 1.072-4.73l.021-.185.015-.122.16.014.041.003c.893.04 1.985-.149 2.655-.46.53-.246 2.227-1.142 1.828-2.352"
|
|
12
|
-
}),
|
|
13
|
-
/* @__PURE__ */ jsx("path", {
|
|
14
|
-
fill: "#336791",
|
|
15
|
-
d: "M21.81 14.562c-2.654.548-2.837-.35-2.837-.35 2.803-4.16 3.974-9.438 2.963-10.73-2.758-3.524-7.532-1.857-7.612-1.814l-.026.004a9.5 9.5 0 0 0-1.77-.184c-1.202-.02-2.113.315-2.804.84 0 0-8.517-3.51-8.121 4.412.084 1.685 2.415 12.752 5.196 9.41 1.016-1.223 1.998-2.256 1.998-2.256.488.324 1.072.489 1.684.43l.047-.041c-.014.152-.008.3.02.476-.717.8-.506.94-1.938 1.236-1.45.298-.598.83-.042.969.673.168 2.232.407 3.285-1.067l-.042.168c.281.225.478 1.462.445 2.584s-.055 1.892.166 2.493c.221.602.442 1.955 2.324 1.552 1.573-.337 2.388-1.21 2.502-2.668.08-1.036.262-.882.274-1.809l.146-.438c.168-1.404.026-1.857.996-1.647l.235.021c.713.033 1.647-.115 2.195-.37 1.18-.547 1.88-1.46.716-1.22"
|
|
16
|
-
}),
|
|
17
|
-
/* @__PURE__ */ jsx("path", {
|
|
18
|
-
fill: "#fff",
|
|
19
|
-
d: "M10.223 7.494c-.24-.034-.456-.003-.566.08a.2.2 0 0 0-.086.138c-.013.099.056.208.098.264a.74.74 0 0 0 .47.293q.038.005.075.005c.29 0 .553-.225.576-.392.029-.208-.274-.347-.567-.388M18.147 7.5c-.023-.163-.314-.21-.59-.171s-.543.162-.52.326c.018.128.247.345.52.345a1 1 0 0 0 .07-.005.67.67 0 0 0 .378-.207c.096-.101.152-.214.142-.288"
|
|
20
|
-
}),
|
|
21
|
-
/* @__PURE__ */ jsx("path", {
|
|
22
|
-
fill: "#fff",
|
|
23
|
-
d: "M22.693 14.5c-.1-.306-.427-.404-.968-.292-1.607.331-2.182.101-2.371-.038 1.249-1.903 2.276-4.203 2.83-6.349.263-1.016.408-1.96.42-2.73.013-.845-.13-1.465-.427-1.844C20.98 1.718 19.225.898 17.1.876c-1.461-.017-2.695.357-2.935.462a7.3 7.3 0 0 0-1.651-.212c-1.097-.018-2.045.245-2.83.78-.34-.127-1.222-.43-2.3-.603-1.862-.3-3.342-.072-4.399.676-1.26.893-1.842 2.49-1.73 4.745.038.758.47 3.093 1.153 5.328.898 2.942 1.874 4.608 2.901 4.95.12.04.26.068.412.068.375 0 .834-.169 1.312-.743a47 47 0 0 1 1.808-2.046c.404.216.848.337 1.301.35l.004.035q-.135.163-.23.283c-.314.4-.38.482-1.391.69-.288.06-1.053.218-1.064.754-.012.585.904.831 1.008.857q.547.136 1.048.136c.813 0 1.528-.267 2.099-.784-.018 2.088.07 4.144.32 4.77.205.514.707 1.768 2.29 1.768q.349.002.77-.088c1.653-.354 2.371-1.085 2.649-2.695.148-.861.403-2.917.523-4.02.253.08.58.116.932.116.734 0 1.582-.157 2.114-.403.597-.278 1.675-.958 1.48-1.55m-3.936-7.45a7 7 0 0 1-.098.929c-.051.332-.104.675-.117 1.091-.013.405.037.827.086 1.234.1.823.2 1.67-.192 2.506a3 3 0 0 1-.174-.358 7 7 0 0 0-.302-.571c-.571-1.025-1.908-3.423-1.224-4.402.204-.291.722-.59 2.02-.43m-1.575-5.515c1.904.042 3.41.754 4.477 2.117.818 1.045-.083 5.801-2.69 9.904l-.08-.1-.032-.04c.673-1.114.542-2.214.424-3.19-.048-.401-.093-.78-.082-1.135.012-.377.062-.7.11-1.012.06-.385.12-.783.103-1.253a.5.5 0 0 0 .01-.176c-.042-.45-.556-1.798-1.603-3.018a7.2 7.2 0 0 0-2.55-1.917 8.6 8.6 0 0 1 1.913-.18M6.527 15.906c-.526.633-.89.512-1.01.472-.779-.26-1.683-1.907-2.48-4.518-.69-2.26-1.093-4.532-1.125-5.17-.1-2.014.388-3.419 1.452-4.173 1.732-1.229 4.58-.494 5.724-.12q-.026.023-.05.047C7.16 4.34 7.205 7.58 7.209 7.778c0 .076.007.184.015.333.033.545.093 1.56-.068 2.708-.149 1.067.18 2.111.903 2.865q.112.117.233.22a48 48 0 0 0-1.765 2.002m2.007-2.677c-.583-.608-.847-1.453-.726-2.32.17-1.213.107-2.27.073-2.837l-.011-.204c.274-.243 1.545-.924 2.451-.716.414.095.666.376.77.86.543 2.509.073 3.554-.305 4.394a8 8 0 0 0-.215.506l-.049.131c-.123.331-.238.639-.309.93a2.34 2.34 0 0 1-1.68-.744m.095 3.383a1.5 1.5 0 0 1-.44-.189 2 2 0 0 1 .468-.139c1.19-.245 1.374-.418 1.776-.928.092-.117.196-.249.34-.41h.001c.215-.242.314-.2.492-.127.145.06.286.242.343.441.027.094.057.273-.042.412-.839 1.175-2.06 1.16-2.938.94m6.23 5.797c-1.457.312-1.973-.43-2.312-1.28-.22-.549-.327-3.022-.25-5.752a.3.3 0 0 0-.015-.105 1.4 1.4 0 0 0-.04-.193c-.115-.397-.392-.73-.724-.867-.132-.055-.375-.155-.666-.08a8 8 0 0 1 .287-.859l.049-.132c.055-.148.124-.302.197-.465.396-.879.938-2.083.35-4.802-.22-1.019-.956-1.516-2.071-1.401-.669.07-1.28.339-1.585.494a5 5 0 0 0-.182.096c.085-1.026.407-2.944 1.61-4.158.758-.764 1.767-1.141 2.996-1.121 2.422.04 3.976 1.283 4.852 2.319.756.892 1.165 1.791 1.328 2.276-1.228-.124-2.063.118-2.486.723-.92 1.316.504 3.871 1.189 5.099.125.225.234.42.268.502.223.54.511.901.722 1.164.065.081.127.16.175.228-.372.107-1.04.355-.979 1.593-.049.62-.398 3.53-.575 4.557-.235 1.357-.734 1.863-2.139 2.164m6.078-6.956c-.38.177-1.017.309-1.621.337-.668.032-1.008-.074-1.088-.14-.037-.771.25-.852.554-.937q.072-.02.14-.042.041.034.091.067c.537.354 1.494.393 2.845.114l.015-.003c-.182.17-.494.399-.936.604"
|
|
24
|
-
})
|
|
25
|
-
]
|
|
26
|
-
});
|
|
27
|
-
//#endregion
|
|
28
|
-
export { SvgPostgresLogoSourceIconLight as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/PostgresqlLogoSourceIconDark.tsx
|
|
3
|
-
var SvgPostgresqlLogoSourceIconDark = (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", { d: "M16.805 1a9.9 9.9 0 0 0-2.603.37l-.06.018a10.6 10.6 0 0 0-1.615-.151c-1.113-.019-2.07.243-2.84.68-.76-.256-2.336-.697-3.997-.609-1.157.061-2.419.402-3.354 1.36-.933.958-1.426 2.44-1.322 4.457.028.557.191 1.464.463 2.64.27 1.175.652 2.55 1.127 3.805s.996 2.384 1.81 3.15c.406.384.965.707 1.624.68.463-.018.882-.215 1.243-.506.176.225.364.323.535.414.215.114.425.192.642.244a4.6 4.6 0 0 0 1.84.091c.267-.043.548-.127.828-.247.01.302.022.598.035.898.038.95.063 1.827.357 2.596.047.126.176.773.687 1.344.51.572 1.51.928 2.648.692.803-.167 1.825-.468 2.503-1.404.67-.926.973-2.254 1.033-4.409.015-.116.033-.215.052-.308l.16.014h.018c.857.038 1.787-.08 2.564-.43.688-.31 1.208-.622 1.587-1.177.095-.137.199-.303.227-.59.028-.285-.14-.733-.421-.939-.563-.414-.916-.257-1.295-.18q-.56.12-1.136.133c1.093-1.784 1.876-3.68 2.323-5.358.264-.99.413-1.903.425-2.701s-.055-1.505-.548-2.117c-1.541-1.91-3.708-2.438-5.384-2.456q-.078-.002-.156-.001zm-.044.587c1.585-.015 3.611.417 5.065 2.22.327.405.424.997.413 1.727-.012.729-.151 1.601-.405 2.557-.493 1.852-1.425 4.01-2.738 5.948a.7.7 0 0 0 .15.079c.274.11.898.204 2.145-.044.313-.065.543-.108.781.068a.48.48 0 0 1 .173.39.64.64 0 0 1-.123.308c-.24.351-.716.684-1.326.958-.539.244-1.313.371-1.999.379-.344.003-.661-.023-.93-.104l-.018-.006c-.104.971-.343 2.89-.498 3.765-.125.706-.343 1.267-.76 1.687-.416.42-1.004.673-1.796.838-.981.204-1.696-.016-2.157-.393-.46-.375-.671-.874-.798-1.18-.087-.21-.132-.483-.176-.848a18 18 0 0 1-.097-1.315 46 46 0 0 1-.028-2.312c-.41.363-.92.605-1.467.696-.65.107-1.232.002-1.579-.082a2.2 2.2 0 0 1-.49-.185c-.162-.083-.315-.177-.417-.363a.5.5 0 0 1-.054-.35.56.56 0 0 1 .206-.303c.188-.148.435-.23.808-.306.68-.135.917-.228 1.061-.339.123-.095.262-.287.508-.57l-.003-.037a2.9 2.9 0 0 1-1.257-.328c-.141.144-.865.887-1.748 1.917-.371.431-.781.678-1.214.696s-.824-.194-1.156-.506c-.665-.626-1.195-1.703-1.657-2.92-.46-1.218-.836-2.574-1.102-3.729-.268-1.155-.426-2.086-.448-2.535-.1-1.909.36-3.195 1.15-4.006s1.872-1.118 2.928-1.177c1.894-.106 3.693.535 4.057.673.701-.462 1.604-.75 2.733-.732a7.2 7.2 0 0 1 1.588.2l.019-.008q.344-.118.698-.196a9.4 9.4 0 0 1 1.957-.23zm.143.614h-.137a8.5 8.5 0 0 0-1.61.176 7.05 7.05 0 0 1 2.692 2.062 7.7 7.7 0 0 1 1.07 1.76c.104.242.174.447.213.605.02.08.034.147.038.217a.4.4 0 0 1-.011.132l-.006.012c.029.803-.176 1.347-.201 2.113-.019.556.127 1.209.163 1.92.034.67-.049 1.405-.497 2.127q.056.066.108.132c1.185-1.81 2.04-3.814 2.495-5.521.243-.92.373-1.753.384-2.413.01-.66-.117-1.139-.279-1.338-1.268-1.573-2.983-1.974-4.422-1.985zm-4.525.235c-1.117.002-1.919.33-2.526.82-.627.507-1.047 1.2-1.323 1.911a7.9 7.9 0 0 0-.485 2.213l.013-.007c.337-.184.78-.367 1.254-.473.475-.106.986-.139 1.449.035s.846.584.985 1.206c.665 2.986-.207 4.096-.529 4.933a9 9 0 0 0-.312.929q.06-.017.121-.024a1.06 1.06 0 0 1 .51.1c.324.13.546.402.666.714q.047.124.067.26.02.057.019.117a49 49 0 0 0 .012 3.426c.022.494.054.928.095 1.271.04.342.098.602.135.69.12.294.297.678.617.939s.777.434 1.614.26c.726-.151 1.174-.36 1.474-.663.298-.301.477-.72.591-1.363.171-.963.515-3.754.556-4.28-.018-.395.042-.7.172-.932.135-.238.343-.384.522-.463.09-.04.174-.066.243-.085a6 6 0 0 0-.23-.298 4 4 0 0 1-.629-1.007 8 8 0 0 0-.243-.443c-.125-.22-.284-.495-.45-.804-.333-.619-.695-1.369-.883-2.1-.187-.729-.215-1.484.265-2.017.426-.473 1.172-.669 2.293-.559-.033-.096-.053-.176-.109-.304a7.1 7.1 0 0 0-.983-1.617c-.95-1.178-2.487-2.346-4.863-2.384h-.108zm-6.276.047q-.18 0-.36.01c-.954.053-1.856.322-2.501.986-.647.663-1.072 1.751-.98 3.553.019.34.172 1.296.434 2.43.262 1.136.634 2.471 1.08 3.65.446 1.18.988 2.207 1.502 2.693.259.243.484.341.688.333.205-.01.451-.124.753-.475a40 40 0 0 1 1.71-1.877 3.2 3.2 0 0 1-.932-1.307 3.1 3.1 0 0 1-.17-1.58c.097-.678.11-1.312.099-1.812-.012-.488-.048-.812-.048-1.015v-.028a8.8 8.8 0 0 1 .559-3.095c.264-.682.658-1.375 1.249-1.936-.58-.185-1.61-.467-2.725-.52a7 7 0 0 0-.36-.01zm11.714 4.842c-.641.008-1.001.169-1.19.379-.268.298-.293.82-.127 1.464s.507 1.365.829 1.963c.16.3.316.57.442.788.127.22.22.376.276.51q.08.181.168.331c.248-.509.293-1.008.267-1.529-.033-.644-.187-1.303-.164-1.97.025-.78.184-1.289.198-1.892a6 6 0 0 0-.699-.044m-7.78.105a2.7 2.7 0 0 0-.582.068 4.5 4.5 0 0 0-1.09.412q-.173.09-.33.209l-.02.018c.006.134.033.459.045.936.01.523-.002 1.19-.106 1.91-.226 1.568.946 2.866 2.324 2.868.08-.322.213-.648.345-.992.384-1.003 1.139-1.734.503-4.589-.104-.467-.31-.656-.594-.763a1.4 1.4 0 0 0-.495-.077m7.48.187h.048q.094.003.17.02a.4.4 0 0 1 .13.051.15.15 0 0 1 .071.1v.008a.2.2 0 0 1-.034.124.6.6 0 0 1-.104.137.65.65 0 0 1-.364.195.57.57 0 0 1-.388-.095.6.6 0 0 1-.123-.108.24.24 0 0 1-.06-.116.15.15 0 0 1 .04-.118.4.4 0 0 1 .111-.082 1.3 1.3 0 0 1 .504-.118zm-7.388.154q.075 0 .157.012c.144.02.273.057.371.112q.072.037.126.097a.2.2 0 0 1 .042.073.2.2 0 0 1 .009.083.27.27 0 0 1-.071.141.6.6 0 0 1-.135.12.62.62 0 0 1-.424.103.7.7 0 0 1-.396-.209.7.7 0 0 1-.112-.15.25.25 0 0 1-.039-.162c.014-.1.099-.15.18-.18a.8.8 0 0 1 .29-.036zm8.56 6.732h-.003c-.139.05-.253.07-.35.11a.42.42 0 0 0-.225.197c-.06.105-.11.292-.095.61a.5.5 0 0 0 .14.064c.161.048.432.08.735.075.602-.007 1.344-.143 1.738-.321.323-.146.623-.336.891-.564-1.317.264-2.06.194-2.517.011a1.3 1.3 0 0 1-.314-.183zm-7.588.086h-.02c-.05.004-.123.02-.263.172-.33.358-.444.582-.716.792-.27.21-.623.321-1.327.461-.223.044-.35.093-.436.132.028.022.025.028.066.049.103.055.236.103.342.13.303.073.8.159 1.319.073s1.058-.327 1.518-.953c.08-.108.088-.268.023-.44-.067-.17-.211-.318-.313-.36a.6.6 0 0 0-.193-.054z" })
|
|
8
|
-
});
|
|
9
|
-
//#endregion
|
|
10
|
-
export { SvgPostgresqlLogoSourceIconDark as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/PostgresqlLogoSourceIconLight.tsx
|
|
3
|
-
var SvgPostgresqlLogoSourceIconLight = (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: "#fff",
|
|
9
|
-
d: "M16.805 1a9.9 9.9 0 0 0-2.603.37l-.06.018a10.6 10.6 0 0 0-1.615-.151c-1.113-.019-2.07.243-2.84.68-.76-.256-2.336-.697-3.997-.609-1.157.061-2.419.402-3.354 1.36-.933.958-1.426 2.44-1.322 4.457.028.557.191 1.464.463 2.64.27 1.175.652 2.55 1.127 3.805s.996 2.384 1.81 3.15c.406.384.965.707 1.624.68.463-.018.882-.215 1.243-.506.176.225.364.323.535.414.215.114.425.192.642.244a4.6 4.6 0 0 0 1.84.091c.267-.043.548-.127.828-.247.01.302.022.598.035.898.038.95.063 1.827.357 2.596.047.126.176.773.687 1.344.51.572 1.51.928 2.648.692.803-.167 1.825-.468 2.503-1.404.67-.926.973-2.254 1.033-4.409.015-.116.033-.215.052-.308l.16.014h.018c.857.038 1.787-.08 2.564-.43.688-.31 1.208-.622 1.587-1.177.095-.137.199-.303.227-.59.028-.285-.14-.733-.421-.939-.563-.414-.916-.257-1.295-.18q-.56.12-1.136.133c1.093-1.784 1.876-3.68 2.323-5.358.264-.99.413-1.903.425-2.701s-.055-1.505-.548-2.117c-1.541-1.91-3.708-2.438-5.384-2.456q-.078-.002-.156-.001zm-.044.587c1.585-.015 3.611.417 5.065 2.22.327.405.424.997.413 1.727-.012.729-.151 1.601-.405 2.557-.493 1.852-1.425 4.01-2.738 5.948a.7.7 0 0 0 .15.079c.274.11.898.204 2.145-.044.313-.065.543-.108.781.068a.48.48 0 0 1 .173.39.64.64 0 0 1-.123.308c-.24.351-.716.684-1.326.958-.539.244-1.313.371-1.999.379-.344.003-.661-.023-.93-.104l-.018-.006c-.104.971-.343 2.89-.498 3.765-.125.706-.343 1.267-.76 1.687-.416.42-1.004.673-1.796.838-.981.204-1.696-.016-2.157-.393-.46-.375-.671-.874-.798-1.18-.087-.21-.132-.483-.176-.848a18 18 0 0 1-.097-1.315 46 46 0 0 1-.028-2.312c-.41.363-.92.605-1.467.696-.65.107-1.232.002-1.579-.082a2.2 2.2 0 0 1-.49-.185c-.162-.083-.315-.177-.417-.363a.5.5 0 0 1-.054-.35.56.56 0 0 1 .206-.303c.188-.148.435-.23.808-.306.68-.135.917-.228 1.061-.339.123-.095.262-.287.508-.57l-.003-.037a2.9 2.9 0 0 1-1.257-.328c-.141.144-.865.887-1.748 1.917-.371.431-.781.678-1.214.696s-.824-.194-1.156-.506c-.665-.626-1.195-1.703-1.657-2.92-.46-1.218-.836-2.574-1.102-3.729-.268-1.155-.426-2.086-.448-2.535-.1-1.909.36-3.195 1.15-4.006s1.872-1.118 2.928-1.177c1.894-.106 3.693.535 4.057.673.701-.462 1.604-.75 2.733-.732a7.2 7.2 0 0 1 1.588.2l.019-.008q.344-.118.698-.196a9.4 9.4 0 0 1 1.957-.23zm.143.614h-.137a8.5 8.5 0 0 0-1.61.176 7.05 7.05 0 0 1 2.692 2.062 7.7 7.7 0 0 1 1.07 1.76c.104.242.174.447.213.605.02.08.034.147.038.217a.4.4 0 0 1-.011.132l-.006.012c.029.803-.176 1.347-.201 2.113-.019.556.127 1.209.163 1.92.034.67-.049 1.405-.497 2.127q.056.066.108.132c1.185-1.81 2.04-3.814 2.495-5.521.243-.92.373-1.753.384-2.413.01-.66-.117-1.139-.279-1.338-1.268-1.573-2.983-1.974-4.422-1.985zm-4.525.235c-1.117.002-1.919.33-2.526.82-.627.507-1.047 1.2-1.323 1.911a7.9 7.9 0 0 0-.485 2.213l.013-.007c.337-.184.78-.367 1.254-.473.475-.106.986-.139 1.449.035s.846.584.985 1.206c.665 2.986-.207 4.096-.529 4.933a9 9 0 0 0-.312.929q.06-.017.121-.024a1.06 1.06 0 0 1 .51.1c.324.13.546.402.666.714q.047.124.067.26.02.057.019.117a49 49 0 0 0 .012 3.426c.022.494.054.928.095 1.271.04.342.098.602.135.69.12.294.297.678.617.939s.777.434 1.614.26c.726-.151 1.174-.36 1.474-.663.298-.301.477-.72.591-1.363.171-.963.515-3.754.556-4.28-.018-.395.042-.7.172-.932.135-.238.343-.384.522-.463.09-.04.174-.066.243-.085a6 6 0 0 0-.23-.298 4 4 0 0 1-.629-1.007 8 8 0 0 0-.243-.443c-.125-.22-.284-.495-.45-.804-.333-.619-.695-1.369-.883-2.1-.187-.729-.215-1.484.265-2.017.426-.473 1.172-.669 2.293-.559-.033-.096-.053-.176-.109-.304a7.1 7.1 0 0 0-.983-1.617c-.95-1.178-2.487-2.346-4.863-2.384h-.108zm-6.276.047q-.18 0-.36.01c-.954.053-1.856.322-2.501.986-.647.663-1.072 1.751-.98 3.553.019.34.172 1.296.434 2.43.262 1.136.634 2.471 1.08 3.65.446 1.18.988 2.207 1.502 2.693.259.243.484.341.688.333.205-.01.451-.124.753-.475a40 40 0 0 1 1.71-1.877 3.2 3.2 0 0 1-.932-1.307 3.1 3.1 0 0 1-.17-1.58c.097-.678.11-1.312.099-1.812-.012-.488-.048-.812-.048-1.015v-.028a8.8 8.8 0 0 1 .559-3.095c.264-.682.658-1.375 1.249-1.936-.58-.185-1.61-.467-2.725-.52a7 7 0 0 0-.36-.01zm11.714 4.842c-.641.008-1.001.169-1.19.379-.268.298-.293.82-.127 1.464s.507 1.365.829 1.963c.16.3.316.57.442.788.127.22.22.376.276.51q.08.181.168.331c.248-.509.293-1.008.267-1.529-.033-.644-.187-1.303-.164-1.97.025-.78.184-1.289.198-1.892a6 6 0 0 0-.699-.044m-7.78.105a2.7 2.7 0 0 0-.582.068 4.5 4.5 0 0 0-1.09.412q-.173.09-.33.209l-.02.018c.006.134.033.459.045.936.01.523-.002 1.19-.106 1.91-.226 1.568.946 2.866 2.324 2.868.08-.322.213-.648.345-.992.384-1.003 1.139-1.734.503-4.589-.104-.467-.31-.656-.594-.763a1.4 1.4 0 0 0-.495-.077m7.48.187h.048q.094.003.17.02a.4.4 0 0 1 .13.051.15.15 0 0 1 .071.1v.008a.2.2 0 0 1-.034.124.6.6 0 0 1-.104.137.65.65 0 0 1-.364.195.57.57 0 0 1-.388-.095.6.6 0 0 1-.123-.108.24.24 0 0 1-.06-.116.15.15 0 0 1 .04-.118.4.4 0 0 1 .111-.082 1.3 1.3 0 0 1 .504-.118zm-7.388.154q.075 0 .157.012c.144.02.273.057.371.112q.072.037.126.097a.2.2 0 0 1 .042.073.2.2 0 0 1 .009.083.27.27 0 0 1-.071.141.6.6 0 0 1-.135.12.62.62 0 0 1-.424.103.7.7 0 0 1-.396-.209.7.7 0 0 1-.112-.15.25.25 0 0 1-.039-.162c.014-.1.099-.15.18-.18a.8.8 0 0 1 .29-.036zm8.56 6.732h-.003c-.139.05-.253.07-.35.11a.42.42 0 0 0-.225.197c-.06.105-.11.292-.095.61a.5.5 0 0 0 .14.064c.161.048.432.08.735.075.602-.007 1.344-.143 1.738-.321.323-.146.623-.336.891-.564-1.317.264-2.06.194-2.517.011a1.3 1.3 0 0 1-.314-.183zm-7.588.086h-.02c-.05.004-.123.02-.263.172-.33.358-.444.582-.716.792-.27.21-.623.321-1.327.461-.223.044-.35.093-.436.132.028.022.025.028.066.049.103.055.236.103.342.13.303.073.8.159 1.319.073s1.058-.327 1.518-.953c.08-.108.088-.268.023-.44-.067-.17-.211-.318-.313-.36a.6.6 0 0 0-.193-.054z"
|
|
10
|
-
})
|
|
11
|
-
});
|
|
12
|
-
//#endregion
|
|
13
|
-
export { SvgPostgresqlLogoSourceIconLight as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/S3LogoSourceIconDark.tsx
|
|
3
|
-
var SvgS3LogoSourceIconDark = (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", { d: "m20.913 13.147.12-.895c.947.576 1.258.922 1.354 1.071-.16.031-.562.046-1.474-.176m-2.174 7.988-.005.073c0 .084-.207.405-1.124.768a10 10 0 0 1-1.438.432c-1.405.325-3.128.504-4.853.504-4.612 0-7.412-1.184-7.412-1.704l-.005-.073L1.81 5.602q.203.117.432.227.064.03.128.057.2.093.417.18l.179.069q.232.087.478.168l.13.043q.311.097.646.187l.176.044q.263.066.534.127a23 23 0 0 0 .843.17l.121.023q.378.067.768.122.107.016.216.03.299.04.604.077l.24.027q.366.04.74.07l.081.009q.413.033.83.056l.233.012q.316.015.633.025a33 33 0 0 0 2.795-.026l.232-.011q.417-.023.83-.056l.08-.008q.375-.03.742-.072l.238-.026q.307-.036.609-.077l.211-.03q.392-.056.772-.122l.111-.02q.323-.06.634-.125l.212-.047q.279-.062.546-.13l.166-.042q.338-.09.654-.189l.115-.038a11 11 0 0 0 .493-.173q.087-.032.17-.066.225-.089.43-.185.059-.025.116-.052.23-.11.436-.228l-.976 7.245c-2.488-.78-5.805-2.292-7.311-3a1.09 1.09 0 0 0-1.088-1.085c-.6 0-1.088.489-1.088 1.088s.488 1.089 1.088 1.089c.196 0 .378-.056.537-.148 1.72.812 5.144 2.367 7.715 3.15zm-7.42-20.047c5.677 0 9.676 1.759 9.75 2.736l-.014.113c-.01.033-.031.067-.048.101-.015.028-.026.057-.047.087-.024.033-.058.068-.09.102-.028.03-.051.06-.084.09-.038.035-.087.07-.133.105-.04.03-.074.06-.119.091-.053.036-.116.071-.177.107-.05.03-.095.06-.15.09-.068.036-.147.073-.222.11-.059.028-.114.057-.177.085-.084.038-.177.074-.268.111-.068.027-.13.054-.203.082-.097.036-.205.072-.31.107-.075.026-.148.053-.228.079-.111.035-.233.069-.35.103-.085.024-.165.05-.253.073-.124.034-.258.065-.389.098-.093.022-.181.046-.278.068-.139.032-.287.061-.433.091-.098.02-.191.041-.293.06-.155.03-.32.057-.482.084-.1.018-.198.036-.302.052-.166.026-.342.048-.515.072-.11.014-.213.03-.325.044-.181.023-.372.041-.56.06q-.163.019-.332.036c-.188.016-.386.029-.58.043-.122.009-.24.02-.364.028-.207.012-.422.02-.635.028-.12.005-.234.012-.354.016a36 36 0 0 1-2.069 0c-.12-.004-.234-.011-.352-.016-.214-.008-.43-.016-.637-.028-.122-.008-.238-.02-.36-.027-.195-.015-.394-.028-.584-.044-.11-.01-.215-.024-.324-.035-.19-.02-.384-.038-.568-.06l-.315-.044c-.176-.024-.355-.046-.525-.073-.1-.015-.192-.033-.29-.05-.167-.028-.335-.055-.494-.086-.096-.018-.183-.038-.276-.056-.151-.032-.305-.062-.45-.095-.09-.02-.173-.043-.26-.064-.138-.034-.277-.067-.407-.102-.082-.022-.157-.046-.235-.069a12 12 0 0 1-.368-.108c-.075-.024-.141-.049-.213-.073-.11-.037-.223-.075-.325-.113-.067-.025-.125-.051-.188-.077-.096-.038-.195-.076-.282-.115-.06-.027-.11-.054-.166-.08-.08-.039-.162-.077-.233-.116-.052-.028-.094-.055-.142-.084-.063-.038-.13-.075-.185-.113-.043-.029-.075-.058-.113-.086-.048-.037-.098-.073-.139-.11-.032-.029-.054-.057-.08-.087-.033-.035-.069-.07-.093-.104-.02-.03-.031-.058-.046-.086-.018-.035-.039-.068-.049-.102l-.015-.113c.076-.977 4.074-2.736 9.748-2.736m12.182 12.124c-.118-.628-.84-1.291-2.31-2.128l.963-7.16.005-.073C22.16 1.581 16.447 0 11.32 0 6.194 0 .482 1.581.482 3.851l.005.072L2.819 21.25c.071 2.002 5.236 2.75 8.5 2.75 1.805 0 3.615-.188 5.098-.531.598-.138 1.133-.3 1.592-.48 1.18-.467 1.789-1.053 1.813-1.739l.945-7.018c.557.131 1.016.197 1.389.197.54 0 .902-.137 1.134-.413a.96.96 0 0 0 .21-.804Z" })
|
|
8
|
-
});
|
|
9
|
-
//#endregion
|
|
10
|
-
export { SvgS3LogoSourceIconDark as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/S3LogoSourceIconLight.tsx
|
|
3
|
-
var SvgS3LogoSourceIconLight = (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: "#fff",
|
|
9
|
-
d: "m20.913 13.147.12-.895c.947.576 1.258.922 1.354 1.071-.16.031-.562.046-1.474-.176m-2.174 7.988-.005.073c0 .084-.207.405-1.124.768a10 10 0 0 1-1.438.432c-1.405.325-3.128.504-4.853.504-4.612 0-7.412-1.184-7.412-1.704l-.005-.073L1.81 5.602q.203.117.432.227.064.03.128.057.2.093.417.18l.179.069q.232.087.478.168l.13.043q.311.097.646.187l.176.044q.263.066.534.127a23 23 0 0 0 .843.17l.121.023q.378.067.768.122.107.016.216.03.299.04.604.077l.24.027q.366.04.74.07l.081.009q.413.033.83.056l.233.012q.316.015.633.025a33 33 0 0 0 2.795-.026l.232-.011q.417-.023.83-.056l.08-.008q.375-.03.742-.072l.238-.026q.307-.036.609-.077l.211-.03q.392-.056.772-.122l.111-.02q.323-.06.634-.125l.212-.047q.279-.062.546-.13l.166-.042q.338-.09.654-.189l.115-.038a11 11 0 0 0 .493-.173q.087-.032.17-.066.225-.089.43-.185.059-.025.116-.052.23-.11.436-.228l-.976 7.245c-2.488-.78-5.805-2.292-7.311-3a1.09 1.09 0 0 0-1.088-1.085c-.6 0-1.088.489-1.088 1.088s.488 1.089 1.088 1.089c.196 0 .378-.056.537-.148 1.72.812 5.144 2.367 7.715 3.15zm-7.42-20.047c5.677 0 9.676 1.759 9.75 2.736l-.014.113c-.01.033-.031.067-.048.101-.015.028-.026.057-.047.087-.024.033-.058.068-.09.102-.028.03-.051.06-.084.09-.038.035-.087.07-.133.105-.04.03-.074.06-.119.091-.053.036-.116.071-.177.107-.05.03-.095.06-.15.09-.068.036-.147.073-.222.11-.059.028-.114.057-.177.085-.084.038-.177.074-.268.111-.068.027-.13.054-.203.082-.097.036-.205.072-.31.107-.075.026-.148.053-.228.079-.111.035-.233.069-.35.103-.085.024-.165.05-.253.073-.124.034-.258.065-.389.098-.093.022-.181.046-.278.068-.139.032-.287.061-.433.091-.098.02-.191.041-.293.06-.155.03-.32.057-.482.084-.1.018-.198.036-.302.052-.166.026-.342.048-.515.072-.11.014-.213.03-.325.044-.181.023-.372.041-.56.06q-.163.019-.332.036c-.188.016-.386.029-.58.043-.122.009-.24.02-.364.028-.207.012-.422.02-.635.028-.12.005-.234.012-.354.016a36 36 0 0 1-2.069 0c-.12-.004-.234-.011-.352-.016-.214-.008-.43-.016-.637-.028-.122-.008-.238-.02-.36-.027-.195-.015-.394-.028-.584-.044-.11-.01-.215-.024-.324-.035-.19-.02-.384-.038-.568-.06l-.315-.044c-.176-.024-.355-.046-.525-.073-.1-.015-.192-.033-.29-.05-.167-.028-.335-.055-.494-.086-.096-.018-.183-.038-.276-.056-.151-.032-.305-.062-.45-.095-.09-.02-.173-.043-.26-.064-.138-.034-.277-.067-.407-.102-.082-.022-.157-.046-.235-.069a12 12 0 0 1-.368-.108c-.075-.024-.141-.049-.213-.073-.11-.037-.223-.075-.325-.113-.067-.025-.125-.051-.188-.077-.096-.038-.195-.076-.282-.115-.06-.027-.11-.054-.166-.08-.08-.039-.162-.077-.233-.116-.052-.028-.094-.055-.142-.084-.063-.038-.13-.075-.185-.113-.043-.029-.075-.058-.113-.086-.048-.037-.098-.073-.139-.11-.032-.029-.054-.057-.08-.087-.033-.035-.069-.07-.093-.104-.02-.03-.031-.058-.046-.086-.018-.035-.039-.068-.049-.102l-.015-.113c.076-.977 4.074-2.736 9.748-2.736m12.182 12.124c-.118-.628-.84-1.291-2.31-2.128l.963-7.16.005-.073C22.16 1.581 16.447 0 11.32 0 6.194 0 .482 1.581.482 3.851l.005.072L2.819 21.25c.071 2.002 5.236 2.75 8.5 2.75 1.805 0 3.615-.188 5.098-.531.598-.138 1.133-.3 1.592-.48 1.18-.467 1.789-1.053 1.813-1.739l.945-7.018c.557.131 1.016.197 1.389.197.54 0 .902-.137 1.134-.413a.96.96 0 0 0 .21-.804Z"
|
|
10
|
-
})
|
|
11
|
-
});
|
|
12
|
-
//#endregion
|
|
13
|
-
export { SvgS3LogoSourceIconLight as default };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/SlackLogoSourceIconDark.tsx
|
|
3
|
-
var SvgSlackLogoSourceIconDark = (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: "currentColor",
|
|
9
|
-
fillRule: "evenodd",
|
|
10
|
-
d: "M9.066 1a2.2 2.2 0 1 0 .001 4.4h2.2V3.2a2.2 2.2 0 0 0-2.2-2.2m0 5.867H3.2a2.2 2.2 0 0 0 0 4.4h5.866a2.2 2.2 0 1 0 0-4.4M23 9.066a2.2 2.2 0 0 0-4.4 0v2.2h2.2a2.2 2.2 0 0 0 2.2-2.2m-5.867 0V3.2a2.2 2.2 0 0 0-4.4 0v5.866a2.2 2.2 0 1 0 4.4 0M14.933 23a2.2 2.2 0 1 0 0-4.4h-2.2v2.2a2.2 2.2 0 0 0 2.2 2.2m0-5.868H20.8a2.2 2.2 0 0 0 0-4.4h-5.866a2.2 2.2 0 0 0-.001 4.4M1 14.933a2.2 2.2 0 0 0 4.4 0v-2.2H3.2a2.2 2.2 0 0 0-2.2 2.2m5.867 0v5.866a2.2 2.2 0 0 0 4.4.001v-5.866a2.2 2.2 0 0 0-4.4-.001",
|
|
11
|
-
clipRule: "evenodd"
|
|
12
|
-
})
|
|
13
|
-
});
|
|
14
|
-
//#endregion
|
|
15
|
-
export { SvgSlackLogoSourceIconDark as default };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
//#region src/assets/components/sources/SlackLogoSourceIconLight.tsx
|
|
3
|
-
var SvgSlackLogoSourceIconLight = (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: "#fff",
|
|
9
|
-
fillRule: "evenodd",
|
|
10
|
-
d: "M9.066 1a2.2 2.2 0 1 0 .001 4.4h2.2V3.2a2.2 2.2 0 0 0-2.2-2.2m0 5.867H3.2a2.2 2.2 0 0 0 0 4.4h5.866a2.2 2.2 0 1 0 0-4.4M23 9.066a2.2 2.2 0 0 0-4.4 0v2.2h2.2a2.2 2.2 0 0 0 2.2-2.2m-5.867 0V3.2a2.2 2.2 0 0 0-4.4 0v5.866a2.2 2.2 0 1 0 4.4 0M14.933 23a2.2 2.2 0 1 0 0-4.4h-2.2v2.2a2.2 2.2 0 0 0 2.2 2.2m0-5.868H20.8a2.2 2.2 0 0 0 0-4.4h-5.866a2.2 2.2 0 0 0-.001 4.4M1 14.933a2.2 2.2 0 0 0 4.4 0v-2.2H3.2a2.2 2.2 0 0 0-2.2 2.2m5.867 0v5.866a2.2 2.2 0 0 0 4.4.001v-5.866a2.2 2.2 0 0 0-4.4-.001",
|
|
11
|
-
clipRule: "evenodd"
|
|
12
|
-
})
|
|
13
|
-
});
|
|
14
|
-
//#endregion
|
|
15
|
-
export { SvgSlackLogoSourceIconLight as default };
|