From 29aa2618f8bc013d55953616cf5dbeda58bbd81c Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:06 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/card.tsx | 55 -------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/components/ui/card.tsx diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx deleted file mode 100644 index d886b02..0000000 --- a/src/components/ui/card.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import * as React from "react"; - -import { cn } from "@/lib/utils"; - -const Card = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -Card.displayName = "Card"; - -const CardHeader = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -CardHeader.displayName = "CardHeader"; - -const CardTitle = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -CardTitle.displayName = "CardTitle"; - -const CardDescription = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -CardDescription.displayName = "CardDescription"; - -const CardContent = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -CardContent.displayName = "CardContent"; - -const CardFooter = React.forwardRef>( - ({ className, ...props }, ref) => ( -
- ), -); -CardFooter.displayName = "CardFooter"; - -export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };