Disable loading Thumbnail On Mobile [closed]

<?php
  /* if its not mobile */
  if ( !wp_is_mobile() ) {
  /* load and show the post thumbnail */
     the_post_thumbnail();
  }
?>

You can read on wp_is_mobile here and on the the_post_thumbnail here