19 lines
355 B
Text
19 lines
355 B
Text
|
<div class="row center-align">
|
||
|
<h3>
|
||
|
<i class="@icon extra"></i> @title
|
||
|
</h3>
|
||
|
</div>
|
||
|
<div class="row center-align">
|
||
|
<p>@Description</p>
|
||
|
</div>
|
||
|
<div class="space"></div>
|
||
|
|
||
|
@code {
|
||
|
[Parameter]
|
||
|
public string icon { get; set; }
|
||
|
[Parameter]
|
||
|
public string title { get; set; }
|
||
|
[Parameter]
|
||
|
public RenderFragment Description { get; set; }
|
||
|
}
|