import { RefreshCw } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface ShowNewItemsButtonProps { count: number; onShow: () => void | Promise; isLoading?: boolean; } export const ShowNewItemsButton = ({ count, onShow, isLoading = false }: ShowNewItemsButtonProps) => { const itemText = count === 1 ? 'item' : 'items'; return ( ); };