Hello,
Thank you so much for using our theme and contacting our support center.
You can try to add this code snippet to the functions.php file to display some texts next to you button
add_action( 'woocommerce_single_product_summary', function() {
echo 'TEXT BEFORE BUTTON';
}, 25 );
add_action( 'woocommerce_single_product_summary', function() {
echo 'TEXT AFTER BUTTON';
}, 35 );
Regards