"use client"; import { Button } from "@/components/ui/button"; export function SettingsSectionActions({ dirty, loading, saving, onSave, onDiscard, saveLabel, savingLabel, discardLabel, }: { dirty: boolean; loading: boolean; saving: boolean; onSave: () => void; onDiscard: () => void; saveLabel: string; savingLabel: string; discardLabel: string; }) { return (
{dirty ? ( ) : null}
); }