File: /var/www/html/wptrinityconsulting/wp-content/plugins/finbuzz-core/elementor/views/button-3.php
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
namespace radiustheme\Finbuzz_Core;
extract($data);
$final_icon_class = " fas fa-thumbs-up";
if ( is_string( $icon_class['value'] ) && $dynamic_icon_class = $icon_class['value'] ) {
$final_icon_class = $dynamic_icon_class;
}
$attr = '';
if ( empty( $data['buttonurl']['url'] ) ) {
$data['buttonurl']['url']="#";
}
$attr .= !empty( $data['buttonurl']['is_external'] ) ? ' target="_blank"' : '';
$attr .= !empty( $data['buttonurl']['nofollow'] ) ? ' rel="nofollow"' : '';
?>
<div class="rt-button rt-button-<?php echo esc_attr( $data['style'] ); ?>">
<?php if( !empty( $data['buttontext'] ) ) { ?>
<a href="<?php echo esc_url( $data['buttonurl']['url'] );?>" <?php echo esc_attr($attr); ?> class="btn-style9 button"><?php echo esc_html( $data['buttontext'] );?>
<svg width="18" height="5" viewBox="0 0 18 5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 3V5L18 3L15 0V2H0V3H15Z" fill="black"/>
</svg></a>
<?php } ?>
</div>