import * as React from "react";
import { cn } from "@/lib/utils";
const Card = React.forwardRef<HTMLDivElement, React.ComponentProps<"div">>(
function Card({ className, ...props }, ref) {
return (
<div
className={cn(
"flex touch-manipulation flex-col gap-6 rounded-xl border bg-card py-6 text-card-foreground shadow-sm",
className
)}
data-slot="card"
ref={ref}
{...props}
/>
);
}
);
const CardHeader = React.forwardRef<
HTMLDivElement,
React.ComponentProps<"div">
>(function CardHeader({ className, ...props }, ref) {
return (
<div
className={cn(
"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6",
className
)}
data-slot="card-header"
ref={ref}
{...props}
/>
);
});
const CardTitle = React.forwardRef<HTMLDivElement, React.ComponentProps<"div">>(
function CardTitle({ className, ...props }, ref) {
return (
<div
className={cn(
"font-semibold text-xl leading-none tracking-tight",
className
)}
data-slot="card-title"
ref={ref}
{...props}
/>
);
}
);
const CardDescription = React.forwardRef<
HTMLDivElement,
React.ComponentProps<"div">
>(function CardDescription({ className, ...props }, ref) {
return (
<div
className={cn("text-muted-foreground text-sm", className)}
data-slot="card-description"
ref={ref}
{...props}
/>
);
});
const CardAction = React.forwardRef<
HTMLDivElement,
React.ComponentProps<"div">
>(function CardAction({ className, ...props }, ref) {
return (
<div
className={cn(
"col-start-2 row-span-2 row-start-1 self-start justify-self-end",
className
)}
data-slot="card-action"
ref={ref}
{...props}
/>
);
});
const CardContent = React.forwardRef<
HTMLDivElement,
React.ComponentProps<"div">
>(function CardContent({ className, ...props }, ref) {
return (
<div
className={cn("px-6", className)}
data-slot="card-content"
ref={ref}
{...props}
/>
);
});
const CardFooter = React.forwardRef<
HTMLDivElement,
React.ComponentProps<"div">
>(function CardFooter({ className, ...props }, ref) {
return (
<div
className={cn("flex items-center px-6 [.border-t]:pt-6", className)}
data-slot="card-footer"
ref={ref}
{...props}
/>
);
});
export {
Card,
CardHeader,
CardFooter,
CardTitle,
CardAction,
CardDescription,
CardContent,
};