teamlead-dashboard/src/TUI/UserInterface/Icons.cs

15 lines
317 B
C#
Raw Normal View History

2024-03-17 19:57:31 +00:00
using TUI.Engine;
2023-08-10 13:55:22 +00:00
namespace TUI.UserInterface;
public static class Icons
{
2024-03-17 19:57:31 +00:00
public static readonly Dictionary<string, string> Applications = new()
2023-08-29 04:40:28 +00:00
{
2024-03-17 19:57:31 +00:00
{ Symbols.NpmPackage, "package" },
{ Symbols.DockerImage, "image" },
{ Symbols.Site, "site" },
{ Symbols.Api, "api" }
2023-08-29 04:40:28 +00:00
};
2023-08-10 13:55:22 +00:00
}