Added initial components.

This commit is contained in:
2025-11-30 16:35:54 -05:00
parent b2ef08c995
commit de00bee801
13 changed files with 266 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
namespace JSMR.UI.Blazor.Enums;
public enum ColorVarient
{
Primary,
Secondary,
Black,
Yellow,
Green,
Teal,
Blue,
Orange,
Pink
}

View File

@@ -0,0 +1,13 @@
namespace JSMR.UI.Blazor.Enums;
public enum Graphic
{
None,
Star,
Bag,
Headphones,
Warning,
Heart,
Globe,
Translate
}

View File

@@ -0,0 +1,7 @@
namespace JSMR.UI.Blazor.Enums;
public enum IconVarient
{
None,
Fill
}

View File

@@ -0,0 +1,8 @@
namespace JSMR.UI.Blazor.Enums;
public enum SizeVarient
{
Small,
Medium,
Large
}