Shortcode for TTF Titles

function the_ttftext_shortcode( $atts ) {
   extract( shortcode_atts( array(
      'text' => '',
      'echo' => false,
      'style' => '',
      'overrides' => '',
      ), $atts ) );
 
   return the_ttftext (esc_attr($text), false, esc_attr($style), esc_attr($overrides));
}
add_shortcode('ttf_text', 'the_ttftext_shortcode');

[ttf_text text="Hello World!" style="basic"]