"use client"; import { AnimatePresence, motion } from "framer-motion"; import { X } from "lucide-react"; interface InterruptPromptProps { isOpen: boolean; close: () => void; } export function InterruptPrompt({ isOpen, close }: InterruptPromptProps) { return ( {isOpen && ( Press Enter again to interrupt )} ); }