Neighbourhood.omg.lol/Components/PageHeading.razor

22 lines
447 B
Text
Raw Permalink Normal View History

<div class="row center-align">
2024-06-13 06:35:40 +00:00
<h1><i class="@icon page-heading-icon"></i></h1>
</div>
<div class="row center-align">
<h3 class="page-heading">
@title
</h3>
</div>
<div class="row center-align">
<p>@Description</p>
</div>
2024-06-14 00:45:31 +00:00
<div class="space margin"></div>
@code {
[Parameter]
2024-07-02 00:13:52 +00:00
public string? icon { get; set; }
[Parameter]
2024-07-02 00:13:52 +00:00
public string? title { get; set; }
[Parameter]
2024-07-02 00:13:52 +00:00
public RenderFragment? Description { get; set; }
}