import { DialogRoot, DialogTrigger, DialogOverlay, DialogContent, DialogHeader, DialogTitle, DialogSubtitle, DialogFooter, DialogClose, } from "@components/Dialog"; import { Button } from "@components/Button"; import { useToast } from "@components/Toast"; export function DeletingItem() { const { toast } = useToast(); return ( Delete Item Are you sure you want to delete this item?
  • This action will delete the item, and related data
  • This action cannot be undone
); }