btcpayserver/BTCPayServer/Components/ThemeSwitch/ThemeSwitch.cs
2021-10-06 19:32:26 +02:00

18 lines
434 B
C#

using Microsoft.AspNetCore.Mvc;
namespace BTCPayServer.Components.ThemeSwitch
{
public class ThemeSwitch : ViewComponent
{
public IViewComponentResult Invoke(string cssClass = null, string responsive = null)
{
var vm = new ThemeSwitchViewModel
{
CssClass = cssClass,
Responsive = responsive
};
return View(vm);
}
}
}