@agentiffai/design 1.3.29 → 1.4.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.
@@ -1,398 +1,214 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import React__default, { SVGAttributes, SVGProps } from 'react';
3
- import { AriaButtonProps } from '@react-aria/button';
2
+ import React__default from 'react';
3
+ export { b as FacebookIcon, F as FacebookIconProps, a as FacebookIconVariant, d as GmailIcon, G as GmailIconProps, c as GmailIconVariant, f as InstagramIcon, I as InstagramIconProps, e as InstagramVariant, h as LinkedInIcon, L as LinkedInIconProps, g as LinkedInIconVariant, j as PostizIcon, P as PostizIconProps, i as PostizIconVariant, l as RedditIcon, R as RedditIconProps, k as RedditIconVariant, n as SlackIcon, S as SlackIconProps, m as SlackIconVariant, p as TelegramIcon, T as TelegramIconProps, o as TelegramIconVariant, r as WhatsAppIcon, W as WhatsAppIconProps, q as WhatsAppIconVariant, t as XIcon, X as XIconProps, s as XIconVariant, v as YouTubeIcon, Y as YouTubeIconProps, u as YouTubeIconVariant } from '../YouTubeIcon-C1e6LEOF.cjs';
4
+ import '@react-aria/button';
4
5
 
5
- type FacebookIconVariant = 'colored' | 'black' | 'white';
6
- interface FacebookIconProps extends Omit<SVGAttributes<SVGSVGElement>, 'viewBox' | 'xmlns'> {
7
- /**
8
- * Visual variant of the icon
9
- * - colored: Facebook brand colors (blue gradient)
10
- * - black: Solid black
11
- * - white: Solid white
12
- */
13
- variant?: FacebookIconVariant;
14
- /**
15
- * Size of the icon in pixels
16
- */
6
+ type AirtableIconVariant = 'colored' | 'black' | 'white';
7
+ interface AirtableIconProps {
8
+ variant?: AirtableIconVariant;
17
9
  size?: number;
18
- /**
19
- * Additional CSS class name
20
- */
21
10
  className?: string;
22
- /**
23
- * Accessible label for the icon
24
- * Required for interactive icons, optional for decorative
25
- */
11
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
12
+ 'aria-label'?: string;
13
+ }
14
+ declare function AirtableIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: AirtableIconProps): react_jsx_runtime.JSX.Element;
15
+ declare namespace AirtableIcon {
16
+ var displayName: string;
17
+ }
18
+
19
+ type AmazonIconVariant = 'colored' | 'black' | 'white';
20
+ interface AmazonIconProps {
21
+ variant?: AmazonIconVariant;
22
+ size?: number;
23
+ className?: string;
24
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
25
+ 'aria-label'?: string;
26
+ }
27
+ declare function AmazonIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: AmazonIconProps): react_jsx_runtime.JSX.Element;
28
+ declare namespace AmazonIcon {
29
+ var displayName: string;
30
+ }
31
+
32
+ type AsanaIconVariant = 'colored' | 'black' | 'white';
33
+ interface AsanaIconProps {
34
+ variant?: AsanaIconVariant;
35
+ size?: number;
36
+ className?: string;
37
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
26
38
  'aria-label'?: string;
27
- /**
28
- * Whether the icon is decorative (hidden from screen readers)
29
- */
30
- 'aria-hidden'?: boolean;
31
- /**
32
- * Click handler for interactive icons
33
- */
34
- onClick?: () => void;
35
- }
36
- /**
37
- * Facebook brand icon component with three variants
38
- *
39
- * @example
40
- * // Colored variant (default)
41
- * <FacebookIcon />
42
- *
43
- * @example
44
- * // Black variant with custom size
45
- * <FacebookIcon variant="black" size={32} />
46
- *
47
- * @example
48
- * // Interactive icon with click handler
49
- * <FacebookIcon
50
- * onClick={handleClick}
51
- * aria-label="Share on Facebook"
52
- * style={{ cursor: 'pointer' }}
53
- * />
54
- *
55
- * @example
56
- * // Decorative icon (hidden from screen readers)
57
- * <FacebookIcon aria-hidden="true" />
58
- */
59
- declare function FacebookIcon({ variant, size, className, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, onClick, ...svgProps }: FacebookIconProps): react_jsx_runtime.JSX.Element;
60
- declare namespace FacebookIcon {
39
+ }
40
+ declare function AsanaIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: AsanaIconProps): react_jsx_runtime.JSX.Element;
41
+ declare namespace AsanaIcon {
42
+ var displayName: string;
43
+ }
44
+
45
+ type CalendlyIconVariant = 'colored' | 'black' | 'white';
46
+ interface CalendlyIconProps {
47
+ variant?: CalendlyIconVariant;
48
+ size?: number;
49
+ className?: string;
50
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
51
+ 'aria-label'?: string;
52
+ }
53
+ declare function CalendlyIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: CalendlyIconProps): react_jsx_runtime.JSX.Element;
54
+ declare namespace CalendlyIcon {
61
55
  var displayName: string;
62
56
  }
