From f3ddc62ed3253068b70361f0680e81b866943c8b Mon Sep 17 00:00:00 2001 From: asepharyana Date: Thu, 23 Jul 2026 17:56:30 +0700 Subject: [PATCH] refactor(card): reorder exports for better organization --- src/components/ui/card.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx index a160811..d147209 100644 --- a/src/components/ui/card.tsx +++ b/src/components/ui/card.tsx @@ -94,10 +94,10 @@ function CardFooter({ className, ...props }: React.ComponentProps<"div">) { export { Card, - CardHeader, - CardFooter, - CardTitle, CardAction, - CardDescription, CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, };