import { TriangleAlert } from "lucide-react"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "~/components/ui/alert-dialog"; import { Button } from "~/components/ui/button"; interface SelesaiModalProps { disabled?: boolean; loading?: boolean; onSubmitted?: () => void; } export function SelesaiModal({ onSubmitted, loading, disabled }: SelesaiModalProps) { return (
Proyek telah selesai? Pastikan semua proyek telah selesai.
Batalkan Lanjutkan
); }