You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Components/Picker/PickerContent.razor

17 lines
387 B

2 years ago
@namespace Connected.Components
@using Connected.Utilities;
<div class="@Classnames" @onclick:stopPropagation="true">
@ChildContent
</div>
@code {
protected string Classnames =>
new CssBuilder("mud-picker-content")
.AddClass(Class)
.Build();
[Parameter] public string Class { get; set; }
[Parameter] public RenderFragment ChildContent { get; set; }
}