mirror of
https://github.com/9technologygroup/patchmon.net.git
synced 2025-11-05 06:23:22 +00:00
15 lines
316 B
JavaScript
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;
|