mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
32 lines
670 B
Plaintext
32 lines
670 B
Plaintext
@namespace Wabbajack.App.Blazor.Components
|
|
|
|
<div id="info-block">
|
|
@if (Supertitle != string.Empty)
|
|
{
|
|
<span class="supertitle">@Supertitle</span>
|
|
}
|
|
<span class="title">@Title</span>
|
|
<span class="subtitle">@Subtitle</span>
|
|
<span class="comment">@Comment</span>
|
|
<span class="description">@Description</span>
|
|
</div>
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public string Supertitle { get; set; } = string.Empty;
|
|
|
|
[Parameter]
|
|
public string Title { get; set; }
|
|
|
|
[Parameter]
|
|
public string Subtitle { get; set; }
|
|
|
|
[Parameter]
|
|
public string Comment { get; set; }
|
|
|
|
[Parameter]
|
|
public string Description { get; set; }
|
|
|
|
}
|