Foxnouns.NET/Foxnouns.Backend/Utils/BootstrapIcons.cs
sam 71b59dbb00
feat: add icon list generation script
this is used to validate icons for custom preferences. it generates both
typescript and c# code
2024-11-27 20:00:28 +01:00

6 lines
151 B
C#

namespace Foxnouns.Backend.Utils;
public static partial class BootstrapIcons
{
public static bool IsValid(string icon) => Icons.Contains(icon);
}