'use client' import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from '@/components/ui/alert-dialog' import { Button } from '@/components/ui/button' import { Trash2 } from 'lucide-react' interface DeleteWebhookButtonProps { onDelete: () => void } export function DeleteWebhookButton({ onDelete }: DeleteWebhookButtonProps) { return ( Delete Webhook Are you sure you want to delete this webhook? This action cannot be undone. Cancel Delete ) }