Confirm Dialog
fun ConfirmDialog(title: String, content: String, isVisible: Boolean, confirmButtonText: String, onClick: () -> Unit)
This composable is the confirmation dialog when the user is about to perform an important action and might want to confirm before proceeding.
Parameters
title
String the title of the dialog
content
String the content of the dialog
is Visible
Boolean whether the dialog is visible
confirm Button Text
String the text for the confirm button
on Click
() -> Unit the function to call when the user clicks the button