mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-24 14:00:35 -05:00
14 lines
295 B
Plaintext
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; }
|
|
}
|