import type { ReactNode } from "react"; import { cls } from "@/lib/utils"; interface CardProps { children: ReactNode; className?: string; } const Card = ({ children, className = "" }: CardProps) => (
{children}
); export default Card;