22 lines
588 B
Plaintext
22 lines
588 B
Plaintext
@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; }
|
|
} |