We have recently update our premium version to add filter hook to modify social icons , here is the sample code if you already have installed 3.0.25 version (premium) , you need to add your custom css to display icons.
function post_grid_filter_share_buttons_extra($share_buttons){
$share_buttons_extra = '
<span class="linkedin">
<a target="_blank" href="https://www.linkedin.com/shareArticle?mini=true&url='.get_permalink().'&title=&summary=&source="> </a>
</span>
';
return $share_buttons.$share_buttons_extra;
}
add_filter('post_grid_filter_share_buttons','post_grid_filter_share_buttons_extra');