import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "app/lib/utils" const cardVariants = cva("", { variants: { variant: { default: "bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm", tile: "flex rounded-lg pr-1 [background:linear-gradient(to_bottom,#adf661,#2ce1c1)]", }, }, defaultVariants: { variant: "default", }, }) function Card({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps) { return (
) } export { cardVariants } function CardHeader({ className, ...props }: React.ComponentProps<"div">) { return (
) } function CardTitle({ className, ...props }: React.ComponentProps<"div">) { return (
) } function CardDescription({ className, ...props }: React.ComponentProps<"div">) { return (
) } function CardAction({ className, ...props }: React.ComponentProps<"div">) { return (
) } function CardContent({ className, ...props }: React.ComponentProps<"div">) { return (
) } function CardFooter({ className, ...props }: React.ComponentProps<"div">) { return (
) } export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent, }