import type { HTMLAttributes } from "react"; export function Card({ className = "", ...rest }: HTMLAttributes) { return (
); } export function CardBody({ className = "", ...rest }: HTMLAttributes) { return
; } export function CardHeader({ className = "", ...rest }: HTMLAttributes) { return (
); }