import { Settings } from 'lucide-react'; import type { TFunction } from 'i18next'; import type { ReleaseInfo } from '../../types/sharedTypes'; import { Button } from '../ui/button'; type SidebarFooterProps = { updateAvailable: boolean; releaseInfo: ReleaseInfo | null; latestVersion: string | null; onShowVersionModal: () => void; onShowSettings: () => void; t: TFunction; }; export default function SidebarFooter({ updateAvailable, releaseInfo, latestVersion, onShowVersionModal, onShowSettings, t, }: SidebarFooterProps) { return ( <> {updateAvailable && (
)}
); }