Files
deepdrft/DeepDrftWeb.Client/Controls/AppNavLink.razor.cs
T
daniel-c-harvey 3766d4e010 Front End
- MudBlazor Theme Manager tryout
 - Navigation bar rework
 - Icons and styles rework
 - Track Gallery & Card layout redesign for SPA
 - Track Player bottom bar
2025-09-05 22:27:12 -04:00

12 lines
412 B
C#

using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Routing;
namespace DeepDrftWeb.Client.Controls;
public partial class AppNavLink : ComponentBase
{
[Parameter] public required string Href { get; set; }
[Parameter] public NavLinkMatch? Match { get; set; }
[Parameter] public string? Icon { get; set; }
[Parameter] public RenderFragment? ChildContent { get; set; }
}