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

16 lines
367 B
C#
Raw Normal View History

2024-03-21 20:06:32 +00:00
using Pastel;
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-21 20:06:32 +00:00
{ Symbols.NpmPackage.Colorized(), "package" },
{ Symbols.DockerImage.Colorized(), "image" },
2024-04-01 13:37:40 +00:00
{ Symbols.Site.Colorized(), "site" },
2024-03-17 19:57:31 +00:00
{ Symbols.Api, "api" }
2023-08-29 04:40:28 +00:00
};
2023-08-10 13:55:22 +00:00
}