wabbajack/Wabbajack.App.Blazor/Components/InteractionIcon.razor

19 lines
427 B
Plaintext
Raw Normal View History

2022-01-20 08:34:38 +00:00
@namespace Wabbajack.App.Blazor.Components
<img src="@Icon" class="interaction-icon" style="width: @Size; height: @Size; margin: 0;" alt="@Label" @onclick="OnClick">
@code {
[Parameter]
2022-01-28 11:58:28 +00:00
public string? Icon { get; set; }
2022-01-20 08:34:38 +00:00
[Parameter]
2022-01-28 11:58:28 +00:00
public string? Label { get; set; }
2022-01-20 08:34:38 +00:00
[Parameter]
2022-01-28 11:58:28 +00:00
public string? Size { get; set; }
2022-01-20 08:34:38 +00:00
[Parameter]
public EventCallback<MouseEventArgs> OnClick { get; set; }
}