2 <img style="cursor: pointer" src="Icons/vertical-dots-icon.svg" alt=""/>
3 <div class="dropdown-content">
6 @foreach (var (name, action) in Options)
8 <div @onclick="() => action.Invoke()">@name</div>
17 public (string, Action)[]? Options { get; set; }
19 // private bool ShowDropDown { get; set; }
20 // private string VisibilityString() => ShowDropDown ? "d-block" : "";