import { Button } from '@/components/ui/button' import { usePrimaryPage } from '@/PageManager' import { RefreshCcw } from 'lucide-react' import { useTranslation } from 'react-i18next' export default function RefreshButton({ variant = 'titlebar' }: { variant?: 'titlebar' | 'sidebar' }) { const { t } = useTranslation() const { refresh } = usePrimaryPage() return ( ) }