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,22 @@
@using JSMR.UI.Blazor.Enums
<div class="j-product-indicator border-color-@Color.ToString().ToLower() background-color-@BackgroundColor.ToString().ToLower()">
<Icon Color="Color" Size="SizeVarient.Small" Graphic="Graphic" Varient="IconVarient"></Icon>
</div>
@code {
[Parameter]
public Graphic Graphic { get; set; }
[Parameter]
public IconVarient IconVarient { get; set; }
[Parameter]
public ColorVarient Color { get; set; }
[Parameter]
public ColorVarient BackgroundColor { get; set; }
[Parameter]
public bool Clickable { get; set; }
}