import { AlertCircle } from 'lucide-react'; import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { ShowNewItemsButton } from './show-new-items-button'; interface NewItemsAlertProps { count: number; onShowNewItems: () => void; visible?: boolean; } export const NewItemsAlert = ({ count, onShowNewItems, visible = true }: NewItemsAlertProps) => { if (!visible || count === 0) return null; return (