Files
aliasvault/apps/server/Shared/AliasVault.RazorComponents/Buttons/SubmitButton.razor
2025-04-30 19:03:18 +02:00

14 lines
295 B
Plaintext

<Button Type="submit"
Color="primary"
AdditionalClasses="w-full text-center">
@ChildContent
</Button>
@code {
/// <summary>
/// The content to be displayed inside the button.
/// </summary>
[Parameter]
public RenderFragment? ChildContent { get; set; }
}