3<div class="input-container form-floating mb-3">
4 <InputText @bind-Value="Value" type="text" class="form-control input-text" id="floatingInput" placeholder=" " autocomplete="off"/>
5 <label for="floatingInput">@Name</label>
16 ValueChanged.InvokeAsync(_value);
21 public EventCallback<string?> ValueChanged { get; set; }
24 public RenderFragment? ChildContent { get; set; }
27 public string Name { get; set; }
29 private string? _value;