Files
radzen-blazor/Radzen.Blazor/RadzenHeader.razor
2021-10-07 09:38:36 +03:00

9 lines
196 B
Plaintext

@inherits RadzenComponentWithChildren
@if (Visible)
{
<div @ref="@Element" @attributes="Attributes" class="@GetCssClass()" style="@Style" id="@GetId()">
@ChildContent
</div>
}