15 lines
339 B
C#
15 lines
339 B
C#
|
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;
|
|||
|
}
|