mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 10:49:06 +00:00
13 lines
203 B
C#
13 lines
203 B
C#
|
namespace AIStudio.Components.Pages.IconFinder;
|
||
|
|
||
|
public enum IconSources
|
||
|
{
|
||
|
GENERIC,
|
||
|
|
||
|
ICONS8,
|
||
|
FLAT_ICON,
|
||
|
FONT_AWESOME,
|
||
|
MATERIAL_ICONS,
|
||
|
FEATHER_ICONS,
|
||
|
BOOTSTRAP_ICONS,
|
||
|
}
|