import { cn } from "../../lib/cn";

export const Card = ({
  className,
  children
}: {
  className?: string;
  children: React.ReactNode;
}) => <section className={cn("rounded-[28px] border border-line bg-panel shadow-soft", className)}>{children}</section>;
