@agentiffai/design 0.1.7 → 0.1.9

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.
Files changed (47) hide show
  1. package/dist/{StreamStatusIndicator-DM5n4MI1.d.cts → Window-CF5y1_Og.d.cts} +111 -106
  2. package/dist/{StreamStatusIndicator-DM5n4MI1.d.ts → Window-CF5y1_Og.d.ts} +111 -106
  3. package/dist/copilotkit/index.cjs +2465 -2276
  4. package/dist/copilotkit/index.cjs.map +1 -1
  5. package/dist/copilotkit/index.d.cts +63 -46
  6. package/dist/copilotkit/index.d.ts +63 -46
  7. package/dist/copilotkit/index.js +2463 -2275
  8. package/dist/copilotkit/index.js.map +1 -1
  9. package/dist/icons/index.cjs +68 -167
  10. package/dist/icons/index.cjs.map +1 -1
  11. package/dist/icons/index.d.cts +25 -20
  12. package/dist/icons/index.d.ts +25 -20
  13. package/dist/icons/index.js +68 -167
  14. package/dist/icons/index.js.map +1 -1
  15. package/dist/index.cjs +5968 -3620
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +364 -4
  18. package/dist/index.d.ts +364 -4
  19. package/dist/index.js +5917 -3590
  20. package/dist/index.js.map +1 -1
  21. package/dist/layout/index.cjs +1000 -525
  22. package/dist/layout/index.cjs.map +1 -1
  23. package/dist/layout/index.d.cts +70 -8
  24. package/dist/layout/index.d.ts +70 -8
  25. package/dist/layout/index.js +997 -523
  26. package/dist/layout/index.js.map +1 -1
  27. package/dist/theme/index.cjs +345 -24
  28. package/dist/theme/index.cjs.map +1 -1
  29. package/dist/theme/index.d.cts +524 -65
  30. package/dist/theme/index.d.ts +524 -65
  31. package/dist/theme/index.js +345 -24
  32. package/dist/theme/index.js.map +1 -1
  33. package/dist/workflow/index.cjs +870 -575
  34. package/dist/workflow/index.cjs.map +1 -1
  35. package/dist/workflow/index.d.cts +93 -57
  36. package/dist/workflow/index.d.ts +93 -57
  37. package/dist/workflow/index.js +866 -572
  38. package/dist/workflow/index.js.map +1 -1
  39. package/package.json +1 -1
  40. package/public/assets/icon-set/Icon-contacts-fill.svg +3 -0
  41. package/public/assets/icon-set/Icon-mail-open-fill.svg +3 -0
  42. package/public/assets/icon-set/Icon-p2p-fill.svg +3 -0
  43. package/public/assets/icon-set/Icon-robot-2-fill.svg +3 -0
  44. package/public/assets/icon-set/Icon-send-plane-fill.svg +3 -0
  45. package/public/assets/icon-set/Notion.svg +41 -0
  46. package/public/assets/icon-set/Postiz.svg +1 -0
  47. package/public/assets/avatar-transparent-bg.png +0 -0
@@ -76,18 +76,16 @@ declare namespace GmailIcon {
76
76
  }
77
77
 
78
78
  type InstagramVariant = 'colored' | 'black' | 'white';
79
- interface InstagramIconProps extends Omit<AriaButtonProps, 'children'> {
79
+ interface InstagramIconProps extends Omit<SVGAttributes<SVGSVGElement>, 'viewBox' | 'xmlns'> {
80
80
  /**
81
- * The variant of the Instagram icon
82
- * - 'colored': Instagram brand gradient (purple to yellow)
83
- * - 'black': Solid black icon
84
- * - 'white': Solid white icon
85
- * @default 'colored'
81
+ * Visual variant of the icon
82
+ * - colored: Instagram brand gradient (purple to yellow)
83
+ * - black: Solid black
84
+ * - white: Solid white
86
85
  */
87
86
  variant?: InstagramVariant;
88
87
  /**
89
88
  * Size of the icon in pixels
90
- * @default 24
91
89
  */
92
90
  size?: number;
93
91
  /**
@@ -96,35 +94,42 @@ interface InstagramIconProps extends Omit<AriaButtonProps, 'children'> {
96
94
  className?: string;
97
95
  /**
98
96
  * Accessible label for the icon
99
- * @default 'Instagram'
97
+ * Required for interactive icons, optional for decorative
100
98
  */
101
99
  '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;
102
108
  }
103
109
  /**
104
- * InstagramIcon component - Displays the Instagram logo with multiple variants
105
- *
106
- * This component renders the Instagram logo with three visual variants:
107
- * colored (brand gradient), black, and white. It uses React ARIA for
108
- * accessibility and can function as both a decorative icon and an
109
- * interactive button.
110
+ * Instagram brand icon component with three variants
110
111
  *
111
112
  * @example
112
- * ```tsx
113
113
  * // Colored variant (default)
114
114
  * <InstagramIcon />
115
115
  *
116
+ * @example
116
117
  * // Black variant with custom size
117
118
  * <InstagramIcon variant="black" size={32} />
118
119
  *
120
+ * @example
119
121
  * // Interactive icon with click handler
120
122
  * <InstagramIcon
121
- * variant="colored"
122
- * onPress={() => window.open('https://instagram.com')}
123
- * aria-label="Follow us on Instagram"
123
+ * onClick={handleClick}
124
+ * aria-label="Share on Instagram"
125
+ * style={{ cursor: 'pointer' }}
124
126
  * />
125
- * ```
127
+ *
128
+ * @example
129
+ * // Decorative icon (hidden from screen readers)
130
+ * <InstagramIcon aria-hidden="true" />
126
131
  */
127
- declare function InstagramIcon({ variant, size, className, 'aria-label': ariaLabel, onPress, ...ariaProps }: InstagramIconProps): react_jsx_runtime.JSX.Element;
132
+ declare function InstagramIcon({ variant, size, className, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, onClick, ...svgProps }: InstagramIconProps): react_jsx_runtime.JSX.Element;
128
133
  declare namespace InstagramIcon {
129
134
  var displayName: string;
130
135
  }
@@ -278,185 +278,86 @@ function GmailIcon({
278
278
  );
279
279
  }
280
280
  GmailIcon.displayName = "GmailIcon";
281
- var StyledInstagramIcon = styled.button`
282
- display: inline-flex;
283
- align-items: center;
284
- justify-content: center;
285
- padding: 0;
286
- margin: 0;
287
- background: transparent;
288
- border: none;
289
- cursor: pointer;
290
- width: ${(props) => props.$size}px;
291
- height: ${(props) => props.$size}px;
292
- border-radius: ${(props) => props.theme.radii?.sm || "4px"};
293
- transition: all 0.2s ease;
294
-
295
- /* Focus visible state for accessibility */
296
- &:focus-visible {
297
- outline: 2px solid ${(props) => props.theme.colors?.primary || "#007bff"};
298
- outline-offset: 2px;
299
- }
300
-
301
- /* Hover state */
302
- &:hover:not(:disabled) {
303
- opacity: 0.8;
304
- transform: scale(1.05);
305
- }
306
-
307
- /* Active/pressed state */
308
- &:active:not(:disabled) {
309
- transform: scale(0.95);
310
- }
311
-
312
- /* Disabled state */
313
- &:disabled {
314
- opacity: 0.5;
315
- cursor: not-allowed;
316
- }
317
-
318
- /* Remove default button styles */
319
- -webkit-appearance: none;
320
- -moz-appearance: none;
321
- appearance: none;
322
-
323
- /* Ensure SVG is properly displayed */
324
- svg {
325
- display: block;
326
- pointer-events: none;
327
- }
328
- `;
329
281
  function InstagramIcon({
330
282
  variant = "colored",
331
283
  size = 24,
332
284
  className,
333
- "aria-label": ariaLabel = "Instagram",
334
- onPress,
335
- ...ariaProps
285
+ "aria-label": ariaLabel,
286
+ "aria-hidden": ariaHidden,
287
+ onClick,
288
+ ...svgProps
336
289
  }) {
337
- const ref = useRef(null);
338
290
  const gradientId = useId();
339
- const isInteractive = Boolean(onPress || ariaProps.onPressStart || ariaProps.onPressEnd);
340
- const { buttonProps } = useButton(
341
- {
342
- ...ariaProps,
343
- onPress,
344
- "aria-label": ariaLabel,
345
- // If not interactive, mark as presentation
346
- ...isInteractive ? {} : { "aria-hidden": true }
347
- },
348
- ref
349
- );
350
- const renderSvgContent = () => {
351
- const paths = {
352
- path1: "M12.0053 7.37695C9.45144 7.37695 7.37952 9.44766 7.37952 12C7.37952 14.5523 9.45144 16.623 12.0053 16.623C14.5591 16.623 16.631 14.5523 16.631 12C16.631 9.44766 14.5591 7.37695 12.0053 7.37695ZM12.0053 14.9988C10.3484 14.9988 9.00469 13.6559 9.00469 12C9.00469 10.3441 10.3484 9.00117 12.0053 9.00117C13.6621 9.00117 15.0059 10.3441 15.0059 12C15.0059 13.6559 13.6621 14.9988 12.0053 14.9988Z",
353
- path2: "M16.814 8.27345C17.4084 8.27345 17.8939 7.79181 17.8939 7.19415C17.8939 6.60001 17.4084 6.11485 16.814 6.11485C16.2195 6.11485 15.734 6.59649 15.734 7.19415C15.734 7.78829 16.2159 8.27345 16.814 8.27345Z",
354
- path3: "M12.0053 3C9.56048 3 9.25445 3.01055 8.29412 3.05273C7.33731 3.09492 6.6795 3.24961 6.10963 3.47109C5.51515 3.70312 5.01212 4.00898 4.51261 4.51172C4.00958 5.01094 3.70354 5.51367 3.47137 6.1043C3.24976 6.67734 3.09498 7.33125 3.05277 8.2875C3.01055 9.25078 3 9.55664 3 12C3 14.4434 3.01055 14.7492 3.05277 15.709C3.09498 16.6652 3.24976 17.3227 3.47137 17.8922C3.70354 18.4863 4.00958 18.9891 4.51261 19.4883C5.01212 19.9875 5.51515 20.2969 6.10612 20.5254C6.6795 20.7469 7.33379 20.9016 8.2906 20.9437C9.25093 20.9859 9.55697 20.9965 12.0018 20.9965C14.4465 20.9965 14.7526 20.9859 15.7129 20.9437C16.6697 20.9016 17.3275 20.7469 17.8974 20.5254C18.4884 20.2969 18.9914 19.9875 19.4909 19.4883C19.9904 18.9891 20.3 18.4863 20.5286 17.8957C20.7502 17.3227 20.905 16.6687 20.9472 15.7125C20.9894 14.7527 21 14.4469 21 12.0035C21 9.56016 20.9894 9.2543 20.9472 8.29453C20.905 7.33828 20.7502 6.68086 20.5286 6.11133C20.307 5.51367 20.001 5.01094 19.4979 4.51172C18.9984 4.0125 18.4954 3.70312 17.9044 3.47461C17.3311 3.25312 16.6768 3.09844 15.72 3.05625C14.7561 3.01055 14.4501 3 12.0053 3ZM12.0053 4.6207C14.4114 4.6207 14.6963 4.63125 15.6426 4.67344C16.522 4.71211 16.9969 4.85977 17.3135 4.98281C17.7321 5.14453 18.0346 5.34141 18.3477 5.6543C18.6643 5.9707 18.8577 6.26953 19.0195 6.68789C19.1427 7.0043 19.2904 7.48242 19.3291 8.35781C19.3713 9.30703 19.3819 9.5918 19.3819 11.993C19.3819 14.3977 19.3713 14.6824 19.3291 15.6281C19.2904 16.507 19.1427 16.9816 19.0195 17.298C18.8577 17.7164 18.6607 18.0188 18.3477 18.3316C18.0311 18.648 17.7321 18.8414 17.3135 19.0031C16.9969 19.1262 16.5185 19.2738 15.6426 19.3125C14.6928 19.3547 14.4079 19.3652 12.0053 19.3652C9.59918 19.3652 9.31425 19.3547 8.36799 19.3125C7.48857 19.2738 7.01368 19.1262 6.69709 19.0031C6.27848 18.8414 5.97596 18.6445 5.66289 18.3316C5.3463 18.0152 5.15282 17.7164 4.99101 17.298C4.86789 16.9816 4.72015 16.5035 4.68145 15.6281C4.63924 14.6789 4.62869 14.3941 4.62869 11.993C4.62869 9.58828 4.63924 9.30351 4.68145 8.35781C4.72015 7.47891 4.86789 7.0043 4.99101 6.68789C5.15282 6.26953 5.34981 5.96719 5.66289 5.6543C5.97948 5.33789 6.27848 5.14453 6.69709 4.98281C7.01368 4.85977 7.49209 4.71211 8.36799 4.67344C9.31425 4.63125 9.59918 4.6207 12.0053 4.6207Z"
355
- };
356
- switch (variant) {
357
- case "colored":
358
- return /* @__PURE__ */ jsxs(Fragment, { children: [
359
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
360
- "linearGradient",
361
- {
362
- id: gradientId,
363
- x1: "16",
364
- y1: "3",
365
- x2: "6.5",
366
- y2: "21",
367
- gradientUnits: "userSpaceOnUse",
368
- children: [
369
- /* @__PURE__ */ jsx("stop", { stopColor: "#6E3BF1" }),
370
- /* @__PURE__ */ jsx("stop", { offset: "0.241314", stopColor: "#C128BF" }),
371
- /* @__PURE__ */ jsx("stop", { offset: "0.475694", stopColor: "#EA336B" }),
372
- /* @__PURE__ */ jsx("stop", { offset: "0.715281", stopColor: "#EE8131" }),
373
- /* @__PURE__ */ jsx("stop", { offset: "0.913202", stopColor: "#F8D849" })
374
- ]
375
- }
376
- ) }),
377
- /* @__PURE__ */ jsx(
378
- "path",
379
- {
380
- fillRule: "evenodd",
381
- clipRule: "evenodd",
382
- d: paths.path1,
383
- fill: `url(#${gradientId})`
384
- }
385
- ),
386
- /* @__PURE__ */ jsx("path", { d: paths.path2, fill: `url(#${gradientId})` }),
387
- /* @__PURE__ */ jsx(
388
- "path",
389
- {
390
- fillRule: "evenodd",
391
- clipRule: "evenodd",
392
- d: paths.path3,
393
- fill: `url(#${gradientId})`
394
- }
395
- )
396
- ] });
397
- case "black":
398
- return /* @__PURE__ */ jsxs(Fragment, { children: [
399
- /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path1, fill: "black" }),
400
- /* @__PURE__ */ jsx("path", { d: paths.path2, fill: "black" }),
401
- /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path3, fill: "black" })
402
- ] });
403
- case "white":
404
- return /* @__PURE__ */ jsxs(Fragment, { children: [
405
- /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path1, fill: "white" }),
406
- /* @__PURE__ */ jsx("path", { d: paths.path2, fill: "white" }),
407
- /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path3, fill: "white" })
408
- ] });
409
- default:
410
- return null;
291
+ const isInteractive = !!onClick;
292
+ const ariaAttributes = {
293
+ "aria-label": ariaLabel,
294
+ "aria-hidden": ariaHidden !== void 0 ? ariaHidden : !ariaLabel && !isInteractive,
295
+ role: isInteractive ? "button" : void 0,
296
+ tabIndex: isInteractive ? 0 : void 0
297
+ };
298
+ const handleKeyDown = (event) => {
299
+ if (isInteractive && (event.key === "Enter" || event.key === " ")) {
300
+ event.preventDefault();
301
+ onClick?.();
411
302
  }
412
303
  };
413
- if (!isInteractive) {
414
- return /* @__PURE__ */ jsx("span", { className, "aria-hidden": "true", children: /* @__PURE__ */ jsxs(
415
- "svg",
416
- {
417
- width: size,
418
- height: size,
419
- viewBox: "0 0 24 24",
420
- fill: "none",
421
- xmlns: "http://www.w3.org/2000/svg",
422
- style: { display: "block" },
423
- role: "img",
424
- "aria-label": ariaLabel,
425
- children: [
426
- /* @__PURE__ */ jsx("title", { children: ariaLabel }),
427
- renderSvgContent()
428
- ]
429
- }
430
- ) });
431
- }
432
- return /* @__PURE__ */ jsx(
433
- StyledInstagramIcon,
434
- {
435
- ...buttonProps,
436
- ref,
437
- className,
438
- $size: size,
439
- role: "button",
440
- tabIndex: 0,
441
- children: /* @__PURE__ */ jsxs(
442
- "svg",
304
+ const commonProps = {
305
+ width: size,
306
+ height: size,
307
+ viewBox: "0 0 24 24",
308
+ fill: "none",
309
+ xmlns: "http://www.w3.org/2000/svg",
310
+ className,
311
+ onClick,
312
+ onKeyDown: isInteractive ? handleKeyDown : void 0,
313
+ ...ariaAttributes,
314
+ ...svgProps
315
+ };
316
+ const paths = {
317
+ // Camera lens circle
318
+ path1: "M12.0053 7.37695C9.45144 7.37695 7.37952 9.44766 7.37952 12C7.37952 14.5523 9.45144 16.623 12.0053 16.623C14.5591 16.623 16.631 14.5523 16.631 12C16.631 9.44766 14.5591 7.37695 12.0053 7.37695ZM12.0053 14.9988C10.3484 14.9988 9.00469 13.6559 9.00469 12C9.00469 10.3441 10.3484 9.00117 12.0053 9.00117C13.6621 9.00117 15.0059 10.3441 15.0059 12C15.0059 13.6559 13.6621 14.9988 12.0053 14.9988Z",
319
+ // Flash dot
320
+ path2: "M16.814 8.27345C17.4084 8.27345 17.8939 7.79181 17.8939 7.19415C17.8939 6.60001 17.4084 6.11485 16.814 6.11485C16.2195 6.11485 15.734 6.59649 15.734 7.19415C15.734 7.78829 16.2159 8.27345 16.814 8.27345Z",
321
+ // Outer rounded square
322
+ path3: "M12.0053 3C9.56048 3 9.25445 3.01055 8.29412 3.05273C7.33731 3.09492 6.6795 3.24961 6.10963 3.47109C5.51515 3.70312 5.01212 4.00898 4.51261 4.51172C4.00958 5.01094 3.70354 5.51367 3.47137 6.1043C3.24976 6.67734 3.09498 7.33125 3.05277 8.2875C3.01055 9.25078 3 9.55664 3 12C3 14.4434 3.01055 14.7492 3.05277 15.709C3.09498 16.6652 3.24976 17.3227 3.47137 17.8922C3.70354 18.4863 4.00958 18.9891 4.51261 19.4883C5.01212 19.9875 5.51515 20.2969 6.10612 20.5254C6.6795 20.7469 7.33379 20.9016 8.2906 20.9437C9.25093 20.9859 9.55697 20.9965 12.0018 20.9965C14.4465 20.9965 14.7526 20.9859 15.7129 20.9437C16.6697 20.9016 17.3275 20.7469 17.8974 20.5254C18.4884 20.2969 18.9914 19.9875 19.4909 19.4883C19.9904 18.9891 20.3 18.4863 20.5286 17.8957C20.7502 17.3227 20.905 16.6687 20.9472 15.7125C20.9894 14.7527 21 14.4469 21 12.0035C21 9.56016 20.9894 9.2543 20.9472 8.29453C20.905 7.33828 20.7502 6.68086 20.5286 6.11133C20.307 5.51367 20.001 5.01094 19.4979 4.51172C18.9984 4.0125 18.4954 3.70312 17.9044 3.47461C17.3311 3.25312 16.6768 3.09844 15.72 3.05625C14.7561 3.01055 14.4501 3 12.0053 3ZM12.0053 4.6207C14.4114 4.6207 14.6963 4.63125 15.6426 4.67344C16.522 4.71211 16.9969 4.85977 17.3135 4.98281C17.7321 5.14453 18.0346 5.34141 18.3477 5.6543C18.6643 5.9707 18.8577 6.26953 19.0195 6.68789C19.1427 7.0043 19.2904 7.48242 19.3291 8.35781C19.3713 9.30703 19.3819 9.5918 19.3819 11.993C19.3819 14.3977 19.3713 14.6824 19.3291 15.6281C19.2904 16.507 19.1427 16.9816 19.0195 17.298C18.8577 17.7164 18.6607 18.0188 18.3477 18.3316C18.0311 18.648 17.7321 18.8414 17.3135 19.0031C16.9969 19.1262 16.5185 19.2738 15.6426 19.3125C14.6928 19.3547 14.4079 19.3652 12.0053 19.3652C9.59918 19.3652 9.31425 19.3547 8.36799 19.3125C7.48857 19.2738 7.01368 19.1262 6.69709 19.0031C6.27848 18.8414 5.97596 18.6445 5.66289 18.3316C5.3463 18.0152 5.15282 17.7164 4.99101 17.298C4.86789 16.9816 4.72015 16.5035 4.68145 15.6281C4.63924 14.6789 4.62869 14.3941 4.62869 11.993C4.62869 9.58828 4.63924 9.30351 4.68145 8.35781C4.72015 7.47891 4.86789 7.0043 4.99101 6.68789C5.15282 6.26953 5.34981 5.96719 5.66289 5.6543C5.97948 5.33789 6.27848 5.14453 6.69709 4.98281C7.01368 4.85977 7.49209 4.71211 8.36799 4.67344C9.31425 4.63125 9.59918 4.6207 12.0053 4.6207Z"
323
+ };
324
+ if (variant === "colored") {
325
+ return /* @__PURE__ */ jsxs("svg", { ...commonProps, children: [
326
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
327
+ "linearGradient",
443
328
  {
444
- width: size,
445
- height: size,
446
- viewBox: "0 0 24 24",
447
- fill: "none",
448
- xmlns: "http://www.w3.org/2000/svg",
449
- style: { display: "block" },
450
- role: "img",
451
- "aria-label": ariaLabel,
329
+ id: gradientId,
330
+ x1: "16",
331
+ y1: "3",
332
+ x2: "6.5",
333
+ y2: "21",
334
+ gradientUnits: "userSpaceOnUse",
452
335
  children: [
453
- /* @__PURE__ */ jsx("title", { children: ariaLabel }),
454
- renderSvgContent()
336
+ /* @__PURE__ */ jsx("stop", { stopColor: "#6E3BF1" }),
337
+ /* @__PURE__ */ jsx("stop", { offset: "0.241314", stopColor: "#C128BF" }),
338
+ /* @__PURE__ */ jsx("stop", { offset: "0.475694", stopColor: "#EA336B" }),
339
+ /* @__PURE__ */ jsx("stop", { offset: "0.715281", stopColor: "#EE8131" }),
340
+ /* @__PURE__ */ jsx("stop", { offset: "0.913202", stopColor: "#F8D849" })
455
341
  ]
456
342
  }
457
- )
458
- }
459
- );
343
+ ) }),
344
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path1, fill: `url(#${gradientId})` }),
345
+ /* @__PURE__ */ jsx("path", { d: paths.path2, fill: `url(#${gradientId})` }),
346
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path3, fill: `url(#${gradientId})` })
347
+ ] });
348
+ }
349
+ if (variant === "black") {
350
+ return /* @__PURE__ */ jsxs("svg", { ...commonProps, children: [
351
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path1, fill: "black" }),
352
+ /* @__PURE__ */ jsx("path", { d: paths.path2, fill: "black" }),
353
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path3, fill: "black" })
354
+ ] });
355
+ }
356
+ return /* @__PURE__ */ jsxs("svg", { ...commonProps, children: [
357
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path1, fill: "white" }),
358
+ /* @__PURE__ */ jsx("path", { d: paths.path2, fill: "white" }),
359
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: paths.path3, fill: "white" })
360
+ ] });
460
361
  }
461
362
  InstagramIcon.displayName = "InstagramIcon";
462
363
  var StyledIconWrapper2 = styled.button`