mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
15 lines
255 B
Plaintext
15 lines
255 B
Plaintext
@inherits RadzenComponent
|
|
@if (Visible)
|
|
{
|
|
<span @ref="@Element" style="@Style" @attributes="Attributes" class="@GetCssClass()" id="@GetId()">
|
|
@if (ChildContent != null)
|
|
{
|
|
@ChildContent
|
|
}
|
|
else
|
|
{
|
|
@Text
|
|
}
|
|
</span>
|
|
}
|