Files
patchmon.net/frontend/src/components/UpgradeNotificationIcon.jsx
2025-09-25 23:54:24 +01:00

15 lines
316 B
JavaScript

import { ArrowUpCircle } from "lucide-react";
const UpgradeNotificationIcon = ({ className = "h-4 w-4", show = true }) => {
if (!show) return null;
return (
<ArrowUpCircle
className={`${className} text-red-500 animate-pulse`}
title="Update available"
/>
);
};
export default UpgradeNotificationIcon;