PilotAlertDialog
fun PilotAlertDialog(alertDialog: PilotAlertDialog, modifier: Modifier = Modifier, icon: @Composable (PilotLocalImageContent) -> Unit = { DefaultIcon(it) }, title: @Composable (String) -> Unit = { Text(text = it) }, text: @Composable (String) -> Unit = { Text(text = it) }, confirmButton: @Composable (PilotAlertDialog.Button, close: () -> Unit) -> Unit = { button, close -> DefaultButton(button, close) }, dismissButton: @Composable (PilotAlertDialog.Button, close: () -> Unit) -> Unit = { button, close -> DefaultButton(button, close) }, shape: Shape = AlertDialogDefaults.shape, containerColor: Color = AlertDialogDefaults.containerColor, iconContentColor: Color = AlertDialogDefaults.iconContentColor, titleContentColor: Color = AlertDialogDefaults.titleContentColor, textContentColor: Color = AlertDialogDefaults.textContentColor, tonalElevation: Dp = AlertDialogDefaults.TonalElevation, properties: DialogProperties = DialogProperties(), onDismissRequest: () -> Unit)