"use client"; import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; interface ResetWarningModalProps { open: boolean; onOpenChange: (open: boolean) => void; onClear: () => void; } export function ResetWarningModal({ open, onOpenChange, onClear, }: ResetWarningModalProps) { return ( Clear Everything? This will clear the current conversation and reset the diagram. This action cannot be undone. ); }