// Copyright: © 2026 TWWIM UG. All rights reserved. (www.twwim.com) /** * SaveBar — sticky footer "Saved" indicator + Save button. * * @layer Presentation */ import { CheckCircle2, Save } from 'lucide-react'; import type { TFunction } from '../lib/constants'; interface SaveBarProps { showSaved: boolean; canSave: boolean; isPending: boolean; onSave: () => void; t: TFunction; } export function SaveBar({ showSaved, canSave, isPending, onSave, t, }: SaveBarProps) { return (
{showSaved && ( {t('tenants.pluginSettings.saved')} )}
); }