Files
radzen-blazor/Radzen.Blazor/RadzenBreadCrumb.razor
2022-04-06 11:33:02 +03:00

13 lines
272 B
Plaintext

@inherits RadzenComponentWithChildren
<CascadingValue Value="@Template">
@if (Visible)
{
<div class="@GetCssClass()" style="@Style" @attributes="@Attributes" id="@GetId()">
@if (ChildContent != null)
{
@ChildContent
}
</div>
}
</CascadingValue>