63
57
 
64
- type GmailIconVariant = 'colored' | 'black' | 'white';
65
- interface GmailIconProps extends Partial<AriaButtonProps> {
66
- variant?: GmailIconVariant;
58
+ type ClickUpIconVariant = 'colored' | 'black' | 'white';
59
+ interface ClickUpIconProps {
60
+ variant?: ClickUpIconVariant;
67
61
  size?: number;
68
62
  className?: string;
69
- style?: React.CSSProperties;
63
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
70
64
  'aria-label'?: string;
71
65
  }
66
+ declare function ClickUpIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: ClickUpIconProps): react_jsx_runtime.JSX.Element;
67
+ declare namespace ClickUpIcon {
68
+ var displayName: string;
69
+ }
72
70
 
73
- declare function GmailIcon({ variant, size, className, style, 'aria-label': ariaLabel, onPress, ...ariaProps }: GmailIconProps): react_jsx_runtime.JSX.Element;
74
- declare namespace GmailIcon {
71
+ type DropboxIconVariant = 'colored' | 'black' | 'white';
72
+ interface DropboxIconProps {
73
+ variant?: DropboxIconVariant;
74
+ size?: number;
75
+ className?: string;
76
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
77
+ 'aria-label'?: string;
78
+ }
79
+ declare function DropboxIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: DropboxIconProps): react_jsx_runtime.JSX.Element;
80
+ declare namespace DropboxIcon {
75
81
  var displayName: string;
76
82
  }
77
83
 
78
- type InstagramVariant = 'colored' | 'black' | 'white';
79
- interface InstagramIconProps extends Omit<SVGAttributes<SVGSVGElement>, 'viewBox' | 'xmlns'> {
80
- /**
81
- * Visual variant of the icon
82
- * - colored: Instagram brand gradient (purple to yellow)
83
- * - black: Solid black
84
- * - white: Solid white
85
- */
86
- variant?: InstagramVariant;
87
- /**
88
- * Size of the icon in pixels
89
- */
84
+ type GitHubIconVariant = 'colored' | 'black' | 'white';
85
+ interface GitHubIconProps {
86
+ variant?: GitHubIconVariant;
90
87
  size?: number;
91
- /**
92
- * Additional CSS class name
93
- */
94
88
  className?: string;
95
- /**
96
- * Accessible label for the icon
97
- * Required for interactive icons, optional for decorative
98
- */
89
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
99
90
  'aria-label'?: string;
100
- /**
101
- * Whether the icon is decorative (hidden from screen readers)
102
- */
103
- 'aria-hidden'?: boolean;
104
- /**
105
- * Click handler for interactive icons
106
- */
107
- onClick?: () => void;
108
- }
109
- /**
110
- * Instagram brand icon component with three variants
111
- *
112
- * @example
113
- * // Colored variant (default)
114
- * <InstagramIcon />
115
- *
116
- * @example
117
- * // Black variant with custom size
118
- * <InstagramIcon variant="black" size={32} />
119
- *
120
- * @example
121
- * // Interactive icon with click handler
122
- * <InstagramIcon
123
- * onClick={handleClick}
124
- * aria-label="Share on Instagram"
125
- * style={{ cursor: 'pointer' }}
126
- * />
127
- *
128
- * @example
129
- * // Decorative icon (hidden from screen readers)
130
- * <InstagramIcon aria-hidden="true" />
131
- */
132
- declare function InstagramIcon({ variant, size, className, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, onClick, ...svgProps }: InstagramIconProps): react_jsx_runtime.JSX.Element;
133
- declare namespace InstagramIcon {
91
+ }
92
+ declare function GitHubIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: GitHubIconProps): react_jsx_runtime.JSX.Element;
93
+ declare namespace GitHubIcon {
134
94
  var displayName: string;
135
95
  }
