import { cn } from "@/lib/utils";

type ContentCardType = React.ComponentPropsWithoutRef<"div"> & {
  args?: any;
};

export default function ContentCard({ ...args }: ContentCardType) {
  return (
    <section
      {...args}
      className={cn("bg-white shadow rounded py-2 px-4", args.className)}
    >
      {args.children}
    </section>
  );
}
