Escali License control 1
FloatingInput.razor
Gå til dokumentasjonen til denne filen.
1
2<div class="input-container form-floating mb-3">
3 @ChildContent
4 <label for="floatingInput">@Name</label>
5</div>
6
7@code {
8
9 [Parameter]
10 public RenderFragment? ChildContent { get; set; }
11
12 [Parameter]
13 public string Name { get; set; }
14
15}