Skip to content

Commit 3c1b0c6

Browse files
committed
Add dashboard icon whitelist entries
1 parent 684c700 commit 3c1b0c6

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/lib/dashboardLinks.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ import {
44
Bot,
55
ChartNoAxesCombined,
66
Container,
7+
Database,
78
Film,
89
Gauge,
910
HardDrive,
1011
HeartPulse,
1112
KeyRound,
1213
Network,
1314
Send,
15+
WalletCards,
1416
} from "lucide-react";
1517

1618
export type DashboardConfig = {
@@ -24,13 +26,15 @@ export type LinkIconName =
2426
| "Bot"
2527
| "ChartNoAxesCombined"
2628
| "Container"
29+
| "Database"
2730
| "Film"
2831
| "Gauge"
2932
| "HardDrive"
3033
| "HeartPulse"
3134
| "KeyRound"
3235
| "Network"
33-
| "Send";
36+
| "Send"
37+
| "WalletCards";
3438

3539
export type LinkItem = {
3640
name: string;
@@ -51,13 +55,15 @@ const ICONS: Record<LinkIconName, LucideIcon> = {
5155
Bot,
5256
ChartNoAxesCombined,
5357
Container,
58+
Database,
5459
Film,
5560
Gauge,
5661
HardDrive,
5762
HeartPulse,
5863
KeyRound,
5964
Network,
6065
Send,
66+
WalletCards,
6167
};
6268

6369
const EMPTY_CONFIG: DashboardConfig = {

0 commit comments

Comments
 (0)