136
96
 
137
- type LinkedInIconVariant = 'colored' | 'black' | 'white';
138
- interface LinkedInIconProps extends Partial<AriaButtonProps> {
139
- variant?: LinkedInIconVariant;
97
+ type GitLabIconVariant = 'colored' | 'black' | 'white';
98
+ interface GitLabIconProps {
99
+ variant?: GitLabIconVariant;
140
100
  size?: number;
141
101
  className?: string;
102
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
142
103
  'aria-label'?: string;
143
104
  }
144
- declare function LinkedInIcon({ variant, size, className, 'aria-label': ariaLabel, onPress, ...ariaProps }: LinkedInIconProps): react_jsx_runtime.JSX.Element;
145
- declare namespace LinkedInIcon {
105
+ declare function GitLabIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: GitLabIconProps): react_jsx_runtime.JSX.Element;
106
+ declare namespace GitLabIcon {
146
107
  var displayName: string;
147
108
  }
148
109
 
149
- type PostizIconVariant = 'colored' | 'black' | 'white';
150
- interface PostizIconProps extends Partial<AriaButtonProps> {
151
- variant?: PostizIconVariant;
110
+ type JiraIconVariant = 'colored' | 'black' | 'white';
111
+ interface JiraIconProps {
112
+ variant?: JiraIconVariant;
152
113
  size?: number;
153
114
  className?: string;
154
- style?: React.CSSProperties;
115
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
155
116
  'aria-label'?: string;
156
117
  }
118
+ declare function JiraIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: JiraIconProps): react_jsx_runtime.JSX.Element;
119
+ declare namespace JiraIcon {
120
+ var displayName: string;
121
+ }
157
122
 
158
- /**
159
- * Postiz logo - Official Postiz social media scheduling platform logo
160
- * Brand colors: Purple (#612bd3), Dark (#131019), White (#fff)
161
- */
162
- declare function PostizIcon({ variant, size, className, style, 'aria-label': ariaLabel, onPress, ...ariaProps }: PostizIconProps): react_jsx_runtime.JSX.Element;
163
- declare namespace PostizIcon {
123
+ type MicrosoftIconVariant = 'colored' | 'black' | 'white';
124
+ interface MicrosoftIconProps {
125
+ variant?: MicrosoftIconVariant;
126
+ size?: number;
127
+ className?: string;
128
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
129
+ 'aria-label'?: string;
130
+ }
131
+ declare function MicrosoftIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: MicrosoftIconProps): react_jsx_runtime.JSX.Element;
132
+ declare namespace MicrosoftIcon {
164
133
  var displayName: string;
165
134
  }
166
135
 
167
- type RedditIconVariant = 'colored' | 'black' | 'white';
168
- interface RedditIconProps extends Omit<SVGAttributes<SVGSVGElement>, 'viewBox' | 'fill' | 'xmlns'> {
169
- /** Visual variant of the icon */
170
- variant?: RedditIconVariant;
171
- /** Size of the icon in pixels */
136
+ type PinterestIconVariant = 'colored' | 'black' | 'white';
137
+ interface PinterestIconProps {
138
+ variant?: PinterestIconVariant;
172
139
  size?: number;
173
- /** Additional CSS class */
174
140
  className?: string;
175
- /** Click handler for interactive icons */
176
- onClick?: () => void;
177
- /** Accessible label for screen readers */
141
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
178
142
  'aria-label'?: string;
179
143
  }
180
- declare function RedditIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, ...svgProps }: RedditIconProps): react_jsx_runtime.JSX.Element;
181
- declare namespace RedditIcon {
144
+ declare function PinterestIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: PinterestIconProps): react_jsx_runtime.JSX.Element;
145
+ declare namespace PinterestIcon {
182
146
  var displayName: string;
183
147
  }
