"use client"; import { Lock } from "lucide-react"; export default function SaveButton({ handleSave, isSaving, content, }: { handleSave: () => void; isSaving: boolean; content: string; }) { return ( ); }