Files
2024-03-28 17:48:42 +01:00

16 lines
358 B
Plaintext

<a href="@NavLink" class="shortcut p-2 rounded shadow">
<span class="@Icon shortcut-icon" aria-hidden="true"></span>
<span class="shortcut-label">@Descript</span>
</a>
@code {
[Parameter]
public string Icon { get; set; }
[Parameter]
public string NavLink { get; set; }
[Parameter]
public string Descript { get; set; }
}