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.
19 lines
483 B
19 lines
483 B
2 years ago
|
@namespace Connected.Components
|
||
|
@inherits UIComponent
|
||
|
|
||
|
@if (Visible)
|
||
|
{
|
||
|
<div @attributes="UserAttributes" class="@Classname" style="@Styles" @onclick="OnClickHandler" @onclick:stopPropagation="true">
|
||
|
@if(LightBackground || DarkBackground)
|
||
|
{
|
||
|
<div class="@ScrimClassname"></div>
|
||
|
}
|
||
|
@if(ChildContent != null)
|
||
|
{
|
||
|
<div class="mud-overlay-content">
|
||
|
@ChildContent
|
||
|
</div>
|
||
|
}
|
||
|
</div>
|
||
|
}
|