@arcadeai/design-system 3.8.1 → 3.9.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/dist/assets/icons/brightdata.js +10 -0
- package/dist/assets/icons/pagerduty.js +10 -0
- package/dist/assets/icons/squareup.js +14 -0
- package/dist/assets/icons/zoho-books.js +10 -0
- package/dist/assets/icons/zoho-creator.js +15 -0
- package/dist/assets/icons/zoho.js +17 -0
- package/dist/components/index.js +346 -334
- package/dist/components/ui/atoms/icons/brightdata.d.ts +3 -0
- package/dist/components/ui/atoms/icons/brightdata.js +25 -0
- package/dist/components/ui/atoms/icons/index.d.ts +6 -0
- package/dist/components/ui/atoms/icons/index.js +216 -204
- package/dist/components/ui/atoms/icons/pagerduty.d.ts +3 -0
- package/dist/components/ui/atoms/icons/pagerduty.js +44 -0
- package/dist/components/ui/atoms/icons/squareup.d.ts +3 -0
- package/dist/components/ui/atoms/icons/squareup.js +56 -0
- package/dist/components/ui/atoms/icons/zoho-books.d.ts +3 -0
- package/dist/components/ui/atoms/icons/zoho-books.js +33 -0
- package/dist/components/ui/atoms/icons/zoho-creator.d.ts +3 -0
- package/dist/components/ui/atoms/icons/zoho-creator.js +44 -0
- package/dist/components/ui/atoms/icons/zoho.d.ts +3 -0
- package/dist/components/ui/atoms/icons/zoho.js +108 -0
- package/dist/components/ui/atoms/index.js +338 -326
- package/dist/components/ui/index.js +346 -334
- package/dist/main.js +383 -371
- package/dist/metadata/oauth-providers.d.ts +12 -0
- package/dist/metadata/oauth-providers.js +128 -56
- package/dist/metadata/toolkit-icons.js +243 -227
- package/dist/metadata/toolkits.js +84 -19
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsxs as l, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const d = (a) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
"data-name": "Layer 1",
|
|
6
|
+
id: "Layer_1",
|
|
7
|
+
viewBox: "0 0 1033.25 1033.25",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...a,
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ t("title", { children: "Brightdata" }),
|
|
12
|
+
/* @__PURE__ */ t(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M905.7,0H127.56A127.56,127.56,0,0,0,0,127.58V905.7a127.56,127.56,0,0,0,127.56,127.55H905.7A127.55,127.55,0,0,0,1033.23,905.7V127.58A127.56,127.56,0,0,0,905.7,0Zm-463,286.1c7-17.07,12.05-33.16,2-52.25,13.08,5,19.09,13.05,25.11,24.12,10.05-6,15.07-15.09,17.09-25.12s4-20.11,7.05-30.14c4-10,10-18.09,22.09-24.13-6,18.11,4,28.15,14.07,39.2,12,14.07,22.11,28.14,33.14,41.19,12.07-20.08,12.07-20.08,22.13-25.12-11.06,22.11,1,42.19,4,62.3,6,42.19-17.09,80.37-57.26,89.42-29.14,6-57.29,3-77.37-21.1C434.67,341.36,431.63,314.24,442.71,286.1ZM640.13,852.87H421V803.73l53.23-6.92v-281l-49.1-15.92V445.21l134.15-18,28.37-2.79v371.7l52.53,7.61Z",
|
|
16
|
+
fill: "#3d7ffc"
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
d as Brightdata,
|
|
24
|
+
d as default
|
|
25
|
+
};
|
|
@@ -17,6 +17,7 @@ export * from './bluesky';
|
|
|
17
17
|
export * from './box';
|
|
18
18
|
export * from './braze';
|
|
19
19
|
export * from './brex';
|
|
20
|
+
export * from './brightdata';
|
|
20
21
|
export * from './buffer';
|
|
21
22
|
export * from './calendly';
|
|
22
23
|
export * from './clickhouse';
|
|
@@ -81,6 +82,7 @@ export * from './okta';
|
|
|
81
82
|
export * from './one-drive';
|
|
82
83
|
export * from './outlook-calendar';
|
|
83
84
|
export * from './outlook-mail';
|
|
85
|
+
export * from './pagerduty';
|
|
84
86
|
export * from './pinecone';
|
|
85
87
|
export * from './pinterest';
|
|
86
88
|
export * from './pipedrive';
|
|
@@ -97,6 +99,7 @@ export * from './splunk';
|
|
|
97
99
|
export * from './spotify';
|
|
98
100
|
export * from './square';
|
|
99
101
|
export * from './squarespace';
|
|
102
|
+
export * from './squareup';
|
|
100
103
|
export * from './stripe';
|
|
101
104
|
export * from './tesla';
|
|
102
105
|
export * from './tiktok';
|
|
@@ -112,4 +115,7 @@ export * from './x';
|
|
|
112
115
|
export * from './xero';
|
|
113
116
|
export * from './youtube';
|
|
114
117
|
export * from './zendesk';
|
|
118
|
+
export * from './zoho';
|
|
119
|
+
export * from './zoho-books';
|
|
120
|
+
export * from './zoho-creator';
|
|
115
121
|
export * from './zoom';
|
|
@@ -6,112 +6,118 @@ import { Arcade as l } from "./arcade.js";
|
|
|
6
6
|
import { Asana as n } from "./asana.js";
|
|
7
7
|
import { Ashby as g } from "./ashby.js";
|
|
8
8
|
import { Atlassian as d } from "./atlassian.js";
|
|
9
|
-
import { Auth0 as
|
|
10
|
-
import { Azure as
|
|
11
|
-
import { Bamboohr as
|
|
12
|
-
import { Basecamp as
|
|
13
|
-
import { Bill as
|
|
9
|
+
import { Auth0 as k } from "./auth0.js";
|
|
10
|
+
import { Azure as b } from "./azure.js";
|
|
11
|
+
import { Bamboohr as B } from "./bamboohr.js";
|
|
12
|
+
import { Basecamp as M } from "./basecamp.js";
|
|
13
|
+
import { Bill as A } from "./bill.js";
|
|
14
14
|
import { Bitbucket as F } from "./bitbucket.js";
|
|
15
15
|
import { Bluesky as v } from "./bluesky.js";
|
|
16
|
-
import { Box as
|
|
17
|
-
import { Braze as
|
|
18
|
-
import { Brex as
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
16
|
+
import { Box as T } from "./box.js";
|
|
17
|
+
import { Braze as Z } from "./braze.js";
|
|
18
|
+
import { Brex as W } from "./brex.js";
|
|
19
|
+
import { Brightdata as E } from "./brightdata.js";
|
|
20
|
+
import { Buffer as z } from "./buffer.js";
|
|
21
|
+
import { Calendly as J } from "./calendly.js";
|
|
22
|
+
import { Clickhouse as X } from "./clickhouse.js";
|
|
23
|
+
import { Clickup as R } from "./clickup.js";
|
|
24
|
+
import { Closeio as Y } from "./closeio.js";
|
|
25
|
+
import { Codesandbox as K } from "./codesandbox.js";
|
|
26
|
+
import { Coinbase as _ } from "./coinbase.js";
|
|
27
|
+
import { Confluence as oo } from "./confluence.js";
|
|
28
|
+
import { Cursor as eo } from "./cursor.js";
|
|
29
|
+
import { Datadog as po } from "./datadog.js";
|
|
30
|
+
import { DigitalOcean as mo } from "./digital-ocean.js";
|
|
31
|
+
import { Discord as io } from "./discord.js";
|
|
32
|
+
import { Dropbox as lo } from "./dropbox.js";
|
|
33
|
+
import { E2b as no } from "./e2b.js";
|
|
34
|
+
import { Ebay as go } from "./ebay.js";
|
|
35
|
+
import { Evernote as ho } from "./evernote.js";
|
|
36
|
+
import { Factorial as Go } from "./factorial.js";
|
|
37
|
+
import { Figma as So } from "./figma.js";
|
|
38
|
+
import { Firecrawl as Co } from "./firecrawl.js";
|
|
39
|
+
import { Freshservice as yo } from "./freshservice.js";
|
|
40
|
+
import { Generic as Do } from "./generic.js";
|
|
41
|
+
import { Github as Oo } from "./github.js";
|
|
42
|
+
import { Gitlab as Po } from "./gitlab.js";
|
|
43
|
+
import { Gmail as wo } from "./gmail.js";
|
|
44
|
+
import { Google as Ho } from "./google.js";
|
|
45
|
+
import { GoogleCalendar as qo } from "./google-calendar.js";
|
|
45
46
|
import { GoogleContacts as No } from "./google-contacts.js";
|
|
46
|
-
import { GoogleDocs as
|
|
47
|
-
import { GoogleDrive as
|
|
48
|
-
import { GoogleFinance as
|
|
49
|
-
import { GoogleFlight as
|
|
50
|
-
import { GoogleFlights as
|
|
51
|
-
import { GoogleHotels as
|
|
52
|
-
import { GoogleJobs as
|
|
53
|
-
import { GoogleMaps as
|
|
54
|
-
import { GoogleNews as
|
|
55
|
-
import { GoogleSheets as
|
|
56
|
-
import { GoogleShopping as
|
|
57
|
-
import { GoogleSlides as
|
|
58
|
-
import { Heroku as
|
|
59
|
-
import { Hootsuite as
|
|
60
|
-
import { Hubspot as
|
|
61
|
-
import { Imgflip as
|
|
62
|
-
import { Intercom as
|
|
63
|
-
import { Jira as
|
|
64
|
-
import { Linear as
|
|
65
|
-
import { Linkedin as
|
|
66
|
-
import { Mailchimp as
|
|
67
|
-
import { Mcp as
|
|
68
|
-
import { Microsoft as
|
|
69
|
-
import { MicrosoftDynamics as
|
|
70
|
-
import { MicrosoftSharepoint as
|
|
71
|
-
import { MicrosoftTeams as
|
|
47
|
+
import { GoogleDocs as Io } from "./google-docs.js";
|
|
48
|
+
import { GoogleDrive as Lo } from "./google-drive.js";
|
|
49
|
+
import { GoogleFinance as Qo } from "./google-finance.js";
|
|
50
|
+
import { GoogleFlight as Vo } from "./google-flight.js";
|
|
51
|
+
import { GoogleFlights as jo } from "./google-flights.js";
|
|
52
|
+
import { GoogleHotels as Uo } from "./google-hotels.js";
|
|
53
|
+
import { GoogleJobs as $o } from "./google-jobs.js";
|
|
54
|
+
import { GoogleMaps as rr } from "./google-maps.js";
|
|
55
|
+
import { GoogleNews as tr } from "./google-news.js";
|
|
56
|
+
import { GoogleSheets as fr } from "./google-sheets.js";
|
|
57
|
+
import { GoogleShopping as xr } from "./google-shopping.js";
|
|
58
|
+
import { GoogleSlides as ar } from "./google-slides.js";
|
|
59
|
+
import { Heroku as sr } from "./heroku.js";
|
|
60
|
+
import { Hootsuite as cr } from "./hootsuite.js";
|
|
61
|
+
import { Hubspot as ur } from "./hubspot.js";
|
|
62
|
+
import { Imgflip as hr } from "./imgflip.js";
|
|
63
|
+
import { Intercom as Gr } from "./intercom.js";
|
|
64
|
+
import { Jira as Sr } from "./jira.js";
|
|
65
|
+
import { Linear as Cr } from "./linear.js";
|
|
66
|
+
import { Linkedin as yr } from "./linkedin.js";
|
|
67
|
+
import { Mailchimp as Dr } from "./mailchimp.js";
|
|
68
|
+
import { Mcp as Or } from "./mcp.js";
|
|
69
|
+
import { Microsoft as Pr } from "./microsoft.js";
|
|
70
|
+
import { MicrosoftDynamics as wr } from "./microsoft-dynamics.js";
|
|
71
|
+
import { MicrosoftSharepoint as Hr } from "./microsoft-sharepoint.js";
|
|
72
|
+
import { MicrosoftTeams as qr } from "./microsoft-teams.js";
|
|
72
73
|
import { Miro as Nr } from "./miro.js";
|
|
73
|
-
import { Monday as
|
|
74
|
-
import { MongoDB as
|
|
75
|
-
import { Netsuite as
|
|
76
|
-
import { Notion as
|
|
77
|
-
import { Oauth as
|
|
78
|
-
import { Obsidian as
|
|
79
|
-
import { Okta as
|
|
80
|
-
import { OneDrive as
|
|
81
|
-
import { OutlookCalendar as
|
|
82
|
-
import { OutlookMail as
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
74
|
+
import { Monday as Ir } from "./monday.js";
|
|
75
|
+
import { MongoDB as Lr } from "./mongodb.js";
|
|
76
|
+
import { Netsuite as Qr } from "./netsuite.js";
|
|
77
|
+
import { Notion as Vr } from "./notion.js";
|
|
78
|
+
import { Oauth as jr } from "./oauth.js";
|
|
79
|
+
import { Obsidian as Ur } from "./obsidian.js";
|
|
80
|
+
import { Okta as $r } from "./okta.js";
|
|
81
|
+
import { OneDrive as re } from "./one-drive.js";
|
|
82
|
+
import { OutlookCalendar as te } from "./outlook-calendar.js";
|
|
83
|
+
import { OutlookMail as fe } from "./outlook-mail.js";
|
|
84
|
+
import { Pagerduty as xe } from "./pagerduty.js";
|
|
85
|
+
import { Pinecone as ae } from "./pinecone.js";
|
|
86
|
+
import { Pinterest as se } from "./pinterest.js";
|
|
87
|
+
import { Pipedrive as ce } from "./pipedrive.js";
|
|
88
|
+
import { Plaid as ue } from "./plaid.js";
|
|
89
|
+
import { Postgres as he } from "./postgres.js";
|
|
90
|
+
import { Quickbooks as Ge } from "./quickbooks.js";
|
|
91
|
+
import { Reddit as Se } from "./reddit.js";
|
|
92
|
+
import { Salesforce as Ce } from "./salesforce.js";
|
|
93
|
+
import { Shopify as ye } from "./shopify.js";
|
|
94
|
+
import { Singlestore as De } from "./singlestore.js";
|
|
95
|
+
import { Slack as Oe } from "./slack.js";
|
|
96
|
+
import { Snowflake as Pe } from "./snowflake.js";
|
|
97
|
+
import { Splunk as we } from "./splunk.js";
|
|
98
|
+
import { Spotify as He } from "./spotify.js";
|
|
99
|
+
import { Square as qe } from "./square.js";
|
|
100
|
+
import { Squarespace as Ne } from "./squarespace.js";
|
|
101
|
+
import { Squareup as Ie } from "./squareup.js";
|
|
102
|
+
import { Stripe as Le } from "./stripe.js";
|
|
103
|
+
import { Tesla as Qe } from "./tesla.js";
|
|
104
|
+
import { Tiktok as Ve } from "./tiktok.js";
|
|
105
|
+
import { Trello as je } from "./trello.js";
|
|
106
|
+
import { Twilio as Ue } from "./twilio.js";
|
|
107
|
+
import { Twitch as $e } from "./twitch.js";
|
|
108
|
+
import { Vercel as rt } from "./vercel.js";
|
|
109
|
+
import { Walmart as tt } from "./walmart.js";
|
|
110
|
+
import { Weaviate as ft } from "./weaviate.js";
|
|
111
|
+
import { Workday as xt } from "./workday.js";
|
|
112
|
+
import { Wrike as at } from "./wrike.js";
|
|
113
|
+
import { X as st } from "./x.js";
|
|
114
|
+
import { Xero as ct } from "./xero.js";
|
|
115
|
+
import { Youtube as ut } from "./youtube.js";
|
|
116
|
+
import { Zendesk as ht } from "./zendesk.js";
|
|
117
|
+
import { Zoho as Gt } from "./zoho.js";
|
|
118
|
+
import { ZohoBooks as St } from "./zoho-books.js";
|
|
119
|
+
import { ZohoCreator as Ct } from "./zoho-creator.js";
|
|
120
|
+
import { Zoom as yt } from "./zoom.js";
|
|
115
121
|
export {
|
|
116
122
|
e as Adp,
|
|
117
123
|
p as Aha,
|
|
@@ -121,110 +127,116 @@ export {
|
|
|
121
127
|
n as Asana,
|
|
122
128
|
g as Ashby,
|
|
123
129
|
d as Atlassian,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
130
|
+
k as Auth0,
|
|
131
|
+
b as Azure,
|
|
132
|
+
B as Bamboohr,
|
|
133
|
+
M as Basecamp,
|
|
134
|
+
A as Bill,
|
|
129
135
|
F as Bitbucket,
|
|
130
136
|
v as Bluesky,
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
R as
|
|
139
|
-
Y as
|
|
140
|
-
K as
|
|
141
|
-
_ as
|
|
142
|
-
oo as
|
|
143
|
-
eo as
|
|
144
|
-
po as
|
|
145
|
-
mo as
|
|
146
|
-
io as
|
|
147
|
-
lo as
|
|
148
|
-
no as
|
|
149
|
-
go as
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
So as
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
Do as
|
|
156
|
-
Oo as
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
137
|
+
T as Box,
|
|
138
|
+
Z as Braze,
|
|
139
|
+
W as Brex,
|
|
140
|
+
E as Brightdata,
|
|
141
|
+
z as Buffer,
|
|
142
|
+
J as Calendly,
|
|
143
|
+
X as Clickhouse,
|
|
144
|
+
R as Clickup,
|
|
145
|
+
Y as Closeio,
|
|
146
|
+
K as Codesandbox,
|
|
147
|
+
_ as Coinbase,
|
|
148
|
+
oo as Confluence,
|
|
149
|
+
eo as Cursor,
|
|
150
|
+
po as Datadog,
|
|
151
|
+
mo as DigitalOcean,
|
|
152
|
+
io as Discord,
|
|
153
|
+
lo as Dropbox,
|
|
154
|
+
no as E2b,
|
|
155
|
+
go as Ebay,
|
|
156
|
+
ho as Evernote,
|
|
157
|
+
Go as Factorial,
|
|
158
|
+
So as Figma,
|
|
159
|
+
Co as Firecrawl,
|
|
160
|
+
yo as Freshservice,
|
|
161
|
+
Do as Generic,
|
|
162
|
+
Oo as Github,
|
|
163
|
+
Po as Gitlab,
|
|
164
|
+
wo as Gmail,
|
|
165
|
+
Ho as Google,
|
|
166
|
+
qo as GoogleCalendar,
|
|
160
167
|
No as GoogleContacts,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
168
|
+
Io as GoogleDocs,
|
|
169
|
+
Lo as GoogleDrive,
|
|
170
|
+
Qo as GoogleFinance,
|
|
171
|
+
Vo as GoogleFlight,
|
|
172
|
+
jo as GoogleFlights,
|
|
173
|
+
Uo as GoogleHotels,
|
|
174
|
+
$o as GoogleJobs,
|
|
175
|
+
rr as GoogleMaps,
|
|
176
|
+
tr as GoogleNews,
|
|
177
|
+
fr as GoogleSheets,
|
|
178
|
+
xr as GoogleShopping,
|
|
179
|
+
ar as GoogleSlides,
|
|
180
|
+
sr as Heroku,
|
|
181
|
+
cr as Hootsuite,
|
|
182
|
+
ur as Hubspot,
|
|
183
|
+
hr as Imgflip,
|
|
184
|
+
Gr as Intercom,
|
|
185
|
+
Sr as Jira,
|
|
186
|
+
Cr as Linear,
|
|
187
|
+
yr as Linkedin,
|
|
188
|
+
Dr as Mailchimp,
|
|
189
|
+
Or as Mcp,
|
|
190
|
+
Pr as Microsoft,
|
|
191
|
+
wr as MicrosoftDynamics,
|
|
192
|
+
Hr as MicrosoftSharepoint,
|
|
193
|
+
qr as MicrosoftTeams,
|
|
187
194
|
Nr as Miro,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
Ne as
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
195
|
+
Ir as Monday,
|
|
196
|
+
Lr as MongoDB,
|
|
197
|
+
Qr as Netsuite,
|
|
198
|
+
Vr as Notion,
|
|
199
|
+
jr as Oauth,
|
|
200
|
+
Ur as Obsidian,
|
|
201
|
+
$r as Okta,
|
|
202
|
+
re as OneDrive,
|
|
203
|
+
te as OutlookCalendar,
|
|
204
|
+
fe as OutlookMail,
|
|
205
|
+
xe as Pagerduty,
|
|
206
|
+
ae as Pinecone,
|
|
207
|
+
se as Pinterest,
|
|
208
|
+
ce as Pipedrive,
|
|
209
|
+
ue as Plaid,
|
|
210
|
+
he as Postgres,
|
|
211
|
+
Ge as Quickbooks,
|
|
212
|
+
Se as Reddit,
|
|
213
|
+
Ce as Salesforce,
|
|
214
|
+
ye as Shopify,
|
|
215
|
+
De as Singlestore,
|
|
216
|
+
Oe as Slack,
|
|
217
|
+
Pe as Snowflake,
|
|
218
|
+
we as Splunk,
|
|
219
|
+
He as Spotify,
|
|
220
|
+
qe as Square,
|
|
221
|
+
Ne as Squarespace,
|
|
222
|
+
Ie as Squareup,
|
|
223
|
+
Le as Stripe,
|
|
224
|
+
Qe as Tesla,
|
|
225
|
+
Ve as Tiktok,
|
|
226
|
+
je as Trello,
|
|
227
|
+
Ue as Twilio,
|
|
228
|
+
$e as Twitch,
|
|
229
|
+
rt as Vercel,
|
|
230
|
+
tt as Walmart,
|
|
231
|
+
ft as Weaviate,
|
|
232
|
+
xt as Workday,
|
|
233
|
+
at as Wrike,
|
|
234
|
+
st as X,
|
|
235
|
+
ct as Xero,
|
|
236
|
+
ut as Youtube,
|
|
237
|
+
ht as Zendesk,
|
|
238
|
+
Gt as Zoho,
|
|
239
|
+
St as ZohoBooks,
|
|
240
|
+
Ct as ZohoCreator,
|
|
241
|
+
yt as Zoom
|
|
230
242
|
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsxs as t, jsx as C } from "react/jsx-runtime";
|
|
2
|
+
const e = (i) => /* @__PURE__ */ t(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "none",
|
|
6
|
+
height: "269",
|
|
7
|
+
viewBox: "0 0 268 269",
|
|
8
|
+
width: "268",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...i,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ C("title", { children: "Pagerduty" }),
|
|
13
|
+
/* @__PURE__ */ t("g", { clipPath: "url(#clip0_268_754)", children: [
|
|
14
|
+
/* @__PURE__ */ C(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
d: "M219.611 0.434082H48.3889C21.6644 0.434082 0 22.0985 0 48.823V220.045C0 246.77 21.6644 268.434 48.3889 268.434H219.611C246.336 268.434 268 246.77 268 220.045V48.823C268 22.0985 246.336 0.434082 219.611 0.434082Z",
|
|
18
|
+
fill: "#26C152"
|
|
19
|
+
}
|
|
20
|
+
),
|
|
21
|
+
/* @__PURE__ */ C(
|
|
22
|
+
"path",
|
|
23
|
+
{
|
|
24
|
+
d: "M68.0059 208.096H50.262V119.265C50.1585 115.992 50.724 112.732 51.9236 109.684C53.1233 106.636 54.9323 103.865 57.2401 101.539C62.1251 97.0341 68.5355 94.5439 75.1834 94.5674H103.095C113.063 94.5674 118.845 98.5509 121.836 101.937C126.132 106.814 128.35 113.175 128.016 119.663V153.125C128.016 162.685 124.029 168.461 120.839 171.648C115.966 175.975 109.61 178.258 103.095 178.021H68.0059V208.096ZM103.494 160.295C105.285 160.323 107.036 159.764 108.478 158.701C109.107 157.928 109.573 157.035 109.848 156.076C110.122 155.118 110.198 154.114 110.073 153.125V118.668C110.133 116.874 109.57 115.114 108.478 113.688C106.822 112.444 104.756 111.875 102.696 112.095H74.7844C67.8067 112.095 67.8067 117.472 67.8067 119.066V160.295H103.494ZM193.01 174.436H165.099C155.13 174.436 149.548 170.453 146.358 167.067C142.116 162.158 139.906 155.819 140.178 149.34V115.879C140.001 112.461 140.548 109.043 141.785 105.851C143.022 102.659 144.92 99.7643 147.355 97.3561C152.259 93.0811 158.593 90.8061 165.099 90.9825H199.988V61.1064H217.732V149.739C217.86 153.015 217.305 156.282 216.104 159.333C214.903 162.384 213.081 165.153 210.754 167.465C205.92 171.923 199.589 174.41 193.01 174.436ZM157.921 150.336C157.877 152.128 158.439 153.882 159.516 155.316C161.172 156.559 163.239 157.129 165.298 156.909H193.21C200.188 156.909 200.188 151.531 200.188 149.938V108.908H164.7C162.904 108.848 161.143 109.411 159.716 110.501C159.086 111.275 158.62 112.168 158.346 113.126C158.072 114.085 157.995 115.089 158.121 116.078L157.921 150.336Z",
|
|
25
|
+
fill: "white"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
] }),
|
|
29
|
+
/* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { id: "clip0_268_754", children: /* @__PURE__ */ C(
|
|
30
|
+
"rect",
|
|
31
|
+
{
|
|
32
|
+
fill: "white",
|
|
33
|
+
height: "268",
|
|
34
|
+
transform: "translate(0 0.434082)",
|
|
35
|
+
width: "268"
|
|
36
|
+
}
|
|
37
|
+
) }) })
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
export {
|
|
42
|
+
e as Pagerduty,
|
|
43
|
+
e as default
|
|
44
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { jsxs as e, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const i = (r) => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "transparent",
|
|
6
|
+
height: "396",
|
|
7
|
+
width: "396",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...r,
|
|
10
|
+
children: [
|
|
11
|
+
/* @__PURE__ */ t("title", { children: "Squareup" }),
|
|
12
|
+
/* @__PURE__ */ t(
|
|
13
|
+
"rect",
|
|
14
|
+
{
|
|
15
|
+
height: "324",
|
|
16
|
+
rx: "30",
|
|
17
|
+
ry: "30",
|
|
18
|
+
stroke: "#373F4A",
|
|
19
|
+
strokeWidth: "72",
|
|
20
|
+
width: "324",
|
|
21
|
+
x: "36",
|
|
22
|
+
y: "36"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ t(
|
|
26
|
+
"rect",
|
|
27
|
+
{
|
|
28
|
+
height: "266",
|
|
29
|
+
rx: "28",
|
|
30
|
+
ry: "28",
|
|
31
|
+
stroke: "#373F4A",
|
|
32
|
+
strokeWidth: "14",
|
|
33
|
+
width: "266",
|
|
34
|
+
x: "65",
|
|
35
|
+
y: "65"
|
|
36
|
+
}
|
|
37
|
+
),
|
|
38
|
+
/* @__PURE__ */ t(
|
|
39
|
+
"rect",
|
|
40
|
+
{
|
|
41
|
+
fill: "#373F4A",
|
|
42
|
+
height: "108",
|
|
43
|
+
rx: "12",
|
|
44
|
+
ry: "12",
|
|
45
|
+
width: "108",
|
|
46
|
+
x: "144",
|
|
47
|
+
y: "144"
|
|
48
|
+
}
|
|
49
|
+
)
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
export {
|
|
54
|
+
i as Squareup,
|
|
55
|
+
i as default
|
|
56
|
+
};
|