From ef73506b4bbe20b4c6b745e2b7449a6df653f8af Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Fri, 31 Jul 2026 14:12:33 +0000 Subject: [PATCH] Deploy --- src/components/ui/Badge.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..600a098 --- /dev/null +++ b/src/components/ui/Badge.tsx @@ -0,0 +1,24 @@ +import { cn } from "@/lib/utils" +import type { HTMLAttributes } from "react" + +interface BadgeProps extends HTMLAttributes { + variant?: "default" | "secondary" | "accent" | "outline" +} + +export default function Badge({ variant = "default", className, ...props }: BadgeProps) { + return ( + + ) +} \ No newline at end of file