Hi,
to show icons you can use shortcode like
{socialconnect_icon}
Anyway to fit your needs like your screenshot the best way is to style the buttons with images and CSS code like:
.facebook_button, .twitter_button, .google_button, instagram_button{
border:none !important;
font-size:0 !important;
height:40px !important;
width:40px !important;
}
.facebook_button{
background:url( URL_OF_THE_FACEBOOK_ICON_IMAGE ) !important;
}
.twitter_button{
background:url( URL_OF_THE_TWITTER_ICON_IMAGE ) !important;
}
.google_button{
background:url( URL_OF_THE_GOOGLE_ICON_IMAGE ) !important;
}
.instagram_button{
background:url( URL_OF_THE_INSTAGRAM_ICON_IMAGE ) !important;
}