20 lines
415 B
Plaintext
20 lines
415 B
Plaintext
@using JSMR.UI.Blazor.Enums
|
|
|
|
<div class="j-chip">
|
|
@if (Graphic != null)
|
|
{
|
|
<Icon Graphic="@Graphic.Value" Color="@Color"></Icon>
|
|
}
|
|
<span>@ChildContent</span>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public RenderFragment? ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public Graphic? Graphic { get; set; }
|
|
|
|
[Parameter]
|
|
public ColorVarient Color { get; set; } = ColorVarient.Primary;
|
|
} |