"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; import type { LucideIcon } from "lucide-react"; interface PricingBadgeProps { badge: string; badgeIcon?: LucideIcon; className?: string; } const PricingBadge = memo(({ badge, badgeIcon: BadgeIcon, className = "", }: PricingBadgeProps) => { return (