import React from "react"; import { cx } from "@/cva.config"; type CardPropsType = { children: React.ReactNode; className?: string; }; export const GridCard = ({ children, cardClassName, }: { children: React.ReactNode; cardClassName?: string; }) => { return (
{children}
); }; export default function Card({ children, className }: CardPropsType) { return (
{children}
); }