@yuno-payments/dashboard-design-system 0.0.138-beta.2 → 0.0.139
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/components/atoms/filter-dropdown/filter-dropdown.js +75 -72
- package/dist/components/atoms/icon/aida-logo.d.ts +3 -0
- package/dist/components/atoms/icon/aida-logo.js +64 -0
- package/dist/components/atoms/icon/icon-list.d.ts +3 -0
- package/dist/components/atoms/icon/icon-list.js +398 -392
- package/dist/components/organisms/data-table/data-table.d.ts +24 -1
- package/dist/components/organisms/data-table/data-table.js +129 -105
- package/dist/components/organisms/data-table/data-table.types.d.ts +20 -0
- package/dist/components/organisms/data-table/hooks/use-data-table-columns.js +55 -39
- package/dist/components/organisms/data-table/hooks/use-data-table-state.d.ts +7 -2
- package/dist/components/organisms/data-table/hooks/use-data-table-state.js +80 -46
- package/dist/components/organisms/data-table/utils/data-table-constants.d.ts +6 -0
- package/dist/components/organisms/data-table/utils/data-table-constants.js +14 -8
- package/dist/components/organisms/data-table/utils/data-table-styles.d.ts +1652 -0
- package/dist/components/organisms/data-table/utils/data-table-styles.js +29 -14
- package/dist/node_modules/@phosphor-icons/react/dist/csr/File.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/csr/Table.es.js +8 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/File.es.js +30 -0
- package/dist/node_modules/@phosphor-icons/react/dist/defs/Table.es.js +30 -0
- package/dist/vendor/shadcn/table.js +1 -1
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { j as t } from "../../../_virtual/jsx-runtime.js";
|
|
2
|
-
import { forwardRef as j, useState as
|
|
3
|
-
import { Button as
|
|
4
|
-
import { Separator as
|
|
5
|
-
import { Badge as
|
|
2
|
+
import { forwardRef as j, useState as I, useRef as _, useCallback as K, useEffect as X } from "react";
|
|
3
|
+
import { Button as E } from "../../../vendor/shadcn/button.js";
|
|
4
|
+
import { Separator as k } from "../../../vendor/shadcn/separator.js";
|
|
5
|
+
import { Badge as S } from "../../../vendor/shadcn/badge.js";
|
|
6
6
|
import { Icon as b } from "../icon/icon.js";
|
|
7
|
-
import { FilterSection as
|
|
7
|
+
import { FilterSection as M } from "../filter/filter.js";
|
|
8
8
|
import { FilterDateRange as Y, FilterDateRangeValue as g } from "../filter/filter-date-range.js";
|
|
9
9
|
import { cn as c } from "../../../lib/utils.js";
|
|
10
|
-
const
|
|
11
|
-
({ icon:
|
|
10
|
+
const A = j(
|
|
11
|
+
({ icon: r, label: u, isActive: l = !1, showChevron: m = !1, className: h, ...o }, C) => /* @__PURE__ */ t.jsxs(
|
|
12
12
|
"button",
|
|
13
13
|
{
|
|
14
14
|
ref: C,
|
|
@@ -17,15 +17,15 @@ const M = j(
|
|
|
17
17
|
"hover:bg-secondary",
|
|
18
18
|
h
|
|
19
19
|
),
|
|
20
|
-
...
|
|
20
|
+
...o,
|
|
21
21
|
children: [
|
|
22
|
-
|
|
22
|
+
r && /* @__PURE__ */ t.jsx(
|
|
23
23
|
b,
|
|
24
24
|
{
|
|
25
|
-
name:
|
|
25
|
+
name: r,
|
|
26
26
|
className: c(
|
|
27
27
|
"size-4 shrink-0",
|
|
28
|
-
|
|
28
|
+
l ? "text-primary" : "text-foreground"
|
|
29
29
|
)
|
|
30
30
|
}
|
|
31
31
|
),
|
|
@@ -34,18 +34,18 @@ const M = j(
|
|
|
34
34
|
{
|
|
35
35
|
className: c(
|
|
36
36
|
"flex-1 text-sm font-normal text-left truncate",
|
|
37
|
-
|
|
37
|
+
l ? "font-medium text-primary" : "text-foreground"
|
|
38
38
|
),
|
|
39
39
|
children: u
|
|
40
40
|
}
|
|
41
41
|
),
|
|
42
|
-
(
|
|
42
|
+
(l || m) && /* @__PURE__ */ t.jsx(
|
|
43
43
|
b,
|
|
44
44
|
{
|
|
45
45
|
name: "CaretRight",
|
|
46
46
|
className: c(
|
|
47
47
|
"size-4 shrink-0",
|
|
48
|
-
|
|
48
|
+
l ? "text-primary" : "text-foreground"
|
|
49
49
|
)
|
|
50
50
|
}
|
|
51
51
|
)
|
|
@@ -53,9 +53,9 @@ const M = j(
|
|
|
53
53
|
}
|
|
54
54
|
)
|
|
55
55
|
);
|
|
56
|
-
|
|
57
|
-
const
|
|
58
|
-
({ items:
|
|
56
|
+
A.displayName = "FilterMenuItem";
|
|
57
|
+
const V = j(
|
|
58
|
+
({ items: r, activeItemId: u, onItemClick: l, className: m }, h) => /* @__PURE__ */ t.jsx(
|
|
59
59
|
"div",
|
|
60
60
|
{
|
|
61
61
|
ref: h,
|
|
@@ -63,35 +63,35 @@ const A = j(
|
|
|
63
63
|
"flex flex-col gap-2 w-64 h-full p-2 bg-surface border border-border rounded-md",
|
|
64
64
|
m
|
|
65
65
|
),
|
|
66
|
-
children:
|
|
67
|
-
|
|
66
|
+
children: r.map((o) => /* @__PURE__ */ t.jsx(
|
|
67
|
+
A,
|
|
68
68
|
{
|
|
69
|
-
icon:
|
|
70
|
-
label:
|
|
71
|
-
isActive: u ===
|
|
72
|
-
showChevron:
|
|
73
|
-
onClick: () =>
|
|
69
|
+
icon: o.icon,
|
|
70
|
+
label: o.label,
|
|
71
|
+
isActive: u === o.id,
|
|
72
|
+
showChevron: o.showChevron,
|
|
73
|
+
onClick: () => l?.(o.id)
|
|
74
74
|
},
|
|
75
|
-
|
|
75
|
+
o.id
|
|
76
76
|
))
|
|
77
77
|
}
|
|
78
78
|
)
|
|
79
79
|
);
|
|
80
|
-
|
|
80
|
+
V.displayName = "FilterMenu";
|
|
81
81
|
const $ = j(
|
|
82
82
|
({
|
|
83
|
-
filters:
|
|
83
|
+
filters: r,
|
|
84
84
|
buttonText: u = "Add filter",
|
|
85
|
-
appliedFilters:
|
|
85
|
+
appliedFilters: l = [],
|
|
86
86
|
onRemoveFilter: m,
|
|
87
87
|
onClearAllFilters: h,
|
|
88
|
-
maxVisibleTags:
|
|
88
|
+
maxVisibleTags: o = 4,
|
|
89
89
|
className: C,
|
|
90
|
-
disabled:
|
|
90
|
+
disabled: O = !1
|
|
91
91
|
}, x) => {
|
|
92
|
-
const [f, p] =
|
|
93
|
-
|
|
94
|
-
), N = _(null),
|
|
92
|
+
const [f, p] = I(!1), [v, w] = I(
|
|
93
|
+
r.length > 0 && r[0]?.id || ""
|
|
94
|
+
), N = _(null), R = K(
|
|
95
95
|
(n) => {
|
|
96
96
|
N.current = n, typeof x == "function" ? x(n) : x && (x.current = n);
|
|
97
97
|
},
|
|
@@ -99,45 +99,48 @@ const $ = j(
|
|
|
99
99
|
);
|
|
100
100
|
X(() => {
|
|
101
101
|
if (!f) return;
|
|
102
|
-
const n = (
|
|
103
|
-
const d =
|
|
102
|
+
const n = (s) => {
|
|
103
|
+
const d = s.target;
|
|
104
104
|
N.current?.contains(d) || d.closest?.(
|
|
105
105
|
"[data-radix-popper-content-wrapper], [data-radix-portal]"
|
|
106
106
|
) || d.closest?.(
|
|
107
107
|
".rdp, .rdp-root, [data-calendar]"
|
|
108
108
|
) || p(!1);
|
|
109
|
-
}, a = (
|
|
110
|
-
|
|
111
|
-
},
|
|
109
|
+
}, a = (s) => {
|
|
110
|
+
s.key === "Escape" && p(!1);
|
|
111
|
+
}, i = setTimeout(() => {
|
|
112
112
|
document.addEventListener("mousedown", n), document.addEventListener("keydown", a);
|
|
113
113
|
}, 0);
|
|
114
114
|
return () => {
|
|
115
|
-
clearTimeout(
|
|
115
|
+
clearTimeout(i), document.removeEventListener("mousedown", n), document.removeEventListener("keydown", a);
|
|
116
116
|
};
|
|
117
117
|
}, [f]);
|
|
118
|
-
const
|
|
119
|
-
if (
|
|
120
|
-
const
|
|
121
|
-
if (
|
|
122
|
-
const
|
|
123
|
-
if (
|
|
118
|
+
const z = l.length > 0, L = l.slice(0, o), y = l.length - o, T = (n) => {
|
|
119
|
+
if (r.find((s) => s.id === n)) return n;
|
|
120
|
+
const i = n.split("-");
|
|
121
|
+
if (i.length > 1) {
|
|
122
|
+
const s = i[0];
|
|
123
|
+
if (r.find((F) => F.id === s)) return s;
|
|
124
124
|
}
|
|
125
125
|
return n;
|
|
126
|
+
}, D = (n) => {
|
|
127
|
+
const a = T(n);
|
|
128
|
+
return r.find((s) => s.id === a)?.clearable !== !1;
|
|
126
129
|
}, P = (n) => {
|
|
127
|
-
const a =
|
|
130
|
+
const a = T(n);
|
|
128
131
|
w(a), p(!0);
|
|
129
|
-
}, B =
|
|
130
|
-
(n) =>
|
|
131
|
-
), U =
|
|
132
|
+
}, B = l.some(
|
|
133
|
+
(n) => D(n.id)
|
|
134
|
+
), U = r.map((n) => ({
|
|
132
135
|
id: n.id,
|
|
133
136
|
icon: n.icon,
|
|
134
137
|
label: n.label
|
|
135
|
-
})), e =
|
|
138
|
+
})), e = r.find((n) => n.id === v), H = () => {
|
|
136
139
|
if (!e) return null;
|
|
137
140
|
switch (e.type) {
|
|
138
141
|
case "checkbox":
|
|
139
142
|
return /* @__PURE__ */ t.jsx(
|
|
140
|
-
|
|
143
|
+
M,
|
|
141
144
|
{
|
|
142
145
|
title: e.label,
|
|
143
146
|
items: e.items || [],
|
|
@@ -154,7 +157,7 @@ const $ = j(
|
|
|
154
157
|
);
|
|
155
158
|
case "radio":
|
|
156
159
|
return /* @__PURE__ */ t.jsx(
|
|
157
|
-
|
|
160
|
+
M,
|
|
158
161
|
{
|
|
159
162
|
type: "radio",
|
|
160
163
|
title: e.label,
|
|
@@ -173,10 +176,10 @@ const $ = j(
|
|
|
173
176
|
case "date": {
|
|
174
177
|
const n = (a) => {
|
|
175
178
|
if (e.onDateValueChange?.(a), a === g.CUSTOM && !e.dateInit && !e.dateEnd) {
|
|
176
|
-
const
|
|
177
|
-
|
|
178
|
-
const d = new Date(
|
|
179
|
-
d.setHours(0, 0, 0, 0), e.onDateInitChange?.(d), e.onDateEndChange?.(
|
|
179
|
+
const i = /* @__PURE__ */ new Date(), s = new Date(i);
|
|
180
|
+
s.setHours(23, 59, 59, 999);
|
|
181
|
+
const d = new Date(i);
|
|
182
|
+
d.setHours(0, 0, 0, 0), e.onDateInitChange?.(d), e.onDateEndChange?.(s), e.startTime || e.onStartTimeChange?.("00:00:00"), e.endTime || e.onEndTimeChange?.("23:59:59");
|
|
180
183
|
}
|
|
181
184
|
};
|
|
182
185
|
return /* @__PURE__ */ t.jsx(
|
|
@@ -211,31 +214,31 @@ const $ = j(
|
|
|
211
214
|
return /* @__PURE__ */ t.jsxs(
|
|
212
215
|
"div",
|
|
213
216
|
{
|
|
214
|
-
ref:
|
|
217
|
+
ref: R,
|
|
215
218
|
className: c("flex flex-col gap-1 relative", C),
|
|
216
219
|
children: [
|
|
217
220
|
/* @__PURE__ */ t.jsxs("div", { className: "flex items-center gap-4", children: [
|
|
218
221
|
/* @__PURE__ */ t.jsxs(
|
|
219
|
-
|
|
222
|
+
E,
|
|
220
223
|
{
|
|
221
224
|
variant: "outline",
|
|
222
225
|
size: "sm",
|
|
223
226
|
className: "h-8 gap-2 px-3 py-2 border-border dark:bg-white/[0.045]",
|
|
224
227
|
onClick: () => p(!f),
|
|
225
|
-
disabled:
|
|
228
|
+
disabled: O,
|
|
226
229
|
children: [
|
|
227
230
|
/* @__PURE__ */ t.jsx(b, { name: "FunnelSimple", className: "size-4" }),
|
|
228
231
|
/* @__PURE__ */ t.jsx("span", { className: "text-xs font-medium leading-none", children: u })
|
|
229
232
|
]
|
|
230
233
|
}
|
|
231
234
|
),
|
|
232
|
-
|
|
233
|
-
/* @__PURE__ */ t.jsx(
|
|
235
|
+
z ? /* @__PURE__ */ t.jsxs(t.Fragment, { children: [
|
|
236
|
+
/* @__PURE__ */ t.jsx(k, { orientation: "vertical", className: "h-5" }),
|
|
234
237
|
/* @__PURE__ */ t.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
235
|
-
|
|
236
|
-
const a =
|
|
238
|
+
L.map((n) => {
|
|
239
|
+
const a = D(n.id);
|
|
237
240
|
return /* @__PURE__ */ t.jsxs(
|
|
238
|
-
|
|
241
|
+
S,
|
|
239
242
|
{
|
|
240
243
|
variant: "secondary",
|
|
241
244
|
className: "h-8 gap-2 px-3 py-2 shadow-xs cursor-pointer border-border dark:bg-white/[0.045]",
|
|
@@ -245,8 +248,8 @@ const $ = j(
|
|
|
245
248
|
m && a && /* @__PURE__ */ t.jsx(
|
|
246
249
|
"button",
|
|
247
250
|
{
|
|
248
|
-
onClick: (
|
|
249
|
-
|
|
251
|
+
onClick: (i) => {
|
|
252
|
+
i.stopPropagation(), m(n.id);
|
|
250
253
|
},
|
|
251
254
|
className: "inline-flex items-center justify-center",
|
|
252
255
|
"aria-label": `Remove ${n.label} filter`,
|
|
@@ -258,13 +261,13 @@ const $ = j(
|
|
|
258
261
|
n.id
|
|
259
262
|
);
|
|
260
263
|
}),
|
|
261
|
-
y > 0 && /* @__PURE__ */ t.jsx(
|
|
264
|
+
y > 0 && /* @__PURE__ */ t.jsx(S, { variant: "default", className: "h-8 px-3 py-2 shadow-xs", children: /* @__PURE__ */ t.jsxs("span", { className: "text-xs font-medium leading-none", children: [
|
|
262
265
|
"+",
|
|
263
266
|
y,
|
|
264
267
|
" more"
|
|
265
268
|
] }) }),
|
|
266
269
|
h && B && /* @__PURE__ */ t.jsx(
|
|
267
|
-
|
|
270
|
+
E,
|
|
268
271
|
{
|
|
269
272
|
variant: "ghost",
|
|
270
273
|
size: "sm",
|
|
@@ -275,7 +278,7 @@ const $ = j(
|
|
|
275
278
|
)
|
|
276
279
|
] })
|
|
277
280
|
] }) : /* @__PURE__ */ t.jsxs(t.Fragment, { children: [
|
|
278
|
-
/* @__PURE__ */ t.jsx(
|
|
281
|
+
/* @__PURE__ */ t.jsx(k, { orientation: "vertical", className: "h-5" }),
|
|
279
282
|
/* @__PURE__ */ t.jsx("span", { className: "text-sm font-normal text-muted-foreground", children: "No filters applied" })
|
|
280
283
|
] })
|
|
281
284
|
] }),
|
|
@@ -291,7 +294,7 @@ const $ = j(
|
|
|
291
294
|
),
|
|
292
295
|
children: [
|
|
293
296
|
/* @__PURE__ */ t.jsx(
|
|
294
|
-
|
|
297
|
+
V,
|
|
295
298
|
{
|
|
296
299
|
items: U,
|
|
297
300
|
activeItemId: v,
|
|
@@ -310,6 +313,6 @@ const $ = j(
|
|
|
310
313
|
$.displayName = "FilterDropdown";
|
|
311
314
|
export {
|
|
312
315
|
$ as FilterDropdown,
|
|
313
|
-
|
|
314
|
-
|
|
316
|
+
V as FilterMenu,
|
|
317
|
+
A as FilterMenuItem
|
|
315
318
|
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { j as s } from "../../../_virtual/jsx-runtime.js";
|
|
2
|
+
const i = ({ size: C = 16, ...t }) => /* @__PURE__ */ s.jsxs(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
width: C,
|
|
6
|
+
height: C,
|
|
7
|
+
viewBox: "0 0 32 32",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...t,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ s.jsx(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M22.5987 5.33325C21.7107 7.76002 20.9907 8.47896 18.565 9.36657C20.9907 10.2545 21.7107 10.9746 22.5987 13.4003C23.4867 10.9746 24.2064 10.2545 26.632 9.36657C24.2064 8.47896 23.4867 7.76002 22.5987 5.33325Z",
|
|
16
|
+
fill: "url(#paint0_linear_12357_32157)"
|
|
17
|
+
}
|
|
18
|
+
),
|
|
19
|
+
/* @__PURE__ */ s.jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M13.7673 19.5838H18.8632C18.9599 19.5838 19.0557 19.5641 19.1446 19.526C19.2336 19.4879 19.3139 19.4321 19.3806 19.3621C19.4474 19.2921 19.4993 19.2092 19.5331 19.1186C19.567 19.0279 19.5821 18.9313 19.5775 18.8347C19.3936 15.3146 17.913 11.9873 15.4211 9.49435C12.9292 7.0014 9.60247 5.51937 6.0825 5.33405C5.98585 5.32949 5.88927 5.34459 5.79861 5.37842C5.70796 5.41226 5.62511 5.46414 5.55508 5.53092C5.48504 5.59769 5.42929 5.67798 5.39117 5.76693C5.35306 5.85587 5.33339 5.95162 5.33334 6.04839V11.7631C5.33479 11.9429 5.40368 12.1157 5.5264 12.2471C5.64912 12.3786 5.81672 12.4592 5.99602 12.473C7.49759 12.6156 8.91561 13.2294 10.0473 14.2266C11.179 15.2237 11.9665 16.5532 12.2971 18.0248C12.3447 18.2304 12.3397 18.4446 12.2823 18.6477C12.225 18.8507 12.1172 19.036 11.9691 19.1862C11.8543 19.3013 11.7179 19.3925 11.5678 19.4548C11.4176 19.517 11.2567 19.5491 11.0941 19.549H6.04656C5.9529 19.549 5.86016 19.5674 5.77363 19.6033C5.6871 19.6391 5.60847 19.6917 5.54224 19.7579C5.47601 19.8241 5.42348 19.9028 5.38764 19.9893C5.35179 20.0758 5.33334 20.1686 5.33334 20.2622V25.9534C5.3332 26.047 5.35151 26.1397 5.38723 26.2262C5.42295 26.3127 5.47538 26.3914 5.54152 26.4576C5.60765 26.5239 5.6862 26.5764 5.77267 26.6123C5.85914 26.6481 5.95183 26.6666 6.04544 26.6666H11.7321C11.8257 26.6666 11.9184 26.6481 12.0049 26.6123C12.0913 26.5764 12.1699 26.5239 12.236 26.4576C12.3022 26.3914 12.3546 26.3127 12.3903 26.2262C12.426 26.1397 12.4443 26.047 12.4442 25.9534V20.8991C12.4444 20.5717 12.5745 20.2579 12.8059 20.0263L12.889 19.9421C13.0038 19.8271 13.1402 19.7358 13.2903 19.6735C13.4404 19.6113 13.6014 19.5793 13.7639 19.5793",
|
|
23
|
+
fill: "url(#paint1_linear_12357_32157)"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ s.jsxs("defs", { children: [
|
|
27
|
+
/* @__PURE__ */ s.jsxs(
|
|
28
|
+
"linearGradient",
|
|
29
|
+
{
|
|
30
|
+
id: "paint0_linear_12357_32157",
|
|
31
|
+
x1: "19.6597",
|
|
32
|
+
y1: "4.82531",
|
|
33
|
+
x2: "26.6515",
|
|
34
|
+
y2: "9.13909",
|
|
35
|
+
gradientUnits: "userSpaceOnUse",
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ s.jsx("stop", { stopColor: "#D073F6" }),
|
|
38
|
+
/* @__PURE__ */ s.jsx("stop", { offset: "1", stopColor: "#5E77FD" })
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ s.jsxs(
|
|
43
|
+
"linearGradient",
|
|
44
|
+
{
|
|
45
|
+
id: "paint1_linear_12357_32157",
|
|
46
|
+
x1: "7.26631",
|
|
47
|
+
y1: "3.98998",
|
|
48
|
+
x2: "21.839",
|
|
49
|
+
y2: "9.9936",
|
|
50
|
+
gradientUnits: "userSpaceOnUse",
|
|
51
|
+
children: [
|
|
52
|
+
/* @__PURE__ */ s.jsx("stop", { stopColor: "#D073F6" }),
|
|
53
|
+
/* @__PURE__ */ s.jsx("stop", { offset: "0.5", stopColor: "#5E77FD" }),
|
|
54
|
+
/* @__PURE__ */ s.jsx("stop", { offset: "1", stopColor: "#21B8F2" })
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
)
|
|
58
|
+
] })
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
);
|
|
62
|
+
export {
|
|
63
|
+
i as default
|
|
64
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const IconList: {
|
|
2
|
+
AidaLogo: ({ size, ...props }: import('@phosphor-icons/react').IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
3
|
Activity: import('@phosphor-icons/react').Icon;
|
|
3
4
|
FileSearch: import('@phosphor-icons/react').Icon;
|
|
4
5
|
MagnifyingGlass: import('@phosphor-icons/react').Icon;
|
|
@@ -142,6 +143,8 @@ declare const IconList: {
|
|
|
142
143
|
ToggleRight: import('@phosphor-icons/react').Icon;
|
|
143
144
|
ArrowCircleUp: import('@phosphor-icons/react').Icon;
|
|
144
145
|
ArrowUp: import('@phosphor-icons/react').Icon;
|
|
146
|
+
File: import('@phosphor-icons/react').Icon;
|
|
147
|
+
Table: import('@phosphor-icons/react').Icon;
|
|
145
148
|
ArrowDown: import('@phosphor-icons/react').Icon;
|
|
146
149
|
ArrowUpRight: import('@phosphor-icons/react').Icon;
|
|
147
150
|
PlayCircle: import('@phosphor-icons/react').Icon;
|