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