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