Files
donutbrowser/src/components/ui/pro-badge.tsx
T
2026-02-21 15:50:23 +04:00

15 lines
298 B
TypeScript

import { cn } from "@/lib/utils";
export function ProBadge({ className }: { className?: string }) {
return (
<span
className={cn(
"text-[10px] font-semibold px-1 py-0.5 rounded bg-primary text-primary-foreground",
className,
)}
>
PRO
</span>
);
}