From d5f384e69d09aa50bbf4c603e0c29914e8e31377 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:06:17 +0000 Subject: [PATCH] Deploy --- src/components/ui/Badge.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/ui/Badge.tsx diff --git a/src/components/ui/Badge.tsx b/src/components/ui/Badge.tsx new file mode 100644 index 0000000..3f4bb61 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,27 @@ +import { cn } from "@/lib/utils" + +type BadgeVariant = "primary" | "secondary" | "outline" + +interface BadgeProps { + variant?: BadgeVariant + className?: string + children: React.ReactNode +} + +export default function Badge({ variant = "primary", className, children }: BadgeProps) { + return ( + + {children} + + ) +} \ No newline at end of file