import { cn } from "@/common/utils"; import { ReactElement } from "react"; export function Card({ children, className, }: Readonly<{ children: React.ReactNode; className?: string; }>): ReactElement { return
{children}
; }