2024-10-13 12:10:52 +02:00
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
|
|
2025-03-03 00:56:32 +01:00
|
|
|
namespace WatchIt.Website.Components.Subcomponents.Common;
|
2024-10-13 12:10:52 +02:00
|
|
|
|
2025-03-03 00:56:32 +01:00
|
|
|
public partial class LoadingButtonContent : ComponentBase
|
2024-10-13 12:10:52 +02:00
|
|
|
{
|
|
|
|
|
#region PARAMETERS
|
|
|
|
|
|
|
|
|
|
[Parameter] public bool IsLoading { get; set; }
|
|
|
|
|
[Parameter] public string? LoadingContent { get; set; }
|
|
|
|
|
[Parameter] public string Content { get; set; }
|
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|