2022-08-09 19:27:30 +00:00
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
|
|
|
|
|
namespace UI_MAUI.Components;
|
|
|
|
|
|
|
|
|
|
public partial class Icon : ComponentBase
|
|
|
|
|
{
|
|
|
|
|
[Parameter]
|
|
|
|
|
public string Filename { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public string AltText { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public ushort Size { get; set; } = 35;
|
2022-08-12 21:56:55 +00:00
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
public string Classes { get; set; } = string.Empty;
|
2022-08-09 19:27:30 +00:00
|
|
|
|
}
|