Shortcode to get WordPress current theme directory URL

/* Shortcode to get WordPress current theme directory URL */
function theme_url_shortcode( $attrs = array (), $content = '' ) {
   
$theme = ( is_child_theme() ? get_stylesheet_directory_uri() : get_template_directory_uri() );
    return $theme;

}
add_shortcode('get_theme_dir', 'theme_url_shortcode' );