13 lines
435 B
Plaintext
13 lines
435 B
Plaintext
<button @onclick="OnClick" style="@style">
|
|
@ChildContent
|
|
</button>
|
|
|
|
@code {
|
|
[Parameter][EditorRequired] public RenderFragment ChildContent { get; set; } = default!;
|
|
[Parameter][EditorRequired] public EventCallback OnClick { get; set; }
|
|
[Parameter] public string CssWidth { get; set; } = "32px";
|
|
[Parameter] public string CssHeight { get; set; } = "32px";
|
|
|
|
private string style => $"width: {CssWidth}; height: {CssHeight};";
|
|
}
|