import clsx from "clsx"; import React from "react"; import { twMerge } from "tailwind-merge"; 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}
); }