import { cn } from "@reactive-resume/utils"; import { forwardRef } from "react"; export const Card = forwardRef>( ({ className, ...props }, ref) => (
), ); Card.displayName = "Card"; export const CardHeader = forwardRef>( ({ className, ...props }, ref) => (
), ); CardHeader.displayName = "CardHeader"; export const CardTitle = forwardRef>( ({ className, ...props }, ref) => (

{props.children}

), ); CardTitle.displayName = "CardTitle"; export const CardDescription = forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); CardDescription.displayName = "CardDescription"; export const CardContent = forwardRef>( ({ className, ...props }, ref) =>
, ); CardContent.displayName = "CardContent"; export const CardFooter = forwardRef>( ({ className, ...props }, ref) => (
), ); CardFooter.displayName = "CardFooter";