import Link from "next/link"; import { cn } from "@/lib/utils"; interface CardProps extends React.HTMLAttributes { href?: string; disabled?: boolean; } export function MdxCard({ href, className, children, disabled, ...props }: CardProps) { return (
{children}
{href && ( View )}
); }