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; }