From afa58c42d665affeb73cee8ce46156e8033deef1 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:56:18 +0000 Subject: [PATCH] Deploy --- src/components/ui/Badge.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..b786a09 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,25 @@ +import { cn } from "@/lib/utils" + +interface BadgeProps extends React.HTMLAttributes { + variant?: "primary" | "secondary" | "accent" | "outline" +} + +export default function Badge({ variant = "primary", className, children, ...props }: BadgeProps) { + return ( + + {children} + + ) +} \ No newline at end of file