Address compiler warnings

This commit is contained in:
2025-12-26 13:58:41 -05:00
parent f2389fa1c1
commit f395dba043
25 changed files with 112 additions and 99 deletions
@@ -0,0 +1,18 @@
@namespace WebApp.Components.Shared.Components
<MudTooltip Text="@TooltipText">
<MudIconButton Icon="@Icon"
Size="@Size"
Color="@Color"
Href="@Href"
OnClick="@OnClick" />
</MudTooltip>
@code {
[Parameter] public required string Icon { get; set; }
[Parameter] public required string TooltipText { get; set; }
[Parameter] public Size Size { get; set; } = Size.Small;
[Parameter] public Color Color { get; set; } = Color.Default;
[Parameter] public string? Href { get; set; }
[Parameter] public EventCallback<MouseEventArgs> OnClick { get; set; }
}