import type { HTMLAttributes } from 'react'
import { cn } from '../../lib/utils'
type Props = HTMLAttributes & {
padding?: boolean
}
export function Card({ className, padding = true, children, ...props }: Props) {
return (
{children}
)
}
export function CardHeader({ className, ...props }: HTMLAttributes) {
return
}
export function CardTitle({ className, ...props }: HTMLAttributes) {
return
}
export function CardDescription({ className, ...props }: HTMLAttributes) {
return
}