@fanvue/ui 2.3.0 → 2.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/cjs/components/Icons/FacebookIcon.cjs +48 -0
- package/dist/cjs/components/Icons/FacebookIcon.cjs.map +1 -0
- package/dist/cjs/components/Icons/GoogleIcon.cjs +71 -0
- package/dist/cjs/components/Icons/GoogleIcon.cjs.map +1 -0
- package/dist/cjs/components/Icons/TwitterIcon.cjs +48 -0
- package/dist/cjs/components/Icons/TwitterIcon.cjs.map +1 -0
- package/dist/cjs/index.cjs +6 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/components/Icons/FacebookIcon.mjs +31 -0
- package/dist/components/Icons/FacebookIcon.mjs.map +1 -0
- package/dist/components/Icons/GoogleIcon.mjs +54 -0
- package/dist/components/Icons/GoogleIcon.mjs.map +1 -0
- package/dist/components/Icons/TwitterIcon.mjs +31 -0
- package/dist/components/Icons/TwitterIcon.mjs.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,48 @@
|
|
|
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 cn = require("../../utils/cn.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 FacebookIcon = React__namespace.forwardRef(
|
|
25
|
+
({ className, ...props }, ref) => {
|
|
26
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
27
|
+
"svg",
|
|
28
|
+
{
|
|
29
|
+
ref,
|
|
30
|
+
viewBox: "0 0 14 14",
|
|
31
|
+
fill: "none",
|
|
32
|
+
"aria-hidden": "true",
|
|
33
|
+
className: cn.cn("size-6", className),
|
|
34
|
+
...props,
|
|
35
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
fill: "currentColor",
|
|
39
|
+
d: "M5.30892 13.8448V9.17272H3.86575V7.02576H5.30892V6.1007C5.30892 3.70902 6.38692 2.6007 8.72608 2.6007C8.96 2.6007 9.28317 2.62529 9.58242 2.66101C9.80656 2.68416 10.0289 2.7223 10.248 2.77518V4.7219C10.1213 4.71004 9.99428 4.70301 9.86708 4.70082C9.72459 4.69711 9.58204 4.69535 9.4395 4.69555C9.02708 4.69555 8.70508 4.75176 8.46242 4.87646C8.29928 4.95861 8.16214 5.08471 8.06633 5.24063C7.91583 5.48653 7.84817 5.82318 7.84817 6.26639V7.02576H10.1342L9.90908 8.25703L9.74167 9.17272H7.84817V14C11.3143 13.5796 14 10.6177 14 7.02576C14 3.14578 10.8657 0 7 0C3.13425 0 0 3.14578 0 7.02576C0 10.3208 2.25983 13.0855 5.30892 13.8448Z"
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
FacebookIcon.displayName = "FacebookIcon";
|
|
47
|
+
exports.FacebookIcon = FacebookIcon;
|
|
48
|
+
//# sourceMappingURL=FacebookIcon.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookIcon.cjs","sources":["../../../../src/components/Icons/FacebookIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const FacebookIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M5.30892 13.8448V9.17272H3.86575V7.02576H5.30892V6.1007C5.30892 3.70902 6.38692 2.6007 8.72608 2.6007C8.96 2.6007 9.28317 2.62529 9.58242 2.66101C9.80656 2.68416 10.0289 2.7223 10.248 2.77518V4.7219C10.1213 4.71004 9.99428 4.70301 9.86708 4.70082C9.72459 4.69711 9.58204 4.69535 9.4395 4.69555C9.02708 4.69555 8.70508 4.75176 8.46242 4.87646C8.29928 4.95861 8.16214 5.08471 8.06633 5.24063C7.91583 5.48653 7.84817 5.82318 7.84817 6.26639V7.02576H10.1342L9.90908 8.25703L9.74167 9.17272H7.84817V14C11.3143 13.5796 14 10.6177 14 7.02576C14 3.14578 10.8657 0 7 0C3.13425 0 0 3.14578 0 7.02576C0 10.3208 2.25983 13.0855 5.30892 13.8448Z\"\n />\n </svg>\n );\n },\n);\n\nFacebookIcon.displayName = \"FacebookIcon\";\n"],"names":["React","jsx","cn"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAIO,MAAM,eAAeA,iBAAM;AAAA,EAChC,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACEC,2BAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAWC,GAAAA,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAAD,2BAAAA;AAAAA,UAAC;AAAA,UAAA;AAAA,YACC,MAAK;AAAA,YACL,GAAE;AAAA,UAAA;AAAA,QAAA;AAAA,MACJ;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,aAAa,cAAc;;"}
|
|
@@ -0,0 +1,71 @@
|
|
|
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 cn = require("../../utils/cn.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 GoogleIcon = React__namespace.forwardRef(
|
|
25
|
+
({ className, ...props }, ref) => {
|
|
26
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
27
|
+
"svg",
|
|
28
|
+
{
|
|
29
|
+
ref,
|
|
30
|
+
viewBox: "0 0 14 14",
|
|
31
|
+
fill: "none",
|
|
32
|
+
"aria-hidden": "true",
|
|
33
|
+
className: cn.cn("size-6", className),
|
|
34
|
+
...props,
|
|
35
|
+
children: [
|
|
36
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
37
|
+
"path",
|
|
38
|
+
{
|
|
39
|
+
fill: "currentColor",
|
|
40
|
+
d: "M13.9998 7.1514C13.9998 6.67404 13.946 6.19668 13.8922 5.71932H7.1355V8.42834H10.9654C10.803 9.27726 10.3174 10.073 9.56208 10.5504V12.3096H11.8811C13.2295 11.1036 13.9998 9.29864 13.9998 7.1514Z"
|
|
41
|
+
}
|
|
42
|
+
),
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
fill: "currentColor",
|
|
47
|
+
d: "M7.13543 14.0001C9.07918 14.0001 10.6985 13.3637 11.8811 12.3095L9.56201 10.5503C8.91402 10.9745 8.10405 11.2399 7.13543 11.2399C5.30037 11.2399 3.6811 10.0194 3.14181 8.32117H0.769226V10.1272C1.97847 12.5186 4.40679 14.0001 7.13543 14.0001Z"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
51
|
+
"path",
|
|
52
|
+
{
|
|
53
|
+
fill: "currentColor",
|
|
54
|
+
d: "M3.14189 8.32119C2.81917 7.47226 2.81917 6.51704 3.14189 5.61497V3.80896H0.769305C-0.256002 5.77374 -0.256002 8.10928 0.769305 10.1272L3.14189 8.32119Z"
|
|
55
|
+
}
|
|
56
|
+
),
|
|
57
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
fill: "currentColor",
|
|
61
|
+
d: "M7.13548 2.76042C8.1579 2.76042 9.12652 3.13291 9.88188 3.82475L11.9349 1.80997C10.6447 0.640284 8.91407 -0.0492764 7.18927 0.00386894C4.46063 0.00386894 1.97852 1.48536 0.822762 3.87678L3.19535 5.68279C3.68085 3.98459 5.30012 2.76042 7.13548 2.76042Z"
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
);
|
|
69
|
+
GoogleIcon.displayName = "GoogleIcon";
|
|
70
|
+
exports.GoogleIcon = GoogleIcon;
|
|
71
|
+
//# sourceMappingURL=GoogleIcon.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GoogleIcon.cjs","sources":["../../../../src/components/Icons/GoogleIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const GoogleIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M13.9998 7.1514C13.9998 6.67404 13.946 6.19668 13.8922 5.71932H7.1355V8.42834H10.9654C10.803 9.27726 10.3174 10.073 9.56208 10.5504V12.3096H11.8811C13.2295 11.1036 13.9998 9.29864 13.9998 7.1514Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M7.13543 14.0001C9.07918 14.0001 10.6985 13.3637 11.8811 12.3095L9.56201 10.5503C8.91402 10.9745 8.10405 11.2399 7.13543 11.2399C5.30037 11.2399 3.6811 10.0194 3.14181 8.32117H0.769226V10.1272C1.97847 12.5186 4.40679 14.0001 7.13543 14.0001Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M3.14189 8.32119C2.81917 7.47226 2.81917 6.51704 3.14189 5.61497V3.80896H0.769305C-0.256002 5.77374 -0.256002 8.10928 0.769305 10.1272L3.14189 8.32119Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M7.13548 2.76042C8.1579 2.76042 9.12652 3.13291 9.88188 3.82475L11.9349 1.80997C10.6447 0.640284 8.91407 -0.0492764 7.18927 0.00386894C4.46063 0.00386894 1.97852 1.48536 0.822762 3.87678L3.19535 5.68279C3.68085 3.98459 5.30012 2.76042 7.13548 2.76042Z\"\n />\n </svg>\n );\n },\n);\n\nGoogleIcon.displayName = \"GoogleIcon\";\n"],"names":["React","jsxs","cn","jsx"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAIO,MAAM,aAAaA,iBAAM;AAAA,EAC9B,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACEC,2BAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAWC,GAAAA,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAA;AAAA,UAAAC,2BAAAA;AAAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJA,2BAAAA;AAAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJA,2BAAAA;AAAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJA,2BAAAA;AAAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,QACJ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,WAAW,cAAc;;"}
|
|
@@ -0,0 +1,48 @@
|
|
|
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 cn = require("../../utils/cn.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 TwitterIcon = React__namespace.forwardRef(
|
|
25
|
+
({ className, ...props }, ref) => {
|
|
26
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
27
|
+
"svg",
|
|
28
|
+
{
|
|
29
|
+
ref,
|
|
30
|
+
viewBox: "0 0 14 14",
|
|
31
|
+
fill: "none",
|
|
32
|
+
"aria-hidden": "true",
|
|
33
|
+
className: cn.cn("size-6", className),
|
|
34
|
+
...props,
|
|
35
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
fill: "currentColor",
|
|
39
|
+
d: "M11.0306 0H13.1817L8.49148 5.57953L14 13.1596H9.6908L6.30348 8.55739L2.42757 13.1596H0.275308L5.28626 7.19433L0 0.000606537H4.4275L7.4962 4.20241L11.0306 0ZM10.2752 11.817H11.4665L3.78737 1.26538H2.50918L10.2752 11.817Z"
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
TwitterIcon.displayName = "TwitterIcon";
|
|
47
|
+
exports.TwitterIcon = TwitterIcon;
|
|
48
|
+
//# sourceMappingURL=TwitterIcon.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TwitterIcon.cjs","sources":["../../../../src/components/Icons/TwitterIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const TwitterIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M11.0306 0H13.1817L8.49148 5.57953L14 13.1596H9.6908L6.30348 8.55739L2.42757 13.1596H0.275308L5.28626 7.19433L0 0.000606537H4.4275L7.4962 4.20241L11.0306 0ZM10.2752 11.817H11.4665L3.78737 1.26538H2.50918L10.2752 11.817Z\"\n />\n </svg>\n );\n },\n);\n\nTwitterIcon.displayName = \"TwitterIcon\";\n"],"names":["React","jsx","cn"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAIO,MAAM,cAAcA,iBAAM;AAAA,EAC/B,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACEC,2BAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAWC,GAAAA,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAAD,2BAAAA;AAAAA,UAAC;AAAA,UAAA;AAAA,YACC,MAAK;AAAA,YACL,GAAE;AAAA,UAAA;AAAA,QAAA;AAAA,MACJ;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,YAAY,cAAc;;"}
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -71,6 +71,7 @@ const ExpandIcon = require("./components/Icons/ExpandIcon.cjs");
|
|
|
71
71
|
const EyeClosedIcon = require("./components/Icons/EyeClosedIcon.cjs");
|
|
72
72
|
const EyeIcon = require("./components/Icons/EyeIcon.cjs");
|
|
73
73
|
const EyeSlashIcon = require("./components/Icons/EyeSlashIcon.cjs");
|
|
74
|
+
const FacebookIcon = require("./components/Icons/FacebookIcon.cjs");
|
|
74
75
|
const FlagIcon = require("./components/Icons/FlagIcon.cjs");
|
|
75
76
|
const FlameIcon = require("./components/Icons/FlameIcon.cjs");
|
|
76
77
|
const FolderIcon = require("./components/Icons/FolderIcon.cjs");
|
|
@@ -78,6 +79,7 @@ const ForwardIcon = require("./components/Icons/ForwardIcon.cjs");
|
|
|
78
79
|
const GalleryIcon = require("./components/Icons/GalleryIcon.cjs");
|
|
79
80
|
const GenderIcon = require("./components/Icons/GenderIcon.cjs");
|
|
80
81
|
const GiftIcon = require("./components/Icons/GiftIcon.cjs");
|
|
82
|
+
const GoogleIcon = require("./components/Icons/GoogleIcon.cjs");
|
|
81
83
|
const HelpIcon = require("./components/Icons/HelpIcon.cjs");
|
|
82
84
|
const HomeIcon = require("./components/Icons/HomeIcon.cjs");
|
|
83
85
|
const HourglassIcon = require("./components/Icons/HourglassIcon.cjs");
|
|
@@ -135,6 +137,7 @@ const TickCircleOffIcon = require("./components/Icons/TickCircleOffIcon.cjs");
|
|
|
135
137
|
const TickIcon = require("./components/Icons/TickIcon.cjs");
|
|
136
138
|
const TrashBinIcon = require("./components/Icons/TrashBinIcon.cjs");
|
|
137
139
|
const TrophyIcon = require("./components/Icons/TrophyIcon.cjs");
|
|
140
|
+
const TwitterIcon = require("./components/Icons/TwitterIcon.cjs");
|
|
138
141
|
const UploadCloudIcon = require("./components/Icons/UploadCloudIcon.cjs");
|
|
139
142
|
const UploadIcon = require("./components/Icons/UploadIcon.cjs");
|
|
140
143
|
const UserCircleIcon = require("./components/Icons/UserCircleIcon.cjs");
|
|
@@ -284,6 +287,7 @@ exports.ExpandIcon = ExpandIcon.ExpandIcon;
|
|
|
284
287
|
exports.EyeClosedIcon = EyeClosedIcon.EyeClosedIcon;
|
|
285
288
|
exports.EyeIcon = EyeIcon.EyeIcon;
|
|
286
289
|
exports.EyeSlashIcon = EyeSlashIcon.EyeSlashIcon;
|
|
290
|
+
exports.FacebookIcon = FacebookIcon.FacebookIcon;
|
|
287
291
|
exports.FlagIcon = FlagIcon.FlagIcon;
|
|
288
292
|
exports.FlameIcon = FlameIcon.FlameIcon;
|
|
289
293
|
exports.FolderIcon = FolderIcon.FolderIcon;
|
|
@@ -291,6 +295,7 @@ exports.ForwardIcon = ForwardIcon.ForwardIcon;
|
|
|
291
295
|
exports.GalleryIcon = GalleryIcon.GalleryIcon;
|
|
292
296
|
exports.GenderIcon = GenderIcon.GenderIcon;
|
|
293
297
|
exports.GiftIcon = GiftIcon.GiftIcon;
|
|
298
|
+
exports.GoogleIcon = GoogleIcon.GoogleIcon;
|
|
294
299
|
exports.HelpIcon = HelpIcon.HelpIcon;
|
|
295
300
|
exports.HomeIcon = HomeIcon.HomeIcon;
|
|
296
301
|
exports.HourglassIcon = HourglassIcon.HourglassIcon;
|
|
@@ -348,6 +353,7 @@ exports.TickCircleOffIcon = TickCircleOffIcon.TickCircleOffIcon;
|
|
|
348
353
|
exports.TickIcon = TickIcon.TickIcon;
|
|
349
354
|
exports.TrashBinIcon = TrashBinIcon.TrashBinIcon;
|
|
350
355
|
exports.TrophyIcon = TrophyIcon.TrophyIcon;
|
|
356
|
+
exports.TwitterIcon = TwitterIcon.TwitterIcon;
|
|
351
357
|
exports.UploadCloudIcon = UploadCloudIcon.UploadCloudIcon;
|
|
352
358
|
exports.UploadIcon = UploadIcon.UploadIcon;
|
|
353
359
|
exports.UserCircleIcon = UserCircleIcon.UserCircleIcon;
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { cn } from "../../utils/cn.mjs";
|
|
5
|
+
const FacebookIcon = React.forwardRef(
|
|
6
|
+
({ className, ...props }, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
ref,
|
|
11
|
+
viewBox: "0 0 14 14",
|
|
12
|
+
fill: "none",
|
|
13
|
+
"aria-hidden": "true",
|
|
14
|
+
className: cn("size-6", className),
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fill: "currentColor",
|
|
20
|
+
d: "M5.30892 13.8448V9.17272H3.86575V7.02576H5.30892V6.1007C5.30892 3.70902 6.38692 2.6007 8.72608 2.6007C8.96 2.6007 9.28317 2.62529 9.58242 2.66101C9.80656 2.68416 10.0289 2.7223 10.248 2.77518V4.7219C10.1213 4.71004 9.99428 4.70301 9.86708 4.70082C9.72459 4.69711 9.58204 4.69535 9.4395 4.69555C9.02708 4.69555 8.70508 4.75176 8.46242 4.87646C8.29928 4.95861 8.16214 5.08471 8.06633 5.24063C7.91583 5.48653 7.84817 5.82318 7.84817 6.26639V7.02576H10.1342L9.90908 8.25703L9.74167 9.17272H7.84817V14C11.3143 13.5796 14 10.6177 14 7.02576C14 3.14578 10.8657 0 7 0C3.13425 0 0 3.14578 0 7.02576C0 10.3208 2.25983 13.0855 5.30892 13.8448Z"
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
FacebookIcon.displayName = "FacebookIcon";
|
|
28
|
+
export {
|
|
29
|
+
FacebookIcon
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=FacebookIcon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookIcon.mjs","sources":["../../../src/components/Icons/FacebookIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const FacebookIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M5.30892 13.8448V9.17272H3.86575V7.02576H5.30892V6.1007C5.30892 3.70902 6.38692 2.6007 8.72608 2.6007C8.96 2.6007 9.28317 2.62529 9.58242 2.66101C9.80656 2.68416 10.0289 2.7223 10.248 2.77518V4.7219C10.1213 4.71004 9.99428 4.70301 9.86708 4.70082C9.72459 4.69711 9.58204 4.69535 9.4395 4.69555C9.02708 4.69555 8.70508 4.75176 8.46242 4.87646C8.29928 4.95861 8.16214 5.08471 8.06633 5.24063C7.91583 5.48653 7.84817 5.82318 7.84817 6.26639V7.02576H10.1342L9.90908 8.25703L9.74167 9.17272H7.84817V14C11.3143 13.5796 14 10.6177 14 7.02576C14 3.14578 10.8657 0 7 0C3.13425 0 0 3.14578 0 7.02576C0 10.3208 2.25983 13.0855 5.30892 13.8448Z\"\n />\n </svg>\n );\n },\n);\n\nFacebookIcon.displayName = \"FacebookIcon\";\n"],"names":[],"mappings":";;;;AAIO,MAAM,eAAe,MAAM;AAAA,EAChC,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACE;AAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAW,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAA;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,MAAK;AAAA,YACL,GAAE;AAAA,UAAA;AAAA,QAAA;AAAA,MACJ;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,aAAa,cAAc;"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { cn } from "../../utils/cn.mjs";
|
|
5
|
+
const GoogleIcon = React.forwardRef(
|
|
6
|
+
({ className, ...props }, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsxs(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
ref,
|
|
11
|
+
viewBox: "0 0 14 14",
|
|
12
|
+
fill: "none",
|
|
13
|
+
"aria-hidden": "true",
|
|
14
|
+
className: cn("size-6", className),
|
|
15
|
+
...props,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fill: "currentColor",
|
|
21
|
+
d: "M13.9998 7.1514C13.9998 6.67404 13.946 6.19668 13.8922 5.71932H7.1355V8.42834H10.9654C10.803 9.27726 10.3174 10.073 9.56208 10.5504V12.3096H11.8811C13.2295 11.1036 13.9998 9.29864 13.9998 7.1514Z"
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
fill: "currentColor",
|
|
28
|
+
d: "M7.13543 14.0001C9.07918 14.0001 10.6985 13.3637 11.8811 12.3095L9.56201 10.5503C8.91402 10.9745 8.10405 11.2399 7.13543 11.2399C5.30037 11.2399 3.6811 10.0194 3.14181 8.32117H0.769226V10.1272C1.97847 12.5186 4.40679 14.0001 7.13543 14.0001Z"
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
"path",
|
|
33
|
+
{
|
|
34
|
+
fill: "currentColor",
|
|
35
|
+
d: "M3.14189 8.32119C2.81917 7.47226 2.81917 6.51704 3.14189 5.61497V3.80896H0.769305C-0.256002 5.77374 -0.256002 8.10928 0.769305 10.1272L3.14189 8.32119Z"
|
|
36
|
+
}
|
|
37
|
+
),
|
|
38
|
+
/* @__PURE__ */ jsx(
|
|
39
|
+
"path",
|
|
40
|
+
{
|
|
41
|
+
fill: "currentColor",
|
|
42
|
+
d: "M7.13548 2.76042C8.1579 2.76042 9.12652 3.13291 9.88188 3.82475L11.9349 1.80997C10.6447 0.640284 8.91407 -0.0492764 7.18927 0.00386894C4.46063 0.00386894 1.97852 1.48536 0.822762 3.87678L3.19535 5.68279C3.68085 3.98459 5.30012 2.76042 7.13548 2.76042Z"
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
GoogleIcon.displayName = "GoogleIcon";
|
|
51
|
+
export {
|
|
52
|
+
GoogleIcon
|
|
53
|
+
};
|
|
54
|
+
//# sourceMappingURL=GoogleIcon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GoogleIcon.mjs","sources":["../../../src/components/Icons/GoogleIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const GoogleIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M13.9998 7.1514C13.9998 6.67404 13.946 6.19668 13.8922 5.71932H7.1355V8.42834H10.9654C10.803 9.27726 10.3174 10.073 9.56208 10.5504V12.3096H11.8811C13.2295 11.1036 13.9998 9.29864 13.9998 7.1514Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M7.13543 14.0001C9.07918 14.0001 10.6985 13.3637 11.8811 12.3095L9.56201 10.5503C8.91402 10.9745 8.10405 11.2399 7.13543 11.2399C5.30037 11.2399 3.6811 10.0194 3.14181 8.32117H0.769226V10.1272C1.97847 12.5186 4.40679 14.0001 7.13543 14.0001Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M3.14189 8.32119C2.81917 7.47226 2.81917 6.51704 3.14189 5.61497V3.80896H0.769305C-0.256002 5.77374 -0.256002 8.10928 0.769305 10.1272L3.14189 8.32119Z\"\n />\n <path\n fill=\"currentColor\"\n d=\"M7.13548 2.76042C8.1579 2.76042 9.12652 3.13291 9.88188 3.82475L11.9349 1.80997C10.6447 0.640284 8.91407 -0.0492764 7.18927 0.00386894C4.46063 0.00386894 1.97852 1.48536 0.822762 3.87678L3.19535 5.68279C3.68085 3.98459 5.30012 2.76042 7.13548 2.76042Z\"\n />\n </svg>\n );\n },\n);\n\nGoogleIcon.displayName = \"GoogleIcon\";\n"],"names":[],"mappings":";;;;AAIO,MAAM,aAAa,MAAM;AAAA,EAC9B,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACE;AAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAW,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAA;AAAA,UAAA;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJ;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJ;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,UAEJ;AAAA,YAAC;AAAA,YAAA;AAAA,cACC,MAAK;AAAA,cACL,GAAE;AAAA,YAAA;AAAA,UAAA;AAAA,QACJ;AAAA,MAAA;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,WAAW,cAAc;"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { cn } from "../../utils/cn.mjs";
|
|
5
|
+
const TwitterIcon = React.forwardRef(
|
|
6
|
+
({ className, ...props }, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
ref,
|
|
11
|
+
viewBox: "0 0 14 14",
|
|
12
|
+
fill: "none",
|
|
13
|
+
"aria-hidden": "true",
|
|
14
|
+
className: cn("size-6", className),
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
fill: "currentColor",
|
|
20
|
+
d: "M11.0306 0H13.1817L8.49148 5.57953L14 13.1596H9.6908L6.30348 8.55739L2.42757 13.1596H0.275308L5.28626 7.19433L0 0.000606537H4.4275L7.4962 4.20241L11.0306 0ZM10.2752 11.817H11.4665L3.78737 1.26538H2.50918L10.2752 11.817Z"
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
TwitterIcon.displayName = "TwitterIcon";
|
|
28
|
+
export {
|
|
29
|
+
TwitterIcon
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=TwitterIcon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TwitterIcon.mjs","sources":["../../../src/components/Icons/TwitterIcon.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { cn } from \"@/utils/cn\";\nimport type { IconProps } from \"./types\";\n\nexport const TwitterIcon = React.forwardRef<SVGSVGElement, IconProps>(\n ({ className, ...props }, ref) => {\n return (\n <svg\n ref={ref}\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n aria-hidden=\"true\"\n className={cn(\"size-6\", className)}\n {...props}\n >\n <path\n fill=\"currentColor\"\n d=\"M11.0306 0H13.1817L8.49148 5.57953L14 13.1596H9.6908L6.30348 8.55739L2.42757 13.1596H0.275308L5.28626 7.19433L0 0.000606537H4.4275L7.4962 4.20241L11.0306 0ZM10.2752 11.817H11.4665L3.78737 1.26538H2.50918L10.2752 11.817Z\"\n />\n </svg>\n );\n },\n);\n\nTwitterIcon.displayName = \"TwitterIcon\";\n"],"names":[],"mappings":";;;;AAIO,MAAM,cAAc,MAAM;AAAA,EAC/B,CAAC,EAAE,WAAW,GAAG,MAAA,GAAS,QAAQ;AAChC,WACE;AAAA,MAAC;AAAA,MAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,MAAK;AAAA,QACL,eAAY;AAAA,QACZ,WAAW,GAAG,UAAU,SAAS;AAAA,QAChC,GAAG;AAAA,QAEJ,UAAA;AAAA,UAAC;AAAA,UAAA;AAAA,YACC,MAAK;AAAA,YACL,GAAE;AAAA,UAAA;AAAA,QAAA;AAAA,MACJ;AAAA,IAAA;AAAA,EAGN;AACF;AAEA,YAAY,cAAc;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1298,6 +1298,10 @@ export declare const EyeSlashIcon: React_2.ForwardRefExoticComponent<React_2.SVG
|
|
|
1298
1298
|
className?: string;
|
|
1299
1299
|
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
1300
1300
|
|
|
1301
|
+
export declare const FacebookIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
1302
|
+
className?: string;
|
|
1303
|
+
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
1304
|
+
|
|
1301
1305
|
export declare const FlagIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
1302
1306
|
className?: string;
|
|
1303
1307
|
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
@@ -1326,6 +1330,10 @@ export declare const GiftIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttr
|
|
|
1326
1330
|
className?: string;
|
|
1327
1331
|
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
1328
1332
|
|
|
1333
|
+
export declare const GoogleIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
1334
|
+
className?: string;
|
|
1335
|
+
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
1336
|
+
|
|
1329
1337
|
export declare const HelpIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
1330
1338
|
className?: string;
|
|
1331
1339
|
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
@@ -2751,6 +2759,10 @@ export declare const TrophyIcon: React_2.ForwardRefExoticComponent<React_2.SVGAt
|
|
|
2751
2759
|
className?: string;
|
|
2752
2760
|
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
2753
2761
|
|
|
2762
|
+
export declare const TwitterIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
2763
|
+
className?: string;
|
|
2764
|
+
} & React_2.RefAttributes<SVGSVGElement>>;
|
|
2765
|
+
|
|
2754
2766
|
/** An upload-to-cloud icon with an upward arrow (20 × 20). */
|
|
2755
2767
|
export declare const UploadCloudIcon: React_2.ForwardRefExoticComponent<React_2.SVGAttributes<SVGSVGElement> & {
|
|
2756
2768
|
className?: string;
|
package/dist/index.mjs
CHANGED
|
@@ -69,6 +69,7 @@ import { ExpandIcon } from "./components/Icons/ExpandIcon.mjs";
|
|
|
69
69
|
import { EyeClosedIcon } from "./components/Icons/EyeClosedIcon.mjs";
|
|
70
70
|
import { EyeIcon } from "./components/Icons/EyeIcon.mjs";
|
|
71
71
|
import { EyeSlashIcon } from "./components/Icons/EyeSlashIcon.mjs";
|
|
72
|
+
import { FacebookIcon } from "./components/Icons/FacebookIcon.mjs";
|
|
72
73
|
import { FlagIcon } from "./components/Icons/FlagIcon.mjs";
|
|
73
74
|
import { FlameIcon } from "./components/Icons/FlameIcon.mjs";
|
|
74
75
|
import { FolderIcon } from "./components/Icons/FolderIcon.mjs";
|
|
@@ -76,6 +77,7 @@ import { ForwardIcon } from "./components/Icons/ForwardIcon.mjs";
|
|
|
76
77
|
import { GalleryIcon } from "./components/Icons/GalleryIcon.mjs";
|
|
77
78
|
import { GenderIcon } from "./components/Icons/GenderIcon.mjs";
|
|
78
79
|
import { GiftIcon } from "./components/Icons/GiftIcon.mjs";
|
|
80
|
+
import { GoogleIcon } from "./components/Icons/GoogleIcon.mjs";
|
|
79
81
|
import { HelpIcon } from "./components/Icons/HelpIcon.mjs";
|
|
80
82
|
import { HomeIcon } from "./components/Icons/HomeIcon.mjs";
|
|
81
83
|
import { HourglassIcon } from "./components/Icons/HourglassIcon.mjs";
|
|
@@ -133,6 +135,7 @@ import { TickCircleOffIcon } from "./components/Icons/TickCircleOffIcon.mjs";
|
|
|
133
135
|
import { TickIcon } from "./components/Icons/TickIcon.mjs";
|
|
134
136
|
import { TrashBinIcon } from "./components/Icons/TrashBinIcon.mjs";
|
|
135
137
|
import { TrophyIcon } from "./components/Icons/TrophyIcon.mjs";
|
|
138
|
+
import { TwitterIcon } from "./components/Icons/TwitterIcon.mjs";
|
|
136
139
|
import { UploadCloudIcon } from "./components/Icons/UploadCloudIcon.mjs";
|
|
137
140
|
import { UploadIcon } from "./components/Icons/UploadIcon.mjs";
|
|
138
141
|
import { UserCircleIcon } from "./components/Icons/UserCircleIcon.mjs";
|
|
@@ -281,6 +284,7 @@ export {
|
|
|
281
284
|
EyeClosedIcon,
|
|
282
285
|
EyeIcon,
|
|
283
286
|
EyeSlashIcon,
|
|
287
|
+
FacebookIcon,
|
|
284
288
|
FlagIcon,
|
|
285
289
|
FlameIcon,
|
|
286
290
|
FolderIcon,
|
|
@@ -288,6 +292,7 @@ export {
|
|
|
288
292
|
GalleryIcon,
|
|
289
293
|
GenderIcon,
|
|
290
294
|
GiftIcon,
|
|
295
|
+
GoogleIcon,
|
|
291
296
|
HelpIcon,
|
|
292
297
|
HomeIcon,
|
|
293
298
|
HourglassIcon,
|
|
@@ -405,6 +410,7 @@ export {
|
|
|
405
410
|
TooltipTrigger,
|
|
406
411
|
TrashBinIcon,
|
|
407
412
|
TrophyIcon,
|
|
413
|
+
TwitterIcon,
|
|
408
414
|
UploadCloudIcon,
|
|
409
415
|
UploadIcon,
|
|
410
416
|
UserCircleIcon,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|