184
148
 
185
- type SlackIconVariant = 'colored' | 'black' | 'white';
186
- interface SlackIconProps {
187
- variant?: SlackIconVariant;
149
+ type PipedriveIconVariant = 'colored' | 'black' | 'white';
150
+ interface PipedriveIconProps {
151
+ variant?: PipedriveIconVariant;
188
152
  size?: number;
189
153
  className?: string;
190
154
  onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
191
155
  'aria-label'?: string;
192
156
  }
193
- declare function SlackIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: SlackIconProps): react_jsx_runtime.JSX.Element;
194
- declare namespace SlackIcon {
157
+ declare function PipedriveIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: PipedriveIconProps): react_jsx_runtime.JSX.Element;
158
+ declare namespace PipedriveIcon {
195
159
  var displayName: string;
196
160
  }
197
161
 
198
- type TelegramIconVariant = 'colored' | 'black' | 'white';
199
- interface TelegramIconProps extends Omit<SVGAttributes<SVGSVGElement>, 'viewBox' | 'xmlns'> {
200
- /**
201
- * Visual variant of the icon
202
- * - colored: Telegram brand colors (blue gradient)
203
- * - black: Solid black
204
- * - white: Solid white
205
- */
206
- variant?: TelegramIconVariant;
207
- /**
208
- * Size of the icon in pixels
209
- */
162
+ type SendGridIconVariant = 'colored' | 'black' | 'white';
163
+ interface SendGridIconProps {
164
+ variant?: SendGridIconVariant;
210
165
  size?: number;
211
- /**
212
- * Additional CSS class name
213
- */
214
166
  className?: string;
215
- /**
216
- * Accessible label for the icon
217
- * Required for interactive icons, optional for decorative
218
- */
167
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
219
168
  'aria-label'?: string;
220
- /**
221
- * Whether the icon is decorative (hidden from screen readers)
222
- */
223
- 'aria-hidden'?: boolean;
224
- /**
225
- * Click handler for interactive icons
226
- */
227
- onClick?: () => void;
228
- }
229
- /**
230
- * Telegram brand icon component with three variants
231
- *
232
- * Features:
233
- * - Three variants: colored (gradient), black, and white
234
- * - Customizable size (default 24px)
235
- * - Accessible with proper ARIA attributes
236
- * - Works as both decorative and interactive elements
237
- * - Inline SVG for optimal performance
238
- *
239
- * @example
240
- * // Colored variant (default)
241
- * <TelegramIcon />
242
- *
243
- * @example
244
- * // Black variant with custom size
245
- * <TelegramIcon variant="black" size={32} />
246
- *
247
- * @example
248
- * // Interactive icon with click handler
249
- * <TelegramIcon
250
- * onClick={handleClick}
251
- * aria-label="Share on Telegram"
252
- * style={{ cursor: 'pointer' }}
253
- * />
254
- *
255
- * @example
256
- * // Decorative icon (hidden from screen readers)
257
- * <TelegramIcon aria-hidden="true" />
258
- */
259
- declare function TelegramIcon({ variant, size, className, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, onClick, ...svgProps }: TelegramIconProps): react_jsx_runtime.JSX.Element;
260
- declare namespace TelegramIcon {
169
+ }
170
+ declare function SendGridIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: SendGridIconProps): react_jsx_runtime.JSX.Element;
171
+ declare namespace SendGridIcon {
261
172
  var displayName: string;
262
173
  }
263
174
 
264
- type WhatsAppIconVariant = 'colored' | 'black' | 'white';
265
- interface WhatsAppIconProps extends Omit<SVGProps<SVGSVGElement>, 'children'> {
266
- /**
267
- * Visual variant of the icon
268
- * - colored: Green WhatsApp brand color (#25D366) on white background
269
- * - black: Solid black icon
270
- * - white: Solid white icon
271
- * @default 'colored'
272
- */
273
- variant?: WhatsAppIconVariant;
274
- /**
275
- * Size of the icon in pixels
276
- * @default 24
277
- */
175
+ type SupabaseIconVariant = 'colored' | 'black' | 'white';
176
+ interface SupabaseIconProps {
177
+ variant?: SupabaseIconVariant;
278
178
  size?: number;
279
- /**
280
- * Additional CSS class name
281
- */
282
179
  className?: string;
283
- /**
284
- * Accessible label for the icon
285
- * Required for interactive icons, optional for decorative ones
286
- */
180
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
287
181
  'aria-label'?: string;
288
- /**
289
- * Whether the icon is decorative only (hidden from screen readers)
290
- * @default false
291
- */
292
- 'aria-hidden'?: boolean;
293
- /**
294
- * Click handler for interactive icons
295
- */
296
- onClick?: () => void;
297
- }
298
- /**
299
- * WhatsApp brand icon component with three visual variants.
300
- * Built with accessibility in mind - supports both decorative and interactive use cases.
301
- *
302
- * @example
303
- * ```tsx
304
- * // Decorative icon
305
- * <WhatsAppIcon variant="colored" aria-hidden />
306
- *
307
- * // Interactive icon (button/link)
308
- * <WhatsAppIcon
309
- * variant="white"
310
- * aria-label="Share on WhatsApp"
311
- * onClick={handleShare}
312
- * />
313
- *
314
- * // Custom size
315
- * <WhatsAppIcon size={32} variant="black" />
316
- * ```
317
- */
318
- declare function WhatsAppIcon({ variant, size, className, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, onClick, ...svgProps }: WhatsAppIconProps): react_jsx_runtime.JSX.Element;
319
- declare namespace WhatsAppIcon {
182
+ }
183
+ declare function SupabaseIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: SupabaseIconProps): react_jsx_runtime.JSX.Element;
184
+ declare namespace SupabaseIcon {
320
185
  var displayName: string;
321
186
  }
322
187
 
323
- type XIconVariant = 'colored' | 'black' | 'white';
324
- interface XIconProps {
325
- /**
326
- * The variant of the X icon to display
327
- * @default 'colored'
328
- */
329
- variant?: XIconVariant;
330
- /**
331
- * The size of the icon in pixels
332
- * @default 24
333
- */
188
+ type TodoistIconVariant = 'colored' | 'black' | 'white';
189
+ interface TodoistIconProps {
190
+ variant?: TodoistIconVariant;
334
191
  size?: number;
335
- /**
336
- * Additional CSS class name
337
- */
338
192
  className?: string;
339
- /**
340
- * Click handler for interactive icons
341
- */
342
193
  onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
343
- /**
344
- * Accessible label for the icon
345
- * If not provided and icon is interactive, defaults to "X (formerly Twitter) icon"
346
- */
347
194
  'aria-label'?: string;
348
- /**
349
- * Whether the icon is purely decorative (will hide from screen readers)
350
- * @default false
351
- */
352
- decorative?: boolean;
353
- }
354
- /**
355
- * XIcon component - Displays the X (formerly Twitter) icon with three variants
356
- *
357
- * This component renders the X social media icon with support for colored (black),
358
- * explicit black, and white variants. It's fully accessible and can be used as both
359
- * a decorative element and an interactive button.
360
- *
361
- * @example
362
- * ```tsx
363
- * // Colored variant (default, black)
364
- * <XIcon />
365
- *
366
- * // White variant for dark backgrounds
367
- * <XIcon variant="white" size={32} />
368
- *
369
- * // Interactive icon with click handler
370
- * <XIcon
371
- * variant="colored"
372
- * onClick={() => window.open('https://x.com/yourhandle')}
373
- * aria-label="Visit our X profile"
374
- * />
375
- *
376
- * // Decorative icon (hidden from screen readers)
377
- * <XIcon decorative />
378
- * ```
379
- */
380
- declare function XIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, decorative, }: XIconProps): react_jsx_runtime.JSX.Element;
381
- declare namespace XIcon {
195
+ }
196
+ declare function TodoistIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: TodoistIconProps): react_jsx_runtime.JSX.Element;
197
+ declare namespace TodoistIcon {
382
198
  var displayName: string;
383
199
  }
384
200
 
385
- type YouTubeIconVariant = 'colored' | 'black' | 'white';
386
- interface YouTubeIconProps {
387
- variant?: YouTubeIconVariant;
201
+ type TrelloIconVariant = 'colored' | 'black' | 'white';
202
+ interface TrelloIconProps {
203
+ variant?: TrelloIconVariant;
388
204
  size?: number;
389
205
  className?: string;
390
- onClick?: () => void;
206
+ onClick?: (event: React__default.MouseEvent<SVGSVGElement>) => void;
391
207
  'aria-label'?: string;
392
208
  }
393
- declare function YouTubeIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: YouTubeIconProps): react_jsx_runtime.JSX.Element;
394
- declare namespace YouTubeIcon {
209
+ declare function TrelloIcon({ variant, size, className, onClick, 'aria-label': ariaLabel, }: TrelloIconProps): react_jsx_runtime.JSX.Element;
210
+ declare namespace TrelloIcon {
395
211
  var displayName: string;
396
212
  }
397
213
 
398
- export { FacebookIcon, type FacebookIconProps, type FacebookIconVariant, GmailIcon, type GmailIconProps, type GmailIconVariant, InstagramIcon, type InstagramIconProps, type InstagramVariant, LinkedInIcon, type LinkedInIconProps, type LinkedInIconVariant, PostizIcon, type PostizIconProps, type PostizIconVariant, RedditIcon, type RedditIconProps, type RedditIconVariant, SlackIcon, type SlackIconProps, type SlackIconVariant, TelegramIcon, type TelegramIconProps, type TelegramIconVariant, WhatsAppIcon, type WhatsAppIconProps, type WhatsAppIconVariant, XIcon, type XIconProps, type XIconVariant, YouTubeIcon, type YouTubeIconProps, type YouTubeIconVariant };
214
+ export { AirtableIcon, type AirtableIconProps, type AirtableIconVariant, AmazonIcon, type AmazonIconProps, type AmazonIconVariant, AsanaIcon, type AsanaIconProps, type AsanaIconVariant, CalendlyIcon, type CalendlyIconProps, type CalendlyIconVariant, ClickUpIcon, type ClickUpIconProps, type ClickUpIconVariant, DropboxIcon, type DropboxIconProps, type DropboxIconVariant, GitHubIcon, type GitHubIconProps, type GitHubIconVariant, GitLabIcon, type GitLabIconProps, type GitLabIconVariant, JiraIcon, type JiraIconProps, type JiraIconVariant, MicrosoftIcon, type MicrosoftIconProps, type MicrosoftIconVariant, PinterestIcon, type PinterestIconProps, type PinterestIconVariant, PipedriveIcon, type PipedriveIconProps, type PipedriveIconVariant, SendGridIcon, type SendGridIconProps, type SendGridIconVariant, SupabaseIcon, type SupabaseIconProps, type SupabaseIconVariant, TodoistIcon, type TodoistIconProps, type TodoistIconVariant, TrelloIcon, type TrelloIconProps, type TrelloIconVariant };