import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogClose } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { X } from "lucide-react"; import "./index.css"; export const ReceiveDialog = ({ isOpen = false, onOpenChange, onConfirm }: { isOpen?: boolean; onOpenChange?: (open: boolean) => void; onConfirm?: () => void; }) => { return ( 接收新消息 您有一条新的消息,是否立即查看? onOpenChange?.(false)}>关闭
接收

AI通话时长送你啦~

志愿怎么选?分数能上哪?六维AI填报师来帮你解答~

); };