?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/components/
Upload File :
Current File : /home/rankinh/mariage-reunion-refonte/wp-content/plugins/backwpup/components/navigation-header.php

<?php
use BackWPup\Utils\BackWPupHelpers;

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * @var string  $title  Title to display. Default: "".
 * @var string  $type   The type of container. Values: "modal", "sidebar". Default : "sidebar".
 */

# Defaults
$title = $title ?? "";
$type = $type ?? "sidebar";
$navigation = $navigation ?? "";

?>
<header class="flex items-center justify-between gap-4">
	<button data-toggle-setting-panel="<?php echo esc_attr( $navigation ); ?>" class="text-primary-darker text-2xl hover:text-secondary-darker">
        <?php
            BackWPupHelpers::component( 'icon', [
                'name' => 'arrow-left',
                'size' => 'large',
            ]);
        ?>
	</button>
	<h1 class="flex items-center gap-1 text-primary-darker font-title font-bold text-2xl"><?php echo esc_html( $title ); ?></h1>
	<button class="text-primary-darker text-2xl hover:text-secondary-darker js-backwpup-close-<?php echo esc_attr( $type ); ?>">
		✕
	</button>
</header>