ProBadge.tsx raw

   1  import { SparklesIcon } from "lucide-react";
   2  
   3  export function ProBadge() {
   4    return (
   5      <span className="inline-flex items-center justify-center rounded-full bg-primary px-1.5 py-0.5 text-[0.625rem] text-primary-foreground font-bold shrink-0">
   6        <SparklesIcon className="h-2.5 w-2.5 mr-0.5" />
   7        PRO
   8      </span>
   9    );
  10  }
  11