Skip to content

Commit 5b2878d

Browse files
committed
fix: add missing doc card icons and correct Next route types
1 parent 2d8dc9d commit 5b2878d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/dev/types/routes.d.ts";
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

src/components/ui/card.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
ActivityIcon,
3+
AlertTriangleIcon,
34
ArrowRightIcon,
45
ArrowUpIcon,
56
BookmarkIcon,
@@ -20,6 +21,7 @@ import {
2021
KeyboardIcon,
2122
KeyIcon,
2223
LightbulbIcon,
24+
LinkIcon,
2325
LockIcon,
2426
type LucideIcon,
2527
MapIcon,
@@ -77,10 +79,12 @@ const iconMap: Record<string, LucideIcon> = {
7779
MessageCircle: MessageCircleIcon,
7880
Zap: ZapIcon,
7981
Activity: ActivityIcon,
82+
AlertTriangle: AlertTriangleIcon,
8083
Cookie: CookieIcon,
8184
Webhook: WebhookIcon,
8285
Smartphone: SmartphoneIcon,
8386
Calendar: CalendarIcon,
87+
Link: LinkIcon,
8488
RefreshCw: RefreshCwIcon,
8589
Trash: TrashIcon,
8690
HelpCircle: HelpCircleIcon,

0 commit comments

Comments
 (0)