From e397e95dd540fbaadfb5adc1c10aa12956385ec4 Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Tue, 19 Nov 2024 11:44:22 +0100 Subject: [PATCH] feat: simple Card component --- src/app/components/ui/Card.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/app/components/ui/Card.tsx 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 };