From 918357c00ce51089268e96fb5948bec205d2718f Mon Sep 17 00:00:00 2001 From: Aleksandar Date: Thu, 11 Dec 2025 14:10:33 +0100 Subject: [PATCH] fix: add missing CardTitle, CardDescription and CardFooter exports to Card component --- apps/admin/src/components/ui/card.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/apps/admin/src/components/ui/card.tsx b/apps/admin/src/components/ui/card.tsx index 1841511..6e31e89 100644 --- a/apps/admin/src/components/ui/card.tsx +++ b/apps/admin/src/components/ui/card.tsx @@ -27,4 +27,28 @@ export function CardContent({ children, className = '' }: CardProps) { {children} ) +} + +export function CardTitle({ children, className = '' }: CardProps) { + return ( +

+ {children} +

+ ) +} + +export function CardDescription({ children, className = '' }: CardProps) { + return ( +

+ {children} +

+ ) +} + +export function CardFooter({ children, className = '' }: CardProps) { + return ( +
+ {children} +
+ ) } \ No newline at end of file