sam
71b59dbb00
this is used to validate icons for custom preferences. it generates both typescript and c# code
6 lines
151 B
C#
6 lines
151 B
C#
namespace Foxnouns.Backend.Utils;
|
|
|
|
public static partial class BootstrapIcons
|
|
{
|
|
public static bool IsValid(string icon) => Icons.Contains(icon);
|
|
}
|