public static SocialIconBuilder SocialIcon(this VertexHelper helper, Action <SocialIcon> action)
        {
            var model = new SocialIcon();

            action.Invoke(model);
            return(new SocialIconBuilder(helper.HtmlHelper, model));
        }
 public static SocialIconBuilder SocialIcon(this VertexHelper helper, SocialIcon model)
 {
     return(new SocialIconBuilder(helper.HtmlHelper, model));
 }