From 279d3a17f729991acda76c2b01c3abfb94fb38d0 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:39 +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..07fae5d --- /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" | "outline" | "accent" +} + +export default function Badge({ variant = 'default', className, ...props }: BadgeProps) { + return ( + + ) +} \ No newline at end of file