"use client"; import { Save } from "lucide-react"; import { Button } from "../../ui/button"; import { Label } from "../../ui/label"; import { Switch } from "../../ui/switch"; import { useState } from "react"; interface FooterAgendaProps { onSave: () => void; onCancel: () => void; } export default function FooterAgenda({ onSave, onCancel }: FooterAgendaProps) { const [bloqueio, setBloqueio] = useState(false); return (