This is what I am using below. Is there a method to insert the block title?
add_filter ('acf/blocks/no_fields_assigned_message', 'no_fields_message', 10, 2);
function no_fields_message($message) {
$message = __('<h3>Theme Block</h3>There are no settings for this block.', 'acf');
return $message;
}