@fanvue/ui 2.20.0 → 2.21.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.
@@ -36,7 +36,7 @@ const Divider = React__namespace.forwardRef(({ label, className, ...props }, ref
36
36
  {
37
37
  decorative: true,
38
38
  orientation: "horizontal",
39
- className: "h-px flex-1 bg-neutral-alphas-200",
39
+ className: "h-px flex-1 bg-border-primary",
40
40
  ...props
41
41
  }
42
42
  ),
@@ -46,7 +46,7 @@ const Divider = React__namespace.forwardRef(({ label, className, ...props }, ref
46
46
  {
47
47
  decorative: true,
48
48
  orientation: "horizontal",
49
- className: "h-px flex-1 bg-neutral-alphas-200"
49
+ className: "h-px flex-1 bg-border-primary"
50
50
  }
51
51
  )
52
52
  ]
@@ -59,7 +59,7 @@ const Divider = React__namespace.forwardRef(({ label, className, ...props }, ref
59
59
  ref,
60
60
  decorative: true,
61
61
  orientation: "horizontal",
62
- className: cn.cn(`mx-auto my-2 h-px w-full bg-neutral-alphas-200`, className),
62
+ className: cn.cn(`mx-auto my-2 h-px w-full bg-border-primary`, className),
63
63
  ...props
64
64
  }
65
65
  );
@@ -1 +1 @@
1
- {"version":3,"file":"Divider.cjs","sources":["../../../../src/components/Divider/Divider.tsx"],"sourcesContent":["import * as SeparatorPrimitive from \"@radix-ui/react-separator\";\nimport * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\n\n/** Orientation of the divider line. */\nexport type DividerOrientation = \"horizontal\" | \"vertical\";\n\nexport interface DividerProps\n extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {\n /** Optional centred label text. When provided, the divider renders as two lines with the label between them. */\n label?: string;\n}\n\n/**\n * A horizontal separator used to divide content sections. Optionally displays a\n * centred text label between two lines.\n *\n * @example\n * ```tsx\n * <Divider />\n * <Divider label=\"or\" />\n * ```\n */\nexport const Divider = React.forwardRef<\n React.ElementRef<typeof SeparatorPrimitive.Root>,\n DividerProps\n>(({ label, className, ...props }, ref) => {\n if (label !== undefined) {\n return (\n <div\n ref={ref}\n className={cn(`my-2 flex w-full items-center justify-center gap-2`, className)}\n >\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-neutral-alphas-200\"\n {...props}\n />\n <span className=\"typography-regular-body-md shrink-0 text-content-primary\">{label}</span>\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-neutral-alphas-200\"\n />\n </div>\n );\n }\n\n return (\n <SeparatorPrimitive.Root\n ref={ref}\n decorative\n orientation=\"horizontal\"\n className={cn(`mx-auto my-2 h-px w-full bg-neutral-alphas-200`, className)}\n {...props}\n />\n );\n});\n\nDivider.displayName = \"Divider\";\n"],"names":["React","jsxs","cn","jsx","SeparatorPrimitive"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAuBO,MAAM,UAAUA,iBAAM,WAG3B,CAAC,EAAE,OAAO,WAAW,GAAG,MAAA,GAAS,QAAQ;AACzC,MAAI,UAAU,QAAW;AACvB,WACEC,2BAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,WAAWC,GAAAA,GAAG,sDAAsD,SAAS;AAAA,QAE7E,UAAA;AAAA,UAAAC,2BAAAA;AAAAA,YAACC,8BAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,cACT,GAAG;AAAA,YAAA;AAAA,UAAA;AAAA,UAEND,2BAAAA,IAAC,QAAA,EAAK,WAAU,4DAA4D,UAAA,OAAM;AAAA,UAClFA,2BAAAA;AAAAA,YAACC,8BAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,YAAA;AAAA,UAAA;AAAA,QACZ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AAEA,SACED,2BAAAA;AAAAA,IAACC,8BAAmB;AAAA,IAAnB;AAAA,MACC;AAAA,MACA,YAAU;AAAA,MACV,aAAY;AAAA,MACZ,WAAWF,GAAAA,GAAG,kDAAkD,SAAS;AAAA,MACxE,GAAG;AAAA,IAAA;AAAA,EAAA;AAGV,CAAC;AAED,QAAQ,cAAc;;"}
1
+ {"version":3,"file":"Divider.cjs","sources":["../../../../src/components/Divider/Divider.tsx"],"sourcesContent":["import * as SeparatorPrimitive from \"@radix-ui/react-separator\";\nimport * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\n\n/** Orientation of the divider line. */\nexport type DividerOrientation = \"horizontal\" | \"vertical\";\n\nexport interface DividerProps\n extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {\n /** Optional centred label text. When provided, the divider renders as two lines with the label between them. */\n label?: string;\n}\n\n/**\n * A horizontal separator used to divide content sections. Optionally displays a\n * centred text label between two lines.\n *\n * @example\n * ```tsx\n * <Divider />\n * <Divider label=\"or\" />\n * ```\n */\nexport const Divider = React.forwardRef<\n React.ElementRef<typeof SeparatorPrimitive.Root>,\n DividerProps\n>(({ label, className, ...props }, ref) => {\n if (label !== undefined) {\n return (\n <div\n ref={ref}\n className={cn(`my-2 flex w-full items-center justify-center gap-2`, className)}\n >\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-border-primary\"\n {...props}\n />\n <span className=\"typography-regular-body-md shrink-0 text-content-primary\">{label}</span>\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-border-primary\"\n />\n </div>\n );\n }\n\n return (\n <SeparatorPrimitive.Root\n ref={ref}\n decorative\n orientation=\"horizontal\"\n className={cn(`mx-auto my-2 h-px w-full bg-border-primary`, className)}\n {...props}\n />\n );\n});\n\nDivider.displayName = \"Divider\";\n"],"names":["React","jsxs","cn","jsx","SeparatorPrimitive"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAuBO,MAAM,UAAUA,iBAAM,WAG3B,CAAC,EAAE,OAAO,WAAW,GAAG,MAAA,GAAS,QAAQ;AACzC,MAAI,UAAU,QAAW;AACvB,WACEC,2BAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,WAAWC,GAAAA,GAAG,sDAAsD,SAAS;AAAA,QAE7E,UAAA;AAAA,UAAAC,2BAAAA;AAAAA,YAACC,8BAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,cACT,GAAG;AAAA,YAAA;AAAA,UAAA;AAAA,UAEND,2BAAAA,IAAC,QAAA,EAAK,WAAU,4DAA4D,UAAA,OAAM;AAAA,UAClFA,2BAAAA;AAAAA,YAACC,8BAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,YAAA;AAAA,UAAA;AAAA,QACZ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AAEA,SACED,2BAAAA;AAAAA,IAACC,8BAAmB;AAAA,IAAnB;AAAA,MACC;AAAA,MACA,YAAU;AAAA,MACV,aAAY;AAAA,MACZ,WAAWF,GAAAA,GAAG,8CAA8C,SAAS;AAAA,MACpE,GAAG;AAAA,IAAA;AAAA,EAAA;AAGV,CAAC;AAED,QAAQ,cAAc;;"}
@@ -0,0 +1,92 @@
1
+ "use client";
2
+ "use strict";
3
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
4
+ const jsxRuntime = require("react/jsx-runtime");
5
+ const React = require("react");
6
+ const BaseIcon = require("./BaseIcon.cjs");
7
+ function _interopNamespaceDefault(e) {
8
+ const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
9
+ if (e) {
10
+ for (const k in e) {
11
+ if (k !== "default") {
12
+ const d = Object.getOwnPropertyDescriptor(e, k);
13
+ Object.defineProperty(n, k, d.get ? d : {
14
+ enumerable: true,
15
+ get: () => e[k]
16
+ });
17
+ }
18
+ }
19
+ }
20
+ n.default = e;
21
+ return Object.freeze(n);
22
+ }
23
+ const React__namespace = /* @__PURE__ */ _interopNamespaceDefault(React);
24
+ const VARIANTS = {
25
+ 16: {
26
+ outlined: [
27
+ {
28
+ d: "M5.893 5.94A2.396 2.396 0 0 1 3.5 3.548a2.396 2.396 0 0 1 2.393-2.393 2.396 2.396 0 0 1 2.394 2.393 2.4 2.4 0 0 1-2.394 2.394m0-3.793c-.766 0-1.393.627-1.393 1.394s.627 1.393 1.393 1.393c.767 0 1.394-.627 1.394-1.393 0-.767-.627-1.394-1.394-1.394M3.78 12.714a.5.5 0 0 1-.22-.054l-.947-.473q-.351-.182-.533-.533a1.2 1.2 0 0 1-.12-.74l.373-2.247a2.3 2.3 0 0 1 .774-1.353 2.25 2.25 0 0 1 1.46-.534h2.666c.534 0 1.047.187 1.454.534.406.346.68.826.766 1.353l.374 2.24c.053.24.013.513-.107.747s-.32.426-.56.533l-.92.467a.5.5 0 1 1-.453-.894l.94-.473c.053-.027.086-.053.1-.087a.15.15 0 0 0 .013-.106l-.38-2.26a1.244 1.244 0 0 0-1.24-1.047H4.553c-.3 0-.586.107-.813.3s-.38.46-.433.753l-.374 2.24a.21.21 0 0 0 .114.22l.946.474a.5.5 0 0 1 .22.673.49.49 0 0 1-.433.267"
29
+ },
30
+ {
31
+ d: "M5.087 14.854a1.18 1.18 0 0 1-.814-.353 1.26 1.26 0 0 1-.353-.794l-.293-2.853a.5.5 0 0 1 .446-.547c.28-.033.52.174.547.447l.293 2.88c.007.08.027.127.06.16q.052.05.134.06H6.62c.027 0 .073-.02.107-.06a.23.23 0 0 0 .06-.133l.286-2.907a.496.496 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.287 2.88c-.013.273-.14.553-.347.767a1.23 1.23 0 0 1-.793.353zm5.026-8.914a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.367 0 .727-.146.987-.406a1.404 1.404 0 0 0 0-1.973c-.26-.26-.62-.407-.987-.407a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.627 0 1.247.253 1.694.7.453.453.7 1.053.7 1.693s-.247 1.24-.7 1.694c-.447.44-1.067.7-1.694.7m2.107 6.773a.49.49 0 0 1-.447-.28.497.497 0 0 1 .227-.674l.947-.473a.24.24 0 0 0 .086-.093.2.2 0 0 0 .02-.127l-.373-2.233c-.047-.294-.2-.56-.427-.754a1.25 1.25 0 0 0-.813-.3h-.627a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.627c.533 0 1.047.187 1.453.534.407.346.68.826.774 1.353l.373 2.24c.04.26 0 .513-.12.747-.114.226-.3.413-.527.526l-.953.474a.44.44 0 0 1-.22.06"
32
+ },
33
+ {
34
+ d: "M10.913 14.82h-.8a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.767c.047 0 .073 0 .093-.007.02-.006.04-.02.054-.033l.04-.087.013-.086.293-2.88a.5.5 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.294 2.88c0 .113-.027.266-.093.413a1.15 1.15 0 0 1-.66.633c-.133.04-.267.067-.407.067"
35
+ }
36
+ ],
37
+ filled: [
38
+ {
39
+ d: "M12.486 3.494a2.355 2.355 0 0 1-2.533 2.54 2.27 2.27 0 0 1-1.193-.447.133.133 0 0 1-.034-.173c.36-.6.527-1.293.474-2a3.34 3.34 0 0 0-.474-1.453.133.133 0 0 1 .034-.174 2.32 2.32 0 0 1 1.573-.446 2.355 2.355 0 0 1 2.153 2.153m.847 8.606-.387.194-.526.266a.5.5 0 0 1-.24.054l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5c-.213 0-.413-.053-.586-.153a.26.26 0 0 1-.114-.32c.054-.16.094-.334.107-.514l.027-.206a.29.29 0 0 1 .146-.214l.154-.073.38-.193c.86-.407 1.353-1.367 1.18-2.334l-.354-2.166a3.14 3.14 0 0 0-.646-1.467c-.067-.087-.007-.22.1-.22h1.64a2.21 2.21 0 0 1 2.193 1.853l.36 2.18c.1.52-.16 1.034-.64 1.26M8 4.66a2.3 2.3 0 0 1-1.133 1.147 2.2 2.2 0 0 1-1.007.233c-.067 0-.127-.006-.194-.006-.3-.027-.58-.107-.833-.227a2.37 2.37 0 0 1-1.32-1.933 2.35 2.35 0 0 1 2.347-2.54 2.38 2.38 0 0 1 2.147 1.38A2.35 2.35 0 0 1 8 4.66"
40
+ },
41
+ {
42
+ d: "m9.053 12.1-.387.194-.526.266a.4.4 0 0 1-.14.04c-.034.014-.067.014-.1.014l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5a1.194 1.194 0 0 1-1.186-1.08l-.1-.973h-.014a.6.6 0 0 1-.233-.054l-.907-.46c-.48-.226-.74-.74-.646-1.26l.36-2.18a2.21 2.21 0 0 1 2.193-1.853h2.573q.462.002.854.173a2.19 2.19 0 0 1 1.34 1.68l.36 2.18a1.16 1.16 0 0 1-.647 1.26"
43
+ }
44
+ ]
45
+ },
46
+ 24: {
47
+ outlined: [
48
+ {
49
+ d: "M8.84 8.91c-1.98 0-3.59-1.61-3.59-3.59s1.61-3.59 3.59-3.59 3.59 1.61 3.59 3.59a3.6 3.6 0 0 1-3.59 3.59m0-5.69c-1.15 0-2.09.94-2.09 2.09S7.69 7.4 8.84 7.4s2.09-.94 2.09-2.09-.94-2.09-2.09-2.09M5.67 19.07c-.11 0-.23-.03-.33-.08l-1.42-.71a1.82 1.82 0 0 1-.8-.8c-.18-.34-.24-.73-.18-1.11L3.5 13c.14-.79.55-1.51 1.16-2.03s1.39-.8 2.19-.8h4c.8 0 1.57.28 2.18.8s1.02 1.24 1.15 2.03l.56 3.36c.08.36.02.77-.16 1.12s-.48.64-.84.8l-1.38.7a.75.75 0 1 1-.68-1.34l1.41-.71c.08-.04.13-.08.15-.13.03-.05.03-.11.02-.16l-.57-3.39a1.866 1.866 0 0 0-1.86-1.57h-4c-.45 0-.88.16-1.22.45s-.57.69-.65 1.13l-.56 3.36a.32.32 0 0 0 .17.33l1.42.71c.37.19.52.64.33 1.01-.11.24-.38.4-.65.4"
50
+ },
51
+ {
52
+ d: "M7.63 22.28c-.49-.02-.91-.21-1.22-.53s-.5-.74-.53-1.19l-.44-4.28a.75.75 0 0 1 .67-.82c.42-.05.78.26.82.67l.44 4.32c.01.12.04.19.09.24s.12.08.2.09h2.27c.04 0 .11-.03.16-.09.05-.05.08-.12.09-.2l.43-4.36c.04-.41.41-.72.82-.67.41.04.71.41.67.82l-.43 4.32c-.02.41-.21.83-.52 1.15-.32.32-.74.5-1.19.53zm7.54-13.37c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.55 0 1.09-.22 1.48-.61s.61-.93.61-1.48c0-.56-.22-1.08-.61-1.48-.39-.39-.93-.61-1.48-.61-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.94 0 1.87.38 2.54 1.05.68.68 1.05 1.58 1.05 2.54s-.37 1.86-1.05 2.54c-.67.66-1.6 1.05-2.54 1.05m3.16 10.16c-.28 0-.54-.15-.67-.42a.745.745 0 0 1 .34-1.01l1.42-.71c.05-.03.1-.08.13-.14a.32.32 0 0 0 .03-.19l-.56-3.35c-.07-.44-.3-.84-.64-1.13s-.77-.45-1.22-.45h-.94c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.94c.8 0 1.57.28 2.18.8s1.02 1.24 1.16 2.03l.56 3.36c.06.39 0 .77-.18 1.12-.17.34-.45.62-.79.79l-1.43.71c-.1.06-.22.09-.33.09"
53
+ },
54
+ {
55
+ d: "M16.37 22.23h-1.2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.15c.07 0 .11 0 .14-.01s.06-.03.08-.05l.06-.13.02-.13.44-4.32a.75.75 0 0 1 .82-.67c.41.04.71.41.67.82l-.44 4.32c0 .17-.04.4-.14.62-.09.21-.23.41-.4.58-.17.16-.37.29-.59.37-.2.06-.4.1-.61.1"
56
+ }
57
+ ],
58
+ filled: [
59
+ {
60
+ d: "M18.73 5.24a3.532 3.532 0 0 1-3.8 3.81c-.67-.05-1.28-.29-1.79-.67a.2.2 0 0 1-.05-.26c.54-.9.79-1.94.71-3-.06-.79-.32-1.52-.71-2.18a.2.2 0 0 1 .05-.26c.65-.48 1.47-.74 2.36-.67 1.71.13 3.1 1.52 3.23 3.23M20 18.15l-.58.29-.79.4c-.12.06-.24.08-.36.08l-.15 1.46c-.09.92-.86 1.62-1.79 1.62h-2.25c-.32 0-.62-.08-.88-.23a.39.39 0 0 1-.17-.48c.08-.24.14-.5.16-.77l.04-.31c.02-.14.1-.25.22-.32l.23-.11.57-.29c1.29-.61 2.03-2.05 1.77-3.5l-.53-3.25c-.13-.81-.46-1.56-.97-2.2-.1-.13-.01-.33.15-.33h2.46c.88 0 1.68.33 2.28.89.52.48.89 1.14 1.01 1.89l.54 3.27c.15.78-.24 1.55-.96 1.89M12 6.99a3.47 3.47 0 0 1-1.7 1.72c-.46.23-.97.35-1.51.35-.1 0-.19-.01-.29-.01-.45-.04-.87-.16-1.25-.34a3.55 3.55 0 0 1-1.98-2.9A3.524 3.524 0 0 1 8.79 2c.09 0 .19 0 .28.01 1.3.1 2.41.92 2.94 2.06A3.53 3.53 0 0 1 12 6.99"
61
+ },
62
+ {
63
+ d: "m13.58 18.15-.58.29-.79.4c-.07.03-.14.06-.21.06-.05.02-.1.02-.15.02l-.15 1.46c-.09.92-.86 1.62-1.79 1.62H7.66c-.92 0-1.69-.7-1.78-1.62l-.15-1.46h-.02a.9.9 0 0 1-.35-.08L4 18.15a1.74 1.74 0 0 1-.97-1.89l.54-3.27a3.31 3.31 0 0 1 3.29-2.78h3.86c.46 0 .89.09 1.28.26.37.14.71.36 1 .63.52.48.89 1.14 1.01 1.89l.54 3.27c.14.78-.25 1.55-.97 1.89"
64
+ }
65
+ ]
66
+ },
67
+ 32: {
68
+ outlined: [
69
+ {
70
+ d: "M11.787 11.88A4.79 4.79 0 0 1 7 7.094a4.79 4.79 0 0 1 4.787-4.787 4.79 4.79 0 0 1 4.786 4.787c0 2.626-2.146 4.786-4.786 4.786m0-7.586A2.794 2.794 0 0 0 9 7.08a2.794 2.794 0 0 0 2.787 2.787 2.794 2.794 0 0 0 2.787-2.787 2.794 2.794 0 0 0-2.787-2.786M7.56 25.426c-.147 0-.307-.04-.44-.106l-1.893-.947c-.467-.24-.827-.6-1.067-1.067a2.37 2.37 0 0 1-.24-1.48l.747-4.493a4.62 4.62 0 0 1 1.546-2.707 4.5 4.5 0 0 1 2.92-1.066h5.334c1.066 0 2.093.373 2.906 1.066a4.53 4.53 0 0 1 1.534 2.707l.746 4.48c.107.48.027 1.027-.213 1.493a2.35 2.35 0 0 1-1.12 1.067l-1.84.933a1 1 0 0 1-1.347-.44 1 1 0 0 1 .44-1.346l1.88-.947c.107-.053.174-.107.2-.173a.3.3 0 0 0 .027-.214l-.76-4.52a2.49 2.49 0 0 0-2.48-2.093H9.107a2.5 2.5 0 0 0-1.627.6c-.453.387-.76.92-.867 1.507l-.746 4.48a.43.43 0 0 0 .226.44l1.894.946a1 1 0 0 1 .44 1.347c-.147.32-.507.533-.867.533"
71
+ },
72
+ {
73
+ d: "M10.174 29.707c-.654-.027-1.214-.28-1.627-.707a2.52 2.52 0 0 1-.707-1.586l-.587-5.707a1 1 0 0 1 .894-1.093.985.985 0 0 1 1.093.893l.587 5.76c.013.16.053.253.12.32a.45.45 0 0 0 .267.12h3.026c.054 0 .147-.04.213-.12a.45.45 0 0 0 .12-.267l.574-5.813a.99.99 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.573 5.76c-.026.547-.28 1.107-.693 1.533a2.45 2.45 0 0 1-1.587.707zM20.227 11.88c-.547 0-1-.453-1-1s.453-1 1-1c.733 0 1.453-.293 1.973-.813s.813-1.24.813-1.973c0-.747-.293-1.44-.813-1.974a2.8 2.8 0 0 0-1.973-.813c-.547 0-1-.453-1-1s.453-1 1-1c1.253 0 2.493.507 3.386 1.4a4.75 4.75 0 0 1 1.4 3.387 4.75 4.75 0 0 1-1.4 3.386 4.9 4.9 0 0 1-3.386 1.4m4.213 13.546c-.374 0-.72-.2-.893-.56A.994.994 0 0 1 24 23.52l1.893-.947a.47.47 0 0 0 .174-.187.43.43 0 0 0 .04-.253l-.747-4.467a2.5 2.5 0 0 0-.854-1.506 2.5 2.5 0 0 0-1.626-.6h-1.253c-.547 0-1-.454-1-1 0-.547.453-1 1-1h1.253c1.067 0 2.093.373 2.906 1.066a4.62 4.62 0 0 1 1.547 2.707l.747 4.48c.08.52 0 1.027-.24 1.493-.227.454-.6.827-1.054 1.054l-1.906.946a.9.9 0 0 1-.44.12"
74
+ },
75
+ {
76
+ d: "M21.827 29.64h-1.6c-.547 0-1-.454-1-1 0-.548.453-1 1-1h1.533c.093 0 .146 0 .186-.014s.08-.04.107-.067l.08-.173.027-.174.587-5.76a1 1 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.586 5.76c0 .227-.054.534-.187.827a2.5 2.5 0 0 1-.534.773 2.3 2.3 0 0 1-.786.494c-.267.08-.533.133-.813.133"
77
+ }
78
+ ],
79
+ filled: [
80
+ {
81
+ d: "M24.974 6.987a4.71 4.71 0 0 1-5.067 5.08 4.54 4.54 0 0 1-2.387-.894.27.27 0 0 1-.066-.346 6.76 6.76 0 0 0 .947-4c-.08-1.054-.427-2.027-.947-2.907a.27.27 0 0 1 .066-.347 4.64 4.64 0 0 1 3.147-.893c2.28.173 4.133 2.027 4.307 4.307M26.667 24.2l-.773.386-1.054.534c-.16.08-.32.106-.48.106l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3c-.426 0-.826-.107-1.173-.307a.52.52 0 0 1-.226-.64 4.3 4.3 0 0 0 .213-1.026l.053-.414a.58.58 0 0 1 .294-.426l.306-.147.76-.387c1.72-.813 2.707-2.733 2.36-4.666l-.706-4.334a6.3 6.3 0 0 0-1.294-2.933c-.133-.173-.013-.44.2-.44h3.28c1.174 0 2.24.44 3.04 1.187a4.37 4.37 0 0 1 1.347 2.52l.72 4.36c.2 1.04-.32 2.066-1.28 2.52M16 9.32a4.63 4.63 0 0 1-2.266 2.293 4.5 4.5 0 0 1-2.013.467c-.134 0-.254-.014-.387-.014a4.9 4.9 0 0 1-1.667-.453 4.74 4.74 0 0 1-2.64-3.867 4.7 4.7 0 0 1 4.694-5.08c.12 0 .253 0 .373.014 1.733.133 3.213 1.226 3.92 2.746.213.494.36 1.014.4 1.56a4.7 4.7 0 0 1-.413 2.334"
82
+ },
83
+ {
84
+ d: "m18.107 24.2-.773.386-1.053.534c-.094.04-.187.08-.28.08a.5.5 0 0 1-.2.026l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3a2.39 2.39 0 0 1-2.373-2.16l-.2-1.947h-.027a1.2 1.2 0 0 1-.467-.106l-1.813-.92a2.32 2.32 0 0 1-1.293-2.52l.72-4.36a4.42 4.42 0 0 1 4.386-3.707h5.147c.613 0 1.186.12 1.707.347a4.1 4.1 0 0 1 1.333.84 4.37 4.37 0 0 1 1.347 2.52l.72 4.36a2.32 2.32 0 0 1-1.294 2.52"
85
+ }
86
+ ]
87
+ }
88
+ };
89
+ const AffiliatesIcon = React__namespace.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntime.jsx(BaseIcon.BaseIcon, { ref, variants: VARIANTS, ...props }));
90
+ AffiliatesIcon.displayName = "AffiliatesIcon";
91
+ exports.AffiliatesIcon = AffiliatesIcon;
92
+ //# sourceMappingURL=AffiliatesIcon.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AffiliatesIcon.cjs","sources":["../../../../src/components/Icons/AffiliatesIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M5.893 5.94A2.396 2.396 0 0 1 3.5 3.548a2.396 2.396 0 0 1 2.393-2.393 2.396 2.396 0 0 1 2.394 2.393 2.4 2.4 0 0 1-2.394 2.394m0-3.793c-.766 0-1.393.627-1.393 1.394s.627 1.393 1.393 1.393c.767 0 1.394-.627 1.394-1.393 0-.767-.627-1.394-1.394-1.394M3.78 12.714a.5.5 0 0 1-.22-.054l-.947-.473q-.351-.182-.533-.533a1.2 1.2 0 0 1-.12-.74l.373-2.247a2.3 2.3 0 0 1 .774-1.353 2.25 2.25 0 0 1 1.46-.534h2.666c.534 0 1.047.187 1.454.534.406.346.68.826.766 1.353l.374 2.24c.053.24.013.513-.107.747s-.32.426-.56.533l-.92.467a.5.5 0 1 1-.453-.894l.94-.473c.053-.027.086-.053.1-.087a.15.15 0 0 0 .013-.106l-.38-2.26a1.244 1.244 0 0 0-1.24-1.047H4.553c-.3 0-.586.107-.813.3s-.38.46-.433.753l-.374 2.24a.21.21 0 0 0 .114.22l.946.474a.5.5 0 0 1 .22.673.49.49 0 0 1-.433.267\",\n },\n {\n d: \"M5.087 14.854a1.18 1.18 0 0 1-.814-.353 1.26 1.26 0 0 1-.353-.794l-.293-2.853a.5.5 0 0 1 .446-.547c.28-.033.52.174.547.447l.293 2.88c.007.08.027.127.06.16q.052.05.134.06H6.62c.027 0 .073-.02.107-.06a.23.23 0 0 0 .06-.133l.286-2.907a.496.496 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.287 2.88c-.013.273-.14.553-.347.767a1.23 1.23 0 0 1-.793.353zm5.026-8.914a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.367 0 .727-.146.987-.406a1.404 1.404 0 0 0 0-1.973c-.26-.26-.62-.407-.987-.407a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.627 0 1.247.253 1.694.7.453.453.7 1.053.7 1.693s-.247 1.24-.7 1.694c-.447.44-1.067.7-1.694.7m2.107 6.773a.49.49 0 0 1-.447-.28.497.497 0 0 1 .227-.674l.947-.473a.24.24 0 0 0 .086-.093.2.2 0 0 0 .02-.127l-.373-2.233c-.047-.294-.2-.56-.427-.754a1.25 1.25 0 0 0-.813-.3h-.627a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.627c.533 0 1.047.187 1.453.534.407.346.68.826.774 1.353l.373 2.24c.04.26 0 .513-.12.747-.114.226-.3.413-.527.526l-.953.474a.44.44 0 0 1-.22.06\",\n },\n {\n d: \"M10.913 14.82h-.8a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.767c.047 0 .073 0 .093-.007.02-.006.04-.02.054-.033l.04-.087.013-.086.293-2.88a.5.5 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.294 2.88c0 .113-.027.266-.093.413a1.15 1.15 0 0 1-.66.633c-.133.04-.267.067-.407.067\",\n },\n ],\n filled: [\n {\n d: \"M12.486 3.494a2.355 2.355 0 0 1-2.533 2.54 2.27 2.27 0 0 1-1.193-.447.133.133 0 0 1-.034-.173c.36-.6.527-1.293.474-2a3.34 3.34 0 0 0-.474-1.453.133.133 0 0 1 .034-.174 2.32 2.32 0 0 1 1.573-.446 2.355 2.355 0 0 1 2.153 2.153m.847 8.606-.387.194-.526.266a.5.5 0 0 1-.24.054l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5c-.213 0-.413-.053-.586-.153a.26.26 0 0 1-.114-.32c.054-.16.094-.334.107-.514l.027-.206a.29.29 0 0 1 .146-.214l.154-.073.38-.193c.86-.407 1.353-1.367 1.18-2.334l-.354-2.166a3.14 3.14 0 0 0-.646-1.467c-.067-.087-.007-.22.1-.22h1.64a2.21 2.21 0 0 1 2.193 1.853l.36 2.18c.1.52-.16 1.034-.64 1.26M8 4.66a2.3 2.3 0 0 1-1.133 1.147 2.2 2.2 0 0 1-1.007.233c-.067 0-.127-.006-.194-.006-.3-.027-.58-.107-.833-.227a2.37 2.37 0 0 1-1.32-1.933 2.35 2.35 0 0 1 2.347-2.54 2.38 2.38 0 0 1 2.147 1.38A2.35 2.35 0 0 1 8 4.66\",\n },\n {\n d: \"m9.053 12.1-.387.194-.526.266a.4.4 0 0 1-.14.04c-.034.014-.067.014-.1.014l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5a1.194 1.194 0 0 1-1.186-1.08l-.1-.973h-.014a.6.6 0 0 1-.233-.054l-.907-.46c-.48-.226-.74-.74-.646-1.26l.36-2.18a2.21 2.21 0 0 1 2.193-1.853h2.573q.462.002.854.173a2.19 2.19 0 0 1 1.34 1.68l.36 2.18a1.16 1.16 0 0 1-.647 1.26\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M8.84 8.91c-1.98 0-3.59-1.61-3.59-3.59s1.61-3.59 3.59-3.59 3.59 1.61 3.59 3.59a3.6 3.6 0 0 1-3.59 3.59m0-5.69c-1.15 0-2.09.94-2.09 2.09S7.69 7.4 8.84 7.4s2.09-.94 2.09-2.09-.94-2.09-2.09-2.09M5.67 19.07c-.11 0-.23-.03-.33-.08l-1.42-.71a1.82 1.82 0 0 1-.8-.8c-.18-.34-.24-.73-.18-1.11L3.5 13c.14-.79.55-1.51 1.16-2.03s1.39-.8 2.19-.8h4c.8 0 1.57.28 2.18.8s1.02 1.24 1.15 2.03l.56 3.36c.08.36.02.77-.16 1.12s-.48.64-.84.8l-1.38.7a.75.75 0 1 1-.68-1.34l1.41-.71c.08-.04.13-.08.15-.13.03-.05.03-.11.02-.16l-.57-3.39a1.866 1.866 0 0 0-1.86-1.57h-4c-.45 0-.88.16-1.22.45s-.57.69-.65 1.13l-.56 3.36a.32.32 0 0 0 .17.33l1.42.71c.37.19.52.64.33 1.01-.11.24-.38.4-.65.4\",\n },\n {\n d: \"M7.63 22.28c-.49-.02-.91-.21-1.22-.53s-.5-.74-.53-1.19l-.44-4.28a.75.75 0 0 1 .67-.82c.42-.05.78.26.82.67l.44 4.32c.01.12.04.19.09.24s.12.08.2.09h2.27c.04 0 .11-.03.16-.09.05-.05.08-.12.09-.2l.43-4.36c.04-.41.41-.72.82-.67.41.04.71.41.67.82l-.43 4.32c-.02.41-.21.83-.52 1.15-.32.32-.74.5-1.19.53zm7.54-13.37c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.55 0 1.09-.22 1.48-.61s.61-.93.61-1.48c0-.56-.22-1.08-.61-1.48-.39-.39-.93-.61-1.48-.61-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.94 0 1.87.38 2.54 1.05.68.68 1.05 1.58 1.05 2.54s-.37 1.86-1.05 2.54c-.67.66-1.6 1.05-2.54 1.05m3.16 10.16c-.28 0-.54-.15-.67-.42a.745.745 0 0 1 .34-1.01l1.42-.71c.05-.03.1-.08.13-.14a.32.32 0 0 0 .03-.19l-.56-3.35c-.07-.44-.3-.84-.64-1.13s-.77-.45-1.22-.45h-.94c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.94c.8 0 1.57.28 2.18.8s1.02 1.24 1.16 2.03l.56 3.36c.06.39 0 .77-.18 1.12-.17.34-.45.62-.79.79l-1.43.71c-.1.06-.22.09-.33.09\",\n },\n {\n d: \"M16.37 22.23h-1.2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.15c.07 0 .11 0 .14-.01s.06-.03.08-.05l.06-.13.02-.13.44-4.32a.75.75 0 0 1 .82-.67c.41.04.71.41.67.82l-.44 4.32c0 .17-.04.4-.14.62-.09.21-.23.41-.4.58-.17.16-.37.29-.59.37-.2.06-.4.1-.61.1\",\n },\n ],\n filled: [\n {\n d: \"M18.73 5.24a3.532 3.532 0 0 1-3.8 3.81c-.67-.05-1.28-.29-1.79-.67a.2.2 0 0 1-.05-.26c.54-.9.79-1.94.71-3-.06-.79-.32-1.52-.71-2.18a.2.2 0 0 1 .05-.26c.65-.48 1.47-.74 2.36-.67 1.71.13 3.1 1.52 3.23 3.23M20 18.15l-.58.29-.79.4c-.12.06-.24.08-.36.08l-.15 1.46c-.09.92-.86 1.62-1.79 1.62h-2.25c-.32 0-.62-.08-.88-.23a.39.39 0 0 1-.17-.48c.08-.24.14-.5.16-.77l.04-.31c.02-.14.1-.25.22-.32l.23-.11.57-.29c1.29-.61 2.03-2.05 1.77-3.5l-.53-3.25c-.13-.81-.46-1.56-.97-2.2-.1-.13-.01-.33.15-.33h2.46c.88 0 1.68.33 2.28.89.52.48.89 1.14 1.01 1.89l.54 3.27c.15.78-.24 1.55-.96 1.89M12 6.99a3.47 3.47 0 0 1-1.7 1.72c-.46.23-.97.35-1.51.35-.1 0-.19-.01-.29-.01-.45-.04-.87-.16-1.25-.34a3.55 3.55 0 0 1-1.98-2.9A3.524 3.524 0 0 1 8.79 2c.09 0 .19 0 .28.01 1.3.1 2.41.92 2.94 2.06A3.53 3.53 0 0 1 12 6.99\",\n },\n {\n d: \"m13.58 18.15-.58.29-.79.4c-.07.03-.14.06-.21.06-.05.02-.1.02-.15.02l-.15 1.46c-.09.92-.86 1.62-1.79 1.62H7.66c-.92 0-1.69-.7-1.78-1.62l-.15-1.46h-.02a.9.9 0 0 1-.35-.08L4 18.15a1.74 1.74 0 0 1-.97-1.89l.54-3.27a3.31 3.31 0 0 1 3.29-2.78h3.86c.46 0 .89.09 1.28.26.37.14.71.36 1 .63.52.48.89 1.14 1.01 1.89l.54 3.27c.14.78-.25 1.55-.97 1.89\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M11.787 11.88A4.79 4.79 0 0 1 7 7.094a4.79 4.79 0 0 1 4.787-4.787 4.79 4.79 0 0 1 4.786 4.787c0 2.626-2.146 4.786-4.786 4.786m0-7.586A2.794 2.794 0 0 0 9 7.08a2.794 2.794 0 0 0 2.787 2.787 2.794 2.794 0 0 0 2.787-2.787 2.794 2.794 0 0 0-2.787-2.786M7.56 25.426c-.147 0-.307-.04-.44-.106l-1.893-.947c-.467-.24-.827-.6-1.067-1.067a2.37 2.37 0 0 1-.24-1.48l.747-4.493a4.62 4.62 0 0 1 1.546-2.707 4.5 4.5 0 0 1 2.92-1.066h5.334c1.066 0 2.093.373 2.906 1.066a4.53 4.53 0 0 1 1.534 2.707l.746 4.48c.107.48.027 1.027-.213 1.493a2.35 2.35 0 0 1-1.12 1.067l-1.84.933a1 1 0 0 1-1.347-.44 1 1 0 0 1 .44-1.346l1.88-.947c.107-.053.174-.107.2-.173a.3.3 0 0 0 .027-.214l-.76-4.52a2.49 2.49 0 0 0-2.48-2.093H9.107a2.5 2.5 0 0 0-1.627.6c-.453.387-.76.92-.867 1.507l-.746 4.48a.43.43 0 0 0 .226.44l1.894.946a1 1 0 0 1 .44 1.347c-.147.32-.507.533-.867.533\",\n },\n {\n d: \"M10.174 29.707c-.654-.027-1.214-.28-1.627-.707a2.52 2.52 0 0 1-.707-1.586l-.587-5.707a1 1 0 0 1 .894-1.093.985.985 0 0 1 1.093.893l.587 5.76c.013.16.053.253.12.32a.45.45 0 0 0 .267.12h3.026c.054 0 .147-.04.213-.12a.45.45 0 0 0 .12-.267l.574-5.813a.99.99 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.573 5.76c-.026.547-.28 1.107-.693 1.533a2.45 2.45 0 0 1-1.587.707zM20.227 11.88c-.547 0-1-.453-1-1s.453-1 1-1c.733 0 1.453-.293 1.973-.813s.813-1.24.813-1.973c0-.747-.293-1.44-.813-1.974a2.8 2.8 0 0 0-1.973-.813c-.547 0-1-.453-1-1s.453-1 1-1c1.253 0 2.493.507 3.386 1.4a4.75 4.75 0 0 1 1.4 3.387 4.75 4.75 0 0 1-1.4 3.386 4.9 4.9 0 0 1-3.386 1.4m4.213 13.546c-.374 0-.72-.2-.893-.56A.994.994 0 0 1 24 23.52l1.893-.947a.47.47 0 0 0 .174-.187.43.43 0 0 0 .04-.253l-.747-4.467a2.5 2.5 0 0 0-.854-1.506 2.5 2.5 0 0 0-1.626-.6h-1.253c-.547 0-1-.454-1-1 0-.547.453-1 1-1h1.253c1.067 0 2.093.373 2.906 1.066a4.62 4.62 0 0 1 1.547 2.707l.747 4.48c.08.52 0 1.027-.24 1.493-.227.454-.6.827-1.054 1.054l-1.906.946a.9.9 0 0 1-.44.12\",\n },\n {\n d: \"M21.827 29.64h-1.6c-.547 0-1-.454-1-1 0-.548.453-1 1-1h1.533c.093 0 .146 0 .186-.014s.08-.04.107-.067l.08-.173.027-.174.587-5.76a1 1 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.586 5.76c0 .227-.054.534-.187.827a2.5 2.5 0 0 1-.534.773 2.3 2.3 0 0 1-.786.494c-.267.08-.533.133-.813.133\",\n },\n ],\n filled: [\n {\n d: \"M24.974 6.987a4.71 4.71 0 0 1-5.067 5.08 4.54 4.54 0 0 1-2.387-.894.27.27 0 0 1-.066-.346 6.76 6.76 0 0 0 .947-4c-.08-1.054-.427-2.027-.947-2.907a.27.27 0 0 1 .066-.347 4.64 4.64 0 0 1 3.147-.893c2.28.173 4.133 2.027 4.307 4.307M26.667 24.2l-.773.386-1.054.534c-.16.08-.32.106-.48.106l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3c-.426 0-.826-.107-1.173-.307a.52.52 0 0 1-.226-.64 4.3 4.3 0 0 0 .213-1.026l.053-.414a.58.58 0 0 1 .294-.426l.306-.147.76-.387c1.72-.813 2.707-2.733 2.36-4.666l-.706-4.334a6.3 6.3 0 0 0-1.294-2.933c-.133-.173-.013-.44.2-.44h3.28c1.174 0 2.24.44 3.04 1.187a4.37 4.37 0 0 1 1.347 2.52l.72 4.36c.2 1.04-.32 2.066-1.28 2.52M16 9.32a4.63 4.63 0 0 1-2.266 2.293 4.5 4.5 0 0 1-2.013.467c-.134 0-.254-.014-.387-.014a4.9 4.9 0 0 1-1.667-.453 4.74 4.74 0 0 1-2.64-3.867 4.7 4.7 0 0 1 4.694-5.08c.12 0 .253 0 .373.014 1.733.133 3.213 1.226 3.92 2.746.213.494.36 1.014.4 1.56a4.7 4.7 0 0 1-.413 2.334\",\n },\n {\n d: \"m18.107 24.2-.773.386-1.053.534c-.094.04-.187.08-.28.08a.5.5 0 0 1-.2.026l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3a2.39 2.39 0 0 1-2.373-2.16l-.2-1.947h-.027a1.2 1.2 0 0 1-.467-.106l-1.813-.92a2.32 2.32 0 0 1-1.293-2.52l.72-4.36a4.42 4.42 0 0 1 4.386-3.707h5.147c.613 0 1.186.12 1.707.347a4.1 4.1 0 0 1 1.333.84 4.37 4.37 0 0 1 1.347 2.52l.72 4.36a2.32 2.32 0 0 1-1.294 2.52\",\n },\n ],\n },\n};\n\n/** Props for {@link AffiliatesIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type AffiliatesIconProps = BaseIconProps;\n\n/**\n * Affiliates icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <AffiliatesIcon size={24} filled />\n * ```\n */\nexport const AffiliatesIcon = React.forwardRef<SVGSVGElement, AffiliatesIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nAffiliatesIcon.displayName = \"AffiliatesIcon\";\n"],"names":["React","jsx","BaseIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,iBAAiBA,iBAAM,WAA+C,CAAC,OAAO,QACzFC,2BAAAA,IAACC,SAAAA,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,eAAe,cAAc;;"}
@@ -33,6 +33,7 @@ const DropdownMenu = require("./components/DropdownMenu/DropdownMenu.cjs");
33
33
  const EmptyState = require("./components/EmptyState/EmptyState.cjs");
34
34
  const IconButton = require("./components/IconButton/IconButton.cjs");
35
35
  const AddIcon = require("./components/Icons/AddIcon.cjs");
36
+ const AffiliatesIcon = require("./components/Icons/AffiliatesIcon.cjs");
36
37
  const AI2Icon = require("./components/Icons/AI2Icon.cjs");
37
38
  const AICallIcon = require("./components/Icons/AICallIcon.cjs");
38
39
  const AIDisclosureIcon = require("./components/Icons/AIDisclosureIcon.cjs");
@@ -304,6 +305,7 @@ exports.DropdownMenuTrigger = DropdownMenu.DropdownMenuTrigger;
304
305
  exports.EmptyState = EmptyState.EmptyState;
305
306
  exports.IconButton = IconButton.IconButton;
306
307
  exports.AddIcon = AddIcon.AddIcon;
308
+ exports.AffiliatesIcon = AffiliatesIcon.AffiliatesIcon;
307
309
  exports.AI2Icon = AI2Icon.AI2Icon;
308
310
  exports.AICallIcon = AICallIcon.AICallIcon;
309
311
  exports.AIDisclosureIcon = AIDisclosureIcon.AIDisclosureIcon;
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -16,7 +16,7 @@ const Divider = React.forwardRef(({ label, className, ...props }, ref) => {
16
16
  {
17
17
  decorative: true,
18
18
  orientation: "horizontal",
19
- className: "h-px flex-1 bg-neutral-alphas-200",
19
+ className: "h-px flex-1 bg-border-primary",
20
20
  ...props
21
21
  }
22
22
  ),
@@ -26,7 +26,7 @@ const Divider = React.forwardRef(({ label, className, ...props }, ref) => {
26
26
  {
27
27
  decorative: true,
28
28
  orientation: "horizontal",
29
- className: "h-px flex-1 bg-neutral-alphas-200"
29
+ className: "h-px flex-1 bg-border-primary"
30
30
  }
31
31
  )
32
32
  ]
@@ -39,7 +39,7 @@ const Divider = React.forwardRef(({ label, className, ...props }, ref) => {
39
39
  ref,
40
40
  decorative: true,
41
41
  orientation: "horizontal",
42
- className: cn(`mx-auto my-2 h-px w-full bg-neutral-alphas-200`, className),
42
+ className: cn(`mx-auto my-2 h-px w-full bg-border-primary`, className),
43
43
  ...props
44
44
  }
45
45
  );
@@ -1 +1 @@
1
- {"version":3,"file":"Divider.mjs","sources":["../../../src/components/Divider/Divider.tsx"],"sourcesContent":["import * as SeparatorPrimitive from \"@radix-ui/react-separator\";\nimport * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\n\n/** Orientation of the divider line. */\nexport type DividerOrientation = \"horizontal\" | \"vertical\";\n\nexport interface DividerProps\n extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {\n /** Optional centred label text. When provided, the divider renders as two lines with the label between them. */\n label?: string;\n}\n\n/**\n * A horizontal separator used to divide content sections. Optionally displays a\n * centred text label between two lines.\n *\n * @example\n * ```tsx\n * <Divider />\n * <Divider label=\"or\" />\n * ```\n */\nexport const Divider = React.forwardRef<\n React.ElementRef<typeof SeparatorPrimitive.Root>,\n DividerProps\n>(({ label, className, ...props }, ref) => {\n if (label !== undefined) {\n return (\n <div\n ref={ref}\n className={cn(`my-2 flex w-full items-center justify-center gap-2`, className)}\n >\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-neutral-alphas-200\"\n {...props}\n />\n <span className=\"typography-regular-body-md shrink-0 text-content-primary\">{label}</span>\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-neutral-alphas-200\"\n />\n </div>\n );\n }\n\n return (\n <SeparatorPrimitive.Root\n ref={ref}\n decorative\n orientation=\"horizontal\"\n className={cn(`mx-auto my-2 h-px w-full bg-neutral-alphas-200`, className)}\n {...props}\n />\n );\n});\n\nDivider.displayName = \"Divider\";\n"],"names":[],"mappings":";;;;;AAuBO,MAAM,UAAU,MAAM,WAG3B,CAAC,EAAE,OAAO,WAAW,GAAG,MAAA,GAAS,QAAQ;AACzC,MAAI,UAAU,QAAW;AACvB,WACE;AAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,WAAW,GAAG,sDAAsD,SAAS;AAAA,QAE7E,UAAA;AAAA,UAAA;AAAA,YAAC,mBAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,cACT,GAAG;AAAA,YAAA;AAAA,UAAA;AAAA,UAEN,oBAAC,QAAA,EAAK,WAAU,4DAA4D,UAAA,OAAM;AAAA,UAClF;AAAA,YAAC,mBAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,YAAA;AAAA,UAAA;AAAA,QACZ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AAEA,SACE;AAAA,IAAC,mBAAmB;AAAA,IAAnB;AAAA,MACC;AAAA,MACA,YAAU;AAAA,MACV,aAAY;AAAA,MACZ,WAAW,GAAG,kDAAkD,SAAS;AAAA,MACxE,GAAG;AAAA,IAAA;AAAA,EAAA;AAGV,CAAC;AAED,QAAQ,cAAc;"}
1
+ {"version":3,"file":"Divider.mjs","sources":["../../../src/components/Divider/Divider.tsx"],"sourcesContent":["import * as SeparatorPrimitive from \"@radix-ui/react-separator\";\nimport * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\n\n/** Orientation of the divider line. */\nexport type DividerOrientation = \"horizontal\" | \"vertical\";\n\nexport interface DividerProps\n extends React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {\n /** Optional centred label text. When provided, the divider renders as two lines with the label between them. */\n label?: string;\n}\n\n/**\n * A horizontal separator used to divide content sections. Optionally displays a\n * centred text label between two lines.\n *\n * @example\n * ```tsx\n * <Divider />\n * <Divider label=\"or\" />\n * ```\n */\nexport const Divider = React.forwardRef<\n React.ElementRef<typeof SeparatorPrimitive.Root>,\n DividerProps\n>(({ label, className, ...props }, ref) => {\n if (label !== undefined) {\n return (\n <div\n ref={ref}\n className={cn(`my-2 flex w-full items-center justify-center gap-2`, className)}\n >\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-border-primary\"\n {...props}\n />\n <span className=\"typography-regular-body-md shrink-0 text-content-primary\">{label}</span>\n <SeparatorPrimitive.Root\n decorative\n orientation=\"horizontal\"\n className=\"h-px flex-1 bg-border-primary\"\n />\n </div>\n );\n }\n\n return (\n <SeparatorPrimitive.Root\n ref={ref}\n decorative\n orientation=\"horizontal\"\n className={cn(`mx-auto my-2 h-px w-full bg-border-primary`, className)}\n {...props}\n />\n );\n});\n\nDivider.displayName = \"Divider\";\n"],"names":[],"mappings":";;;;;AAuBO,MAAM,UAAU,MAAM,WAG3B,CAAC,EAAE,OAAO,WAAW,GAAG,MAAA,GAAS,QAAQ;AACzC,MAAI,UAAU,QAAW;AACvB,WACE;AAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,WAAW,GAAG,sDAAsD,SAAS;AAAA,QAE7E,UAAA;AAAA,UAAA;AAAA,YAAC,mBAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,cACT,GAAG;AAAA,YAAA;AAAA,UAAA;AAAA,UAEN,oBAAC,QAAA,EAAK,WAAU,4DAA4D,UAAA,OAAM;AAAA,UAClF;AAAA,YAAC,mBAAmB;AAAA,YAAnB;AAAA,cACC,YAAU;AAAA,cACV,aAAY;AAAA,cACZ,WAAU;AAAA,YAAA;AAAA,UAAA;AAAA,QACZ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AAEA,SACE;AAAA,IAAC,mBAAmB;AAAA,IAAnB;AAAA,MACC;AAAA,MACA,YAAU;AAAA,MACV,aAAY;AAAA,MACZ,WAAW,GAAG,8CAA8C,SAAS;AAAA,MACpE,GAAG;AAAA,IAAA;AAAA,EAAA;AAGV,CAAC;AAED,QAAQ,cAAc;"}
@@ -0,0 +1,75 @@
1
+ "use client";
2
+ import { jsx } from "react/jsx-runtime";
3
+ import * as React from "react";
4
+ import { BaseIcon } from "./BaseIcon.mjs";
5
+ const VARIANTS = {
6
+ 16: {
7
+ outlined: [
8
+ {
9
+ d: "M5.893 5.94A2.396 2.396 0 0 1 3.5 3.548a2.396 2.396 0 0 1 2.393-2.393 2.396 2.396 0 0 1 2.394 2.393 2.4 2.4 0 0 1-2.394 2.394m0-3.793c-.766 0-1.393.627-1.393 1.394s.627 1.393 1.393 1.393c.767 0 1.394-.627 1.394-1.393 0-.767-.627-1.394-1.394-1.394M3.78 12.714a.5.5 0 0 1-.22-.054l-.947-.473q-.351-.182-.533-.533a1.2 1.2 0 0 1-.12-.74l.373-2.247a2.3 2.3 0 0 1 .774-1.353 2.25 2.25 0 0 1 1.46-.534h2.666c.534 0 1.047.187 1.454.534.406.346.68.826.766 1.353l.374 2.24c.053.24.013.513-.107.747s-.32.426-.56.533l-.92.467a.5.5 0 1 1-.453-.894l.94-.473c.053-.027.086-.053.1-.087a.15.15 0 0 0 .013-.106l-.38-2.26a1.244 1.244 0 0 0-1.24-1.047H4.553c-.3 0-.586.107-.813.3s-.38.46-.433.753l-.374 2.24a.21.21 0 0 0 .114.22l.946.474a.5.5 0 0 1 .22.673.49.49 0 0 1-.433.267"
10
+ },
11
+ {
12
+ d: "M5.087 14.854a1.18 1.18 0 0 1-.814-.353 1.26 1.26 0 0 1-.353-.794l-.293-2.853a.5.5 0 0 1 .446-.547c.28-.033.52.174.547.447l.293 2.88c.007.08.027.127.06.16q.052.05.134.06H6.62c.027 0 .073-.02.107-.06a.23.23 0 0 0 .06-.133l.286-2.907a.496.496 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.287 2.88c-.013.273-.14.553-.347.767a1.23 1.23 0 0 1-.793.353zm5.026-8.914a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.367 0 .727-.146.987-.406a1.404 1.404 0 0 0 0-1.973c-.26-.26-.62-.407-.987-.407a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.627 0 1.247.253 1.694.7.453.453.7 1.053.7 1.693s-.247 1.24-.7 1.694c-.447.44-1.067.7-1.694.7m2.107 6.773a.49.49 0 0 1-.447-.28.497.497 0 0 1 .227-.674l.947-.473a.24.24 0 0 0 .086-.093.2.2 0 0 0 .02-.127l-.373-2.233c-.047-.294-.2-.56-.427-.754a1.25 1.25 0 0 0-.813-.3h-.627a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.627c.533 0 1.047.187 1.453.534.407.346.68.826.774 1.353l.373 2.24c.04.26 0 .513-.12.747-.114.226-.3.413-.527.526l-.953.474a.44.44 0 0 1-.22.06"
13
+ },
14
+ {
15
+ d: "M10.913 14.82h-.8a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.767c.047 0 .073 0 .093-.007.02-.006.04-.02.054-.033l.04-.087.013-.086.293-2.88a.5.5 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.294 2.88c0 .113-.027.266-.093.413a1.15 1.15 0 0 1-.66.633c-.133.04-.267.067-.407.067"
16
+ }
17
+ ],
18
+ filled: [
19
+ {
20
+ d: "M12.486 3.494a2.355 2.355 0 0 1-2.533 2.54 2.27 2.27 0 0 1-1.193-.447.133.133 0 0 1-.034-.173c.36-.6.527-1.293.474-2a3.34 3.34 0 0 0-.474-1.453.133.133 0 0 1 .034-.174 2.32 2.32 0 0 1 1.573-.446 2.355 2.355 0 0 1 2.153 2.153m.847 8.606-.387.194-.526.266a.5.5 0 0 1-.24.054l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5c-.213 0-.413-.053-.586-.153a.26.26 0 0 1-.114-.32c.054-.16.094-.334.107-.514l.027-.206a.29.29 0 0 1 .146-.214l.154-.073.38-.193c.86-.407 1.353-1.367 1.18-2.334l-.354-2.166a3.14 3.14 0 0 0-.646-1.467c-.067-.087-.007-.22.1-.22h1.64a2.21 2.21 0 0 1 2.193 1.853l.36 2.18c.1.52-.16 1.034-.64 1.26M8 4.66a2.3 2.3 0 0 1-1.133 1.147 2.2 2.2 0 0 1-1.007.233c-.067 0-.127-.006-.194-.006-.3-.027-.58-.107-.833-.227a2.37 2.37 0 0 1-1.32-1.933 2.35 2.35 0 0 1 2.347-2.54 2.38 2.38 0 0 1 2.147 1.38A2.35 2.35 0 0 1 8 4.66"
21
+ },
22
+ {
23
+ d: "m9.053 12.1-.387.194-.526.266a.4.4 0 0 1-.14.04c-.034.014-.067.014-.1.014l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5a1.194 1.194 0 0 1-1.186-1.08l-.1-.973h-.014a.6.6 0 0 1-.233-.054l-.907-.46c-.48-.226-.74-.74-.646-1.26l.36-2.18a2.21 2.21 0 0 1 2.193-1.853h2.573q.462.002.854.173a2.19 2.19 0 0 1 1.34 1.68l.36 2.18a1.16 1.16 0 0 1-.647 1.26"
24
+ }
25
+ ]
26
+ },
27
+ 24: {
28
+ outlined: [
29
+ {
30
+ d: "M8.84 8.91c-1.98 0-3.59-1.61-3.59-3.59s1.61-3.59 3.59-3.59 3.59 1.61 3.59 3.59a3.6 3.6 0 0 1-3.59 3.59m0-5.69c-1.15 0-2.09.94-2.09 2.09S7.69 7.4 8.84 7.4s2.09-.94 2.09-2.09-.94-2.09-2.09-2.09M5.67 19.07c-.11 0-.23-.03-.33-.08l-1.42-.71a1.82 1.82 0 0 1-.8-.8c-.18-.34-.24-.73-.18-1.11L3.5 13c.14-.79.55-1.51 1.16-2.03s1.39-.8 2.19-.8h4c.8 0 1.57.28 2.18.8s1.02 1.24 1.15 2.03l.56 3.36c.08.36.02.77-.16 1.12s-.48.64-.84.8l-1.38.7a.75.75 0 1 1-.68-1.34l1.41-.71c.08-.04.13-.08.15-.13.03-.05.03-.11.02-.16l-.57-3.39a1.866 1.866 0 0 0-1.86-1.57h-4c-.45 0-.88.16-1.22.45s-.57.69-.65 1.13l-.56 3.36a.32.32 0 0 0 .17.33l1.42.71c.37.19.52.64.33 1.01-.11.24-.38.4-.65.4"
31
+ },
32
+ {
33
+ d: "M7.63 22.28c-.49-.02-.91-.21-1.22-.53s-.5-.74-.53-1.19l-.44-4.28a.75.75 0 0 1 .67-.82c.42-.05.78.26.82.67l.44 4.32c.01.12.04.19.09.24s.12.08.2.09h2.27c.04 0 .11-.03.16-.09.05-.05.08-.12.09-.2l.43-4.36c.04-.41.41-.72.82-.67.41.04.71.41.67.82l-.43 4.32c-.02.41-.21.83-.52 1.15-.32.32-.74.5-1.19.53zm7.54-13.37c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.55 0 1.09-.22 1.48-.61s.61-.93.61-1.48c0-.56-.22-1.08-.61-1.48-.39-.39-.93-.61-1.48-.61-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.94 0 1.87.38 2.54 1.05.68.68 1.05 1.58 1.05 2.54s-.37 1.86-1.05 2.54c-.67.66-1.6 1.05-2.54 1.05m3.16 10.16c-.28 0-.54-.15-.67-.42a.745.745 0 0 1 .34-1.01l1.42-.71c.05-.03.1-.08.13-.14a.32.32 0 0 0 .03-.19l-.56-3.35c-.07-.44-.3-.84-.64-1.13s-.77-.45-1.22-.45h-.94c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.94c.8 0 1.57.28 2.18.8s1.02 1.24 1.16 2.03l.56 3.36c.06.39 0 .77-.18 1.12-.17.34-.45.62-.79.79l-1.43.71c-.1.06-.22.09-.33.09"
34
+ },
35
+ {
36
+ d: "M16.37 22.23h-1.2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.15c.07 0 .11 0 .14-.01s.06-.03.08-.05l.06-.13.02-.13.44-4.32a.75.75 0 0 1 .82-.67c.41.04.71.41.67.82l-.44 4.32c0 .17-.04.4-.14.62-.09.21-.23.41-.4.58-.17.16-.37.29-.59.37-.2.06-.4.1-.61.1"
37
+ }
38
+ ],
39
+ filled: [
40
+ {
41
+ d: "M18.73 5.24a3.532 3.532 0 0 1-3.8 3.81c-.67-.05-1.28-.29-1.79-.67a.2.2 0 0 1-.05-.26c.54-.9.79-1.94.71-3-.06-.79-.32-1.52-.71-2.18a.2.2 0 0 1 .05-.26c.65-.48 1.47-.74 2.36-.67 1.71.13 3.1 1.52 3.23 3.23M20 18.15l-.58.29-.79.4c-.12.06-.24.08-.36.08l-.15 1.46c-.09.92-.86 1.62-1.79 1.62h-2.25c-.32 0-.62-.08-.88-.23a.39.39 0 0 1-.17-.48c.08-.24.14-.5.16-.77l.04-.31c.02-.14.1-.25.22-.32l.23-.11.57-.29c1.29-.61 2.03-2.05 1.77-3.5l-.53-3.25c-.13-.81-.46-1.56-.97-2.2-.1-.13-.01-.33.15-.33h2.46c.88 0 1.68.33 2.28.89.52.48.89 1.14 1.01 1.89l.54 3.27c.15.78-.24 1.55-.96 1.89M12 6.99a3.47 3.47 0 0 1-1.7 1.72c-.46.23-.97.35-1.51.35-.1 0-.19-.01-.29-.01-.45-.04-.87-.16-1.25-.34a3.55 3.55 0 0 1-1.98-2.9A3.524 3.524 0 0 1 8.79 2c.09 0 .19 0 .28.01 1.3.1 2.41.92 2.94 2.06A3.53 3.53 0 0 1 12 6.99"
42
+ },
43
+ {
44
+ d: "m13.58 18.15-.58.29-.79.4c-.07.03-.14.06-.21.06-.05.02-.1.02-.15.02l-.15 1.46c-.09.92-.86 1.62-1.79 1.62H7.66c-.92 0-1.69-.7-1.78-1.62l-.15-1.46h-.02a.9.9 0 0 1-.35-.08L4 18.15a1.74 1.74 0 0 1-.97-1.89l.54-3.27a3.31 3.31 0 0 1 3.29-2.78h3.86c.46 0 .89.09 1.28.26.37.14.71.36 1 .63.52.48.89 1.14 1.01 1.89l.54 3.27c.14.78-.25 1.55-.97 1.89"
45
+ }
46
+ ]
47
+ },
48
+ 32: {
49
+ outlined: [
50
+ {
51
+ d: "M11.787 11.88A4.79 4.79 0 0 1 7 7.094a4.79 4.79 0 0 1 4.787-4.787 4.79 4.79 0 0 1 4.786 4.787c0 2.626-2.146 4.786-4.786 4.786m0-7.586A2.794 2.794 0 0 0 9 7.08a2.794 2.794 0 0 0 2.787 2.787 2.794 2.794 0 0 0 2.787-2.787 2.794 2.794 0 0 0-2.787-2.786M7.56 25.426c-.147 0-.307-.04-.44-.106l-1.893-.947c-.467-.24-.827-.6-1.067-1.067a2.37 2.37 0 0 1-.24-1.48l.747-4.493a4.62 4.62 0 0 1 1.546-2.707 4.5 4.5 0 0 1 2.92-1.066h5.334c1.066 0 2.093.373 2.906 1.066a4.53 4.53 0 0 1 1.534 2.707l.746 4.48c.107.48.027 1.027-.213 1.493a2.35 2.35 0 0 1-1.12 1.067l-1.84.933a1 1 0 0 1-1.347-.44 1 1 0 0 1 .44-1.346l1.88-.947c.107-.053.174-.107.2-.173a.3.3 0 0 0 .027-.214l-.76-4.52a2.49 2.49 0 0 0-2.48-2.093H9.107a2.5 2.5 0 0 0-1.627.6c-.453.387-.76.92-.867 1.507l-.746 4.48a.43.43 0 0 0 .226.44l1.894.946a1 1 0 0 1 .44 1.347c-.147.32-.507.533-.867.533"
52
+ },
53
+ {
54
+ d: "M10.174 29.707c-.654-.027-1.214-.28-1.627-.707a2.52 2.52 0 0 1-.707-1.586l-.587-5.707a1 1 0 0 1 .894-1.093.985.985 0 0 1 1.093.893l.587 5.76c.013.16.053.253.12.32a.45.45 0 0 0 .267.12h3.026c.054 0 .147-.04.213-.12a.45.45 0 0 0 .12-.267l.574-5.813a.99.99 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.573 5.76c-.026.547-.28 1.107-.693 1.533a2.45 2.45 0 0 1-1.587.707zM20.227 11.88c-.547 0-1-.453-1-1s.453-1 1-1c.733 0 1.453-.293 1.973-.813s.813-1.24.813-1.973c0-.747-.293-1.44-.813-1.974a2.8 2.8 0 0 0-1.973-.813c-.547 0-1-.453-1-1s.453-1 1-1c1.253 0 2.493.507 3.386 1.4a4.75 4.75 0 0 1 1.4 3.387 4.75 4.75 0 0 1-1.4 3.386 4.9 4.9 0 0 1-3.386 1.4m4.213 13.546c-.374 0-.72-.2-.893-.56A.994.994 0 0 1 24 23.52l1.893-.947a.47.47 0 0 0 .174-.187.43.43 0 0 0 .04-.253l-.747-4.467a2.5 2.5 0 0 0-.854-1.506 2.5 2.5 0 0 0-1.626-.6h-1.253c-.547 0-1-.454-1-1 0-.547.453-1 1-1h1.253c1.067 0 2.093.373 2.906 1.066a4.62 4.62 0 0 1 1.547 2.707l.747 4.48c.08.52 0 1.027-.24 1.493-.227.454-.6.827-1.054 1.054l-1.906.946a.9.9 0 0 1-.44.12"
55
+ },
56
+ {
57
+ d: "M21.827 29.64h-1.6c-.547 0-1-.454-1-1 0-.548.453-1 1-1h1.533c.093 0 .146 0 .186-.014s.08-.04.107-.067l.08-.173.027-.174.587-5.76a1 1 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.586 5.76c0 .227-.054.534-.187.827a2.5 2.5 0 0 1-.534.773 2.3 2.3 0 0 1-.786.494c-.267.08-.533.133-.813.133"
58
+ }
59
+ ],
60
+ filled: [
61
+ {
62
+ d: "M24.974 6.987a4.71 4.71 0 0 1-5.067 5.08 4.54 4.54 0 0 1-2.387-.894.27.27 0 0 1-.066-.346 6.76 6.76 0 0 0 .947-4c-.08-1.054-.427-2.027-.947-2.907a.27.27 0 0 1 .066-.347 4.64 4.64 0 0 1 3.147-.893c2.28.173 4.133 2.027 4.307 4.307M26.667 24.2l-.773.386-1.054.534c-.16.08-.32.106-.48.106l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3c-.426 0-.826-.107-1.173-.307a.52.52 0 0 1-.226-.64 4.3 4.3 0 0 0 .213-1.026l.053-.414a.58.58 0 0 1 .294-.426l.306-.147.76-.387c1.72-.813 2.707-2.733 2.36-4.666l-.706-4.334a6.3 6.3 0 0 0-1.294-2.933c-.133-.173-.013-.44.2-.44h3.28c1.174 0 2.24.44 3.04 1.187a4.37 4.37 0 0 1 1.347 2.52l.72 4.36c.2 1.04-.32 2.066-1.28 2.52M16 9.32a4.63 4.63 0 0 1-2.266 2.293 4.5 4.5 0 0 1-2.013.467c-.134 0-.254-.014-.387-.014a4.9 4.9 0 0 1-1.667-.453 4.74 4.74 0 0 1-2.64-3.867 4.7 4.7 0 0 1 4.694-5.08c.12 0 .253 0 .373.014 1.733.133 3.213 1.226 3.92 2.746.213.494.36 1.014.4 1.56a4.7 4.7 0 0 1-.413 2.334"
63
+ },
64
+ {
65
+ d: "m18.107 24.2-.773.386-1.053.534c-.094.04-.187.08-.28.08a.5.5 0 0 1-.2.026l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3a2.39 2.39 0 0 1-2.373-2.16l-.2-1.947h-.027a1.2 1.2 0 0 1-.467-.106l-1.813-.92a2.32 2.32 0 0 1-1.293-2.52l.72-4.36a4.42 4.42 0 0 1 4.386-3.707h5.147c.613 0 1.186.12 1.707.347a4.1 4.1 0 0 1 1.333.84 4.37 4.37 0 0 1 1.347 2.52l.72 4.36a2.32 2.32 0 0 1-1.294 2.52"
66
+ }
67
+ ]
68
+ }
69
+ };
70
+ const AffiliatesIcon = React.forwardRef((props, ref) => /* @__PURE__ */ jsx(BaseIcon, { ref, variants: VARIANTS, ...props }));
71
+ AffiliatesIcon.displayName = "AffiliatesIcon";
72
+ export {
73
+ AffiliatesIcon
74
+ };
75
+ //# sourceMappingURL=AffiliatesIcon.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AffiliatesIcon.mjs","sources":["../../../src/components/Icons/AffiliatesIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { BaseIcon } from \"./BaseIcon\";\nimport type { BaseIconProps, IconVariants } from \"./types\";\n\nconst VARIANTS: IconVariants = {\n 16: {\n outlined: [\n {\n d: \"M5.893 5.94A2.396 2.396 0 0 1 3.5 3.548a2.396 2.396 0 0 1 2.393-2.393 2.396 2.396 0 0 1 2.394 2.393 2.4 2.4 0 0 1-2.394 2.394m0-3.793c-.766 0-1.393.627-1.393 1.394s.627 1.393 1.393 1.393c.767 0 1.394-.627 1.394-1.393 0-.767-.627-1.394-1.394-1.394M3.78 12.714a.5.5 0 0 1-.22-.054l-.947-.473q-.351-.182-.533-.533a1.2 1.2 0 0 1-.12-.74l.373-2.247a2.3 2.3 0 0 1 .774-1.353 2.25 2.25 0 0 1 1.46-.534h2.666c.534 0 1.047.187 1.454.534.406.346.68.826.766 1.353l.374 2.24c.053.24.013.513-.107.747s-.32.426-.56.533l-.92.467a.5.5 0 1 1-.453-.894l.94-.473c.053-.027.086-.053.1-.087a.15.15 0 0 0 .013-.106l-.38-2.26a1.244 1.244 0 0 0-1.24-1.047H4.553c-.3 0-.586.107-.813.3s-.38.46-.433.753l-.374 2.24a.21.21 0 0 0 .114.22l.946.474a.5.5 0 0 1 .22.673.49.49 0 0 1-.433.267\",\n },\n {\n d: \"M5.087 14.854a1.18 1.18 0 0 1-.814-.353 1.26 1.26 0 0 1-.353-.794l-.293-2.853a.5.5 0 0 1 .446-.547c.28-.033.52.174.547.447l.293 2.88c.007.08.027.127.06.16q.052.05.134.06H6.62c.027 0 .073-.02.107-.06a.23.23 0 0 0 .06-.133l.286-2.907a.496.496 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.287 2.88c-.013.273-.14.553-.347.767a1.23 1.23 0 0 1-.793.353zm5.026-8.914a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.367 0 .727-.146.987-.406a1.404 1.404 0 0 0 0-1.973c-.26-.26-.62-.407-.987-.407a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5.627 0 1.247.253 1.694.7.453.453.7 1.053.7 1.693s-.247 1.24-.7 1.694c-.447.44-1.067.7-1.694.7m2.107 6.773a.49.49 0 0 1-.447-.28.497.497 0 0 1 .227-.674l.947-.473a.24.24 0 0 0 .086-.093.2.2 0 0 0 .02-.127l-.373-2.233c-.047-.294-.2-.56-.427-.754a1.25 1.25 0 0 0-.813-.3h-.627a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.627c.533 0 1.047.187 1.453.534.407.346.68.826.774 1.353l.373 2.24c.04.26 0 .513-.12.747-.114.226-.3.413-.527.526l-.953.474a.44.44 0 0 1-.22.06\",\n },\n {\n d: \"M10.913 14.82h-.8a.504.504 0 0 1-.5-.5c0-.273.227-.5.5-.5h.767c.047 0 .073 0 .093-.007.02-.006.04-.02.054-.033l.04-.087.013-.086.293-2.88a.5.5 0 0 1 .547-.447.5.5 0 0 1 .447.547l-.294 2.88c0 .113-.027.266-.093.413a1.15 1.15 0 0 1-.66.633c-.133.04-.267.067-.407.067\",\n },\n ],\n filled: [\n {\n d: \"M12.486 3.494a2.355 2.355 0 0 1-2.533 2.54 2.27 2.27 0 0 1-1.193-.447.133.133 0 0 1-.034-.173c.36-.6.527-1.293.474-2a3.34 3.34 0 0 0-.474-1.453.133.133 0 0 1 .034-.174 2.32 2.32 0 0 1 1.573-.446 2.355 2.355 0 0 1 2.153 2.153m.847 8.606-.387.194-.526.266a.5.5 0 0 1-.24.054l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5c-.213 0-.413-.053-.586-.153a.26.26 0 0 1-.114-.32c.054-.16.094-.334.107-.514l.027-.206a.29.29 0 0 1 .146-.214l.154-.073.38-.193c.86-.407 1.353-1.367 1.18-2.334l-.354-2.166a3.14 3.14 0 0 0-.646-1.467c-.067-.087-.007-.22.1-.22h1.64a2.21 2.21 0 0 1 2.193 1.853l.36 2.18c.1.52-.16 1.034-.64 1.26M8 4.66a2.3 2.3 0 0 1-1.133 1.147 2.2 2.2 0 0 1-1.007.233c-.067 0-.127-.006-.194-.006-.3-.027-.58-.107-.833-.227a2.37 2.37 0 0 1-1.32-1.933 2.35 2.35 0 0 1 2.347-2.54 2.38 2.38 0 0 1 2.147 1.38A2.35 2.35 0 0 1 8 4.66\",\n },\n {\n d: \"m9.053 12.1-.387.194-.526.266a.4.4 0 0 1-.14.04c-.034.014-.067.014-.1.014l-.1.973a1.195 1.195 0 0 1-1.194 1.08h-1.5a1.194 1.194 0 0 1-1.186-1.08l-.1-.973h-.014a.6.6 0 0 1-.233-.054l-.907-.46c-.48-.226-.74-.74-.646-1.26l.36-2.18a2.21 2.21 0 0 1 2.193-1.853h2.573q.462.002.854.173a2.19 2.19 0 0 1 1.34 1.68l.36 2.18a1.16 1.16 0 0 1-.647 1.26\",\n },\n ],\n },\n 24: {\n outlined: [\n {\n d: \"M8.84 8.91c-1.98 0-3.59-1.61-3.59-3.59s1.61-3.59 3.59-3.59 3.59 1.61 3.59 3.59a3.6 3.6 0 0 1-3.59 3.59m0-5.69c-1.15 0-2.09.94-2.09 2.09S7.69 7.4 8.84 7.4s2.09-.94 2.09-2.09-.94-2.09-2.09-2.09M5.67 19.07c-.11 0-.23-.03-.33-.08l-1.42-.71a1.82 1.82 0 0 1-.8-.8c-.18-.34-.24-.73-.18-1.11L3.5 13c.14-.79.55-1.51 1.16-2.03s1.39-.8 2.19-.8h4c.8 0 1.57.28 2.18.8s1.02 1.24 1.15 2.03l.56 3.36c.08.36.02.77-.16 1.12s-.48.64-.84.8l-1.38.7a.75.75 0 1 1-.68-1.34l1.41-.71c.08-.04.13-.08.15-.13.03-.05.03-.11.02-.16l-.57-3.39a1.866 1.866 0 0 0-1.86-1.57h-4c-.45 0-.88.16-1.22.45s-.57.69-.65 1.13l-.56 3.36a.32.32 0 0 0 .17.33l1.42.71c.37.19.52.64.33 1.01-.11.24-.38.4-.65.4\",\n },\n {\n d: \"M7.63 22.28c-.49-.02-.91-.21-1.22-.53s-.5-.74-.53-1.19l-.44-4.28a.75.75 0 0 1 .67-.82c.42-.05.78.26.82.67l.44 4.32c.01.12.04.19.09.24s.12.08.2.09h2.27c.04 0 .11-.03.16-.09.05-.05.08-.12.09-.2l.43-4.36c.04-.41.41-.72.82-.67.41.04.71.41.67.82l-.43 4.32c-.02.41-.21.83-.52 1.15-.32.32-.74.5-1.19.53zm7.54-13.37c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.55 0 1.09-.22 1.48-.61s.61-.93.61-1.48c0-.56-.22-1.08-.61-1.48-.39-.39-.93-.61-1.48-.61-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.94 0 1.87.38 2.54 1.05.68.68 1.05 1.58 1.05 2.54s-.37 1.86-1.05 2.54c-.67.66-1.6 1.05-2.54 1.05m3.16 10.16c-.28 0-.54-.15-.67-.42a.745.745 0 0 1 .34-1.01l1.42-.71c.05-.03.1-.08.13-.14a.32.32 0 0 0 .03-.19l-.56-3.35c-.07-.44-.3-.84-.64-1.13s-.77-.45-1.22-.45h-.94c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.94c.8 0 1.57.28 2.18.8s1.02 1.24 1.16 2.03l.56 3.36c.06.39 0 .77-.18 1.12-.17.34-.45.62-.79.79l-1.43.71c-.1.06-.22.09-.33.09\",\n },\n {\n d: \"M16.37 22.23h-1.2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.15c.07 0 .11 0 .14-.01s.06-.03.08-.05l.06-.13.02-.13.44-4.32a.75.75 0 0 1 .82-.67c.41.04.71.41.67.82l-.44 4.32c0 .17-.04.4-.14.62-.09.21-.23.41-.4.58-.17.16-.37.29-.59.37-.2.06-.4.1-.61.1\",\n },\n ],\n filled: [\n {\n d: \"M18.73 5.24a3.532 3.532 0 0 1-3.8 3.81c-.67-.05-1.28-.29-1.79-.67a.2.2 0 0 1-.05-.26c.54-.9.79-1.94.71-3-.06-.79-.32-1.52-.71-2.18a.2.2 0 0 1 .05-.26c.65-.48 1.47-.74 2.36-.67 1.71.13 3.1 1.52 3.23 3.23M20 18.15l-.58.29-.79.4c-.12.06-.24.08-.36.08l-.15 1.46c-.09.92-.86 1.62-1.79 1.62h-2.25c-.32 0-.62-.08-.88-.23a.39.39 0 0 1-.17-.48c.08-.24.14-.5.16-.77l.04-.31c.02-.14.1-.25.22-.32l.23-.11.57-.29c1.29-.61 2.03-2.05 1.77-3.5l-.53-3.25c-.13-.81-.46-1.56-.97-2.2-.1-.13-.01-.33.15-.33h2.46c.88 0 1.68.33 2.28.89.52.48.89 1.14 1.01 1.89l.54 3.27c.15.78-.24 1.55-.96 1.89M12 6.99a3.47 3.47 0 0 1-1.7 1.72c-.46.23-.97.35-1.51.35-.1 0-.19-.01-.29-.01-.45-.04-.87-.16-1.25-.34a3.55 3.55 0 0 1-1.98-2.9A3.524 3.524 0 0 1 8.79 2c.09 0 .19 0 .28.01 1.3.1 2.41.92 2.94 2.06A3.53 3.53 0 0 1 12 6.99\",\n },\n {\n d: \"m13.58 18.15-.58.29-.79.4c-.07.03-.14.06-.21.06-.05.02-.1.02-.15.02l-.15 1.46c-.09.92-.86 1.62-1.79 1.62H7.66c-.92 0-1.69-.7-1.78-1.62l-.15-1.46h-.02a.9.9 0 0 1-.35-.08L4 18.15a1.74 1.74 0 0 1-.97-1.89l.54-3.27a3.31 3.31 0 0 1 3.29-2.78h3.86c.46 0 .89.09 1.28.26.37.14.71.36 1 .63.52.48.89 1.14 1.01 1.89l.54 3.27c.14.78-.25 1.55-.97 1.89\",\n },\n ],\n },\n 32: {\n outlined: [\n {\n d: \"M11.787 11.88A4.79 4.79 0 0 1 7 7.094a4.79 4.79 0 0 1 4.787-4.787 4.79 4.79 0 0 1 4.786 4.787c0 2.626-2.146 4.786-4.786 4.786m0-7.586A2.794 2.794 0 0 0 9 7.08a2.794 2.794 0 0 0 2.787 2.787 2.794 2.794 0 0 0 2.787-2.787 2.794 2.794 0 0 0-2.787-2.786M7.56 25.426c-.147 0-.307-.04-.44-.106l-1.893-.947c-.467-.24-.827-.6-1.067-1.067a2.37 2.37 0 0 1-.24-1.48l.747-4.493a4.62 4.62 0 0 1 1.546-2.707 4.5 4.5 0 0 1 2.92-1.066h5.334c1.066 0 2.093.373 2.906 1.066a4.53 4.53 0 0 1 1.534 2.707l.746 4.48c.107.48.027 1.027-.213 1.493a2.35 2.35 0 0 1-1.12 1.067l-1.84.933a1 1 0 0 1-1.347-.44 1 1 0 0 1 .44-1.346l1.88-.947c.107-.053.174-.107.2-.173a.3.3 0 0 0 .027-.214l-.76-4.52a2.49 2.49 0 0 0-2.48-2.093H9.107a2.5 2.5 0 0 0-1.627.6c-.453.387-.76.92-.867 1.507l-.746 4.48a.43.43 0 0 0 .226.44l1.894.946a1 1 0 0 1 .44 1.347c-.147.32-.507.533-.867.533\",\n },\n {\n d: \"M10.174 29.707c-.654-.027-1.214-.28-1.627-.707a2.52 2.52 0 0 1-.707-1.586l-.587-5.707a1 1 0 0 1 .894-1.093.985.985 0 0 1 1.093.893l.587 5.76c.013.16.053.253.12.32a.45.45 0 0 0 .267.12h3.026c.054 0 .147-.04.213-.12a.45.45 0 0 0 .12-.267l.574-5.813a.99.99 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.573 5.76c-.026.547-.28 1.107-.693 1.533a2.45 2.45 0 0 1-1.587.707zM20.227 11.88c-.547 0-1-.453-1-1s.453-1 1-1c.733 0 1.453-.293 1.973-.813s.813-1.24.813-1.973c0-.747-.293-1.44-.813-1.974a2.8 2.8 0 0 0-1.973-.813c-.547 0-1-.453-1-1s.453-1 1-1c1.253 0 2.493.507 3.386 1.4a4.75 4.75 0 0 1 1.4 3.387 4.75 4.75 0 0 1-1.4 3.386 4.9 4.9 0 0 1-3.386 1.4m4.213 13.546c-.374 0-.72-.2-.893-.56A.994.994 0 0 1 24 23.52l1.893-.947a.47.47 0 0 0 .174-.187.43.43 0 0 0 .04-.253l-.747-4.467a2.5 2.5 0 0 0-.854-1.506 2.5 2.5 0 0 0-1.626-.6h-1.253c-.547 0-1-.454-1-1 0-.547.453-1 1-1h1.253c1.067 0 2.093.373 2.906 1.066a4.62 4.62 0 0 1 1.547 2.707l.747 4.48c.08.52 0 1.027-.24 1.493-.227.454-.6.827-1.054 1.054l-1.906.946a.9.9 0 0 1-.44.12\",\n },\n {\n d: \"M21.827 29.64h-1.6c-.547 0-1-.454-1-1 0-.548.453-1 1-1h1.533c.093 0 .146 0 .186-.014s.08-.04.107-.067l.08-.173.027-.174.587-5.76a1 1 0 0 1 1.093-.893 1 1 0 0 1 .893 1.093l-.586 5.76c0 .227-.054.534-.187.827a2.5 2.5 0 0 1-.534.773 2.3 2.3 0 0 1-.786.494c-.267.08-.533.133-.813.133\",\n },\n ],\n filled: [\n {\n d: \"M24.974 6.987a4.71 4.71 0 0 1-5.067 5.08 4.54 4.54 0 0 1-2.387-.894.27.27 0 0 1-.066-.346 6.76 6.76 0 0 0 .947-4c-.08-1.054-.427-2.027-.947-2.907a.27.27 0 0 1 .066-.347 4.64 4.64 0 0 1 3.147-.893c2.28.173 4.133 2.027 4.307 4.307M26.667 24.2l-.773.386-1.054.534c-.16.08-.32.106-.48.106l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3c-.426 0-.826-.107-1.173-.307a.52.52 0 0 1-.226-.64 4.3 4.3 0 0 0 .213-1.026l.053-.414a.58.58 0 0 1 .294-.426l.306-.147.76-.387c1.72-.813 2.707-2.733 2.36-4.666l-.706-4.334a6.3 6.3 0 0 0-1.294-2.933c-.133-.173-.013-.44.2-.44h3.28c1.174 0 2.24.44 3.04 1.187a4.37 4.37 0 0 1 1.347 2.52l.72 4.36c.2 1.04-.32 2.066-1.28 2.52M16 9.32a4.63 4.63 0 0 1-2.266 2.293 4.5 4.5 0 0 1-2.013.467c-.134 0-.254-.014-.387-.014a4.9 4.9 0 0 1-1.667-.453 4.74 4.74 0 0 1-2.64-3.867 4.7 4.7 0 0 1 4.694-5.08c.12 0 .253 0 .373.014 1.733.133 3.213 1.226 3.92 2.746.213.494.36 1.014.4 1.56a4.7 4.7 0 0 1-.413 2.334\",\n },\n {\n d: \"m18.107 24.2-.773.386-1.053.534c-.094.04-.187.08-.28.08a.5.5 0 0 1-.2.026l-.2 1.947a2.39 2.39 0 0 1-2.387 2.16h-3a2.39 2.39 0 0 1-2.373-2.16l-.2-1.947h-.027a1.2 1.2 0 0 1-.467-.106l-1.813-.92a2.32 2.32 0 0 1-1.293-2.52l.72-4.36a4.42 4.42 0 0 1 4.386-3.707h5.147c.613 0 1.186.12 1.707.347a4.1 4.1 0 0 1 1.333.84 4.37 4.37 0 0 1 1.347 2.52l.72 4.36a2.32 2.32 0 0 1-1.294 2.52\",\n },\n ],\n },\n};\n\n/** Props for {@link AffiliatesIcon}. See {@link BaseIconProps} for the shared shape. */\nexport type AffiliatesIconProps = BaseIconProps;\n\n/**\n * Affiliates icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.\n *\n * @example\n * ```tsx\n * <AffiliatesIcon size={24} filled />\n * ```\n */\nexport const AffiliatesIcon = React.forwardRef<SVGSVGElement, AffiliatesIconProps>((props, ref) => (\n <BaseIcon ref={ref} variants={VARIANTS} {...props} />\n));\n\nAffiliatesIcon.displayName = \"AffiliatesIcon\";\n"],"names":[],"mappings":";;;;AAIA,MAAM,WAAyB;AAAA,EAC7B,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAAA,EAEF,IAAI;AAAA,IACF,UAAU;AAAA,MACR;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,IAEF,QAAQ;AAAA,MACN;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,MAEL;AAAA,QACE,GAAG;AAAA,MAAA;AAAA,IACL;AAAA,EACF;AAEJ;AAaO,MAAM,iBAAiB,MAAM,WAA+C,CAAC,OAAO,QACzF,oBAAC,UAAA,EAAS,KAAU,UAAU,UAAW,GAAG,OAAO,CACpD;AAED,eAAe,cAAc;"}
package/dist/index.d.ts CHANGED
@@ -87,6 +87,19 @@ export declare const AddIcon: React_2.ForwardRefExoticComponent<BaseIconProps &
87
87
  /** Props for {@link AddIcon}. See {@link BaseIconProps} for the shared shape. */
88
88
  export declare type AddIconProps = BaseIconProps;
89
89
 
90
+ /**
91
+ * Affiliates icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.
92
+ *
93
+ * @example
94
+ * ```tsx
95
+ * <AffiliatesIcon size={24} filled />
96
+ * ```
97
+ */
98
+ export declare const AffiliatesIcon: React_2.ForwardRefExoticComponent<BaseIconProps & React_2.RefAttributes<SVGSVGElement>>;
99
+
100
+ /** Props for {@link AffiliatesIcon}. See {@link BaseIconProps} for the shared shape. */
101
+ export declare type AffiliatesIconProps = BaseIconProps;
102
+
90
103
  /**
91
104
  * Ai 2 icon. Renders at sizes 16, 24, or 32 px with outlined and filled variants.
92
105
  *
package/dist/index.mjs CHANGED
@@ -31,6 +31,7 @@ import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuHeade
31
31
  import { EmptyState } from "./components/EmptyState/EmptyState.mjs";
32
32
  import { IconButton } from "./components/IconButton/IconButton.mjs";
33
33
  import { AddIcon } from "./components/Icons/AddIcon.mjs";
34
+ import { AffiliatesIcon } from "./components/Icons/AffiliatesIcon.mjs";
34
35
  import { AI2Icon } from "./components/Icons/AI2Icon.mjs";
35
36
  import { AICallIcon } from "./components/Icons/AICallIcon.mjs";
36
37
  import { AIDisclosureIcon } from "./components/Icons/AIDisclosureIcon.mjs";
@@ -234,6 +235,7 @@ export {
234
235
  AccordionItem,
235
236
  AccordionTrigger,
236
237
  AddIcon,
238
+ AffiliatesIcon,
237
239
  Alert,
238
240
  AlertIcon,
239
241
  AppsIcon,
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fanvue/ui",
3
- "version": "2.20.0",
3
+ "version": "2.21.0",
4
4
  "description": "React component library built with Tailwind CSS for Fanvue ecosystem",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org",