/home/moonrcjl/public_html/test/wp-content/themes/arsha/template-parts/blog/blog-btn.php
<?php

/**
 * Template part for displaying post btn
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package arsha
 */

$arsha_blog_btn = get_theme_mod( 'arsha_blog_btn', __('Read More','arsha') );
$arsha_blog_btn_switch = get_theme_mod( 'arsha_blog_btn_switch', true );

?>
<?php if ( !empty( $arsha_blog_btn_switch ) ): ?>

<div class="mt-postbox-btn">
    <a href="<?php the_permalink();?>">
        <span class="mt-btn"><?php print esc_html( $arsha_blog_btn );?></span>
        <span class="mt-btn mt-btn-icon"><i class="fa-solid fa-arrow-right"></i></span>
    </a>
</div>

<?php endif;?>