From 67a1d46cf2945944f334ff762001b055fc9951be Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 3 Jun 2026 16:38:53 +0000 Subject: [PATCH] Deploy --- src/components/ui/Badge.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..8389562 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,26 @@ +import { cn } from "@/lib/utils" + +interface BadgeProps { + variant?: "primary" | "secondary" | "accent" | "outline" + className?: string + children: React.ReactNode +} + +export default function Badge({ variant = "primary", className, children }: BadgeProps) { + return ( + + {children} + + ) +} \ No newline at end of file