@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.
- package/dist/YouTubeIcon-C1e6LEOF.d.cts +398 -0
- package/dist/YouTubeIcon-C1e6LEOF.d.ts +398 -0
- package/dist/copilotkit/index.cjs +4 -39
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.d.cts +1 -0
- package/dist/copilotkit/index.d.ts +1 -0
- package/dist/copilotkit/index.js +1 -39
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/icons/index.cjs +1326 -3
- package/dist/icons/index.cjs.map +1 -1
- package/dist/icons/index.d.cts +136 -320
- package/dist/icons/index.d.ts +136 -320
- package/dist/icons/index.js +1311 -4
- package/dist/icons/index.js.map +1 -1
- package/dist/index.cjs +845 -613
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +34 -2
- package/dist/index.d.ts +34 -2
- package/dist/index.js +791 -560
- package/dist/index.js.map +1 -1
- package/dist/layout/index.cjs +0 -30
- package/dist/layout/index.cjs.map +1 -1
- package/dist/layout/index.js +0 -30
- package/dist/layout/index.js.map +1 -1
- package/dist/theme/index.cjs +0 -54
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.d.cts +0 -5
- package/dist/theme/index.d.ts +0 -5
- package/dist/theme/index.js +0 -54
- package/dist/theme/index.js.map +1 -1
- package/dist/workflow/index.cjs +0 -26
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.js +0 -26
- package/dist/workflow/index.js.map +1 -1
- package/package.json +7 -1
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,398 +1,214 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import React__default
|
|
3
|
-
|
|
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.js';
|
|
4
|
+
import '@react-aria/button';
|
|
4
5
|
|
|
5
|
-
type
|
|
6
|
-
interface
|
|
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
|
-
|
|
24
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
|
65
|
-
interface
|
|
66
|
-
variant?:
|
|
58
|
+
type ClickUpIconVariant = 'colored' | 'black' | 'white';
|
|
59
|
+
interface ClickUpIconProps {
|
|
60
|
+
variant?: ClickUpIconVariant;
|
|
67
61
|
size?: number;
|
|
68
62
|
className?: string;
|
|
69
|
-
|
|
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
|
-
|
|
74
|
-
|
|
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
|
|
79
|
-
interface
|
|
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
|
-
|
|
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
|
|
138
|
-
interface
|
|
139
|
-
variant?:
|
|
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
|
|
145
|
-
declare namespace
|
|
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
|
|
150
|
-
interface
|
|
151
|
-
variant?:
|
|
110
|
+
type JiraIconVariant = 'colored' | 'black' | 'white';
|
|
111
|
+
interface JiraIconProps {
|
|
112
|
+
variant?: JiraIconVariant;
|
|
152
113
|
size?: number;
|
|
153
114
|
className?: string;
|
|
154
|
-
|
|
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
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
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
|
|
168
|
-
interface
|
|
169
|
-
|
|
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
|
-
|
|
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
|
|
181
|
-
declare namespace
|
|
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
|
|
186
|
-
interface
|
|
187
|
-
variant?:
|
|
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
|
|
194
|
-
declare namespace
|
|
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
|
|
199
|
-
interface
|
|
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
|
-
|
|
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
|
|
265
|
-
interface
|
|
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
|
-
|
|
290
|
-
|
|
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
|
|
324
|
-
interface
|
|
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
|
-
|
|
350
|
-
|
|
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
|
|
386
|
-
interface
|
|
387
|
-
variant?:
|
|
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
|
|
394
|
-
declare namespace
|
|
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 {
|
|
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 };
|