From b06b1ae793bf17c9b4a75a9654502f528a3c078d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Fri, 31 Jul 2026 18:44:29 +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..1b3ed21 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,27 @@ +import type { ReactNode } from "react" +import { cn } from "@/lib/utils" + +interface BadgeProps { + children: ReactNode + variant?: "primary" | "secondary" | "accent" | "outline" + className?: string +} + +export default function Badge({ children, variant = "primary", className }: BadgeProps) { + return ( + + {children} + + ) +} \ No newline at end of file