This element is a type of modal window that appears in front of app content to ask for a decision. It require users to explicitly confirm their choice before an option is committed.Clicking on “Cancel” cancels the action, discards any changes, and closes the dialog.
import '@cometchat/uikit-elements';//import the web component package.const title = "Confirm";const messageText = "Are you sure, you want to confirm?"<cometchat-confirm-dialog:title="title":messageText="messageText"></cometchat-confirm-dialog>