using System.Collections.Generic; using System.Text; using System.Web.Mvc; namespace Kreta.Web.Helpers { public static class IconExtensions { public static MvcHtmlString KretaIcon(this HtmlHelper helper, string icon, IDictionary htmlAttributes = null) { StringBuilder sb = new StringBuilder(); sb.Append(string.Format(""); MvcHtmlString str = new MvcHtmlString(sb.ToString()); return str; } } }