import ConfirmDialog, { ConfirmDialogProps, } from 'components/shared/ConfirmDialog'; import React from 'react'; interface DeleteWebhookDialogProps extends ConfirmDialogProps { webhookUrl: string; } export const DeleteWebhookDialog = ({ webhookUrl, open, handleCancel, handleConfirm, ...props }: DeleteWebhookDialogProps) => { return (

Are you sure you want to delete{' '} {webhookUrl} ?

); };