/** * MigrationPulseIndicator Component * * Shows a pulsing dot indicator when migration is needed but notification is dismissed. * Provides a subtle, persistent reminder without being intrusive. */ import { AlertTriangle } from "lucide-react"; import { Button } from "@/components/ds/ui/button"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ds/ui/tooltip"; interface MigrationPulseIndicatorProps { /** Callback when user clicks the indicator */ onClick: () => void; } export function MigrationPulseIndicator({ onClick, }: MigrationPulseIndicatorProps) { return (

Database Update Available

Click to view migration details

); }