feat(theme): BrandBar
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
@* Components/BrandBar.razor *@
|
||||
<div class="brand">
|
||||
@if (Logo is not null) { @Logo }
|
||||
else { <span class="mark">▮</span> }
|
||||
@Product
|
||||
</div>
|
||||
|
||||
@code {
|
||||
[Parameter, EditorRequired] public string Product { get; set; } = string.Empty;
|
||||
[Parameter] public RenderFragment? Logo { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user