mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
17 lines
333 B
C#
17 lines
333 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Components.Icon
|
||
|
{
|
||
|
public class Icon : ViewComponent
|
||
|
{
|
||
|
public IViewComponentResult Invoke(string symbol)
|
||
|
{
|
||
|
var vm = new IconViewModel
|
||
|
{
|
||
|
Symbol = symbol
|
||
|
};
|
||
|
return View(vm);
|
||
|
}
|
||
|
}
|
||
|
}
|