diff --git a/src/app/components/ui/Card.tsx b/src/app/components/ui/Card.tsx new file mode 100644 index 0000000000..a9731698f6 --- /dev/null +++ b/src/app/components/ui/Card.tsx @@ -0,0 +1,18 @@ +import { cn } from "lib/cn"; +import { type HTMLAttributes, forwardRef } from "react"; + +const Card = forwardRef>( + ({ className, ...props }, ref) => ( +
+ ), +); +Card.displayName = "Card"; + +export { Card };