import { PopoverClose } from "@radix-ui/react-popover"; import { CircleAlert, Trash } from "lucide-react"; import { Button } from "../ui/button"; import { Popover, PopoverContent, PopoverTrigger } from "../ui/popover"; // XButtonDelete 删除按钮,提供二次确认功能 export function XButtonDelete({ onConfirm, isLoading, }: { onConfirm: () => void; isLoading?: boolean; }) { return (

确认删除吗?

); }