mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-06-27 08:59:59 +02:00
15 lines
298 B
TypeScript
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>
|
|
);
|
|
}
|