<?php
/**
 * @license GPL-2.0-or-later
 *
 * Modified using {@see https://github.com/BrianHenryIE/strauss}.
 */ declare( strict_types=1 );
/**
 * Render a WordPress dashboard notice.
 *
 * @see \KadenceWP\KadenceBlocks\StellarWP\Uplink\Notice\Notice_Controller
 *
 * @var string               $message           The message to display.
 * @var string               $classes           The CSS classes for the notice.
 * @var array<string, mixed> $allowed_tags      The allowed HTML tags for wp_kses().
 * @var string[]             $allowed_protocols The allowed protocols for wp_kses().
 */

defined( 'ABSPATH' ) || exit;
?>
<div class="<?php echo esc_attr( $classes ) ?>">
	<p><?php echo wp_kses( $message, $allowed_tags, $allowed_protocols ) ?></p>
</div>
