mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-04 04:16:19 +00:00
16 lines
367 B
C#
16 lines
367 B
C#
using Pastel;
|
|
using TUI.Engine;
|
|
|
|
|
|
namespace TUI.UserInterface;
|
|
|
|
public static class Icons
|
|
{
|
|
public static readonly Dictionary<string, string> Applications = new()
|
|
{
|
|
{ Symbols.NpmPackage.Colorized(), "package" },
|
|
{ Symbols.DockerImage.Colorized(), "image" },
|
|
{ Symbols.Site.Colorized(), "site" },
|
|
{ Symbols.Api, "api" }
|
|
};
|
|
} |