import { ArrowUpCircle } from "lucide-react"; const UpgradeNotificationIcon = ({ className = "h-4 w-4", show = true }) => { if (!show) return null; return ( ); }; export default UpgradeNotificationIcon;