mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
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);
|
||
|
}
|
||
|
}
|
||
|
}
|