import React from 'react'
import { cn } from "@/lib/utils"
interface CardProps {
className?: string
children?: React.ReactNode
}
export function Card({ className, children }: CardProps) {
return (
{children}
)
}
export function CardHeader({ className, children }: CardProps) {
return (
{children}
)
}
export function CardTitle({ className, children }: CardProps) {
return (
{children}
)
}
export function CardDescription({ className, children }: CardProps) {
return (
{children}
)
}
export function CardContent({ className, children }: CardProps) {
return (
{children}
)
}
export function CardFooter({ className, children }: CardProps) {
return (
{children}
)
}