@using BTCPayServer.Configuration; @using Microsoft.AspNetCore.Mvc.ViewFeatures; @inject IFileVersionProvider FileVersionProvider @inject BTCPayServerOptions BTCPayServerOptions @code { [Parameter, EditorRequired] public string Symbol { get; set; } private string GetPathTo(string symbol) { var versioned = FileVersionProvider.AddFileVersionToPath(default, "img/icon-sprite.svg"); var rootPath = (BTCPayServerOptions.RootPath ?? "/").WithTrailingSlash(); return $"{rootPath}{versioned}#{symbol}"; } }