mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
17f3b4125b
* Add option to customize the instance logo Custom logo for BTCPay instances * Incorporate SVGUse helper
17 lines
359 B
C#
17 lines
359 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Components.MainLogo
|
|
{
|
|
public class MainLogo : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(string cssClass = null)
|
|
{
|
|
var vm = new MainLogoViewModel
|
|
{
|
|
CssClass = cssClass,
|
|
};
|
|
return View(vm);
|
|
}
|
|
}
|
|
}
|