import { Button } from "@pswui/Button"; import { DialogClose, DialogContent, DialogFooter, DialogHeader, DialogOverlay, DialogRoot, DialogSubtitle, DialogTitle, DialogTrigger, } from "@pswui/Dialog"; import { useToast } from "@pswui/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
); }