| import { cn } from "@reactive-resume/utils"; |
| import { forwardRef } from "react"; |
|
|
| export const Card = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( |
| ({ className, ...props }, ref) => ( |
| <div |
| ref={ref} |
| className={cn("flex flex-col space-y-3 rounded border bg-background p-6", className)} |
| {...props} |
| /> |
| ), |
| ); |
|
|
| Card.displayName = "Card"; |
|
|
| export const CardHeader = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( |
| ({ className, ...props }, ref) => ( |
| <div ref={ref} className={cn("flex flex-col space-y-1", className)} {...props} /> |
| ), |
| ); |
|
|
| CardHeader.displayName = "CardHeader"; |
|
|
| export const CardTitle = forwardRef<HTMLParagraphElement, React.HTMLAttributes<HTMLHeadingElement>>( |
| ({ className, ...props }, ref) => ( |
| <h3 |
| ref={ref} |
| className={cn("font-semibold leading-normal tracking-tight", className)} |
| {...props} |
| > |
| {props.children} |
| </h3> |
| ), |
| ); |
|
|
| CardTitle.displayName = "CardTitle"; |
|
|
| export const CardDescription = forwardRef< |
| HTMLParagraphElement, |
| React.HTMLAttributes<HTMLParagraphElement> |
| >(({ className, ...props }, ref) => ( |
| <div |
| ref={ref} |
| className={cn("text-xs font-medium leading-relaxed opacity-80", className)} |
| {...props} |
| /> |
| )); |
|
|
| CardDescription.displayName = "CardDescription"; |
|
|
| export const CardContent = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( |
| ({ className, ...props }, ref) => <div ref={ref} className={className} {...props} />, |
| ); |
|
|
| CardContent.displayName = "CardContent"; |
|
|
| export const CardFooter = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>( |
| ({ className, ...props }, ref) => ( |
| <div ref={ref} className={cn("flex items-center", className)} {...props} /> |
| ), |
| ); |
|
|
| CardFooter.displayName = "CardFooter"; |
|
|