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.
23 lines
567 B
23 lines
567 B
2 years ago
|
@namespace Connected.Components
|
||
|
|
||
|
@inherits UIComponent
|
||
|
|
||
|
<div @attributes="UserAttributes" class="@Classname" style="@Style">
|
||
|
@if (CardHeaderAvatar is not null)
|
||
|
{
|
||
|
<div class="mud-card-header-avatar">@CardHeaderAvatar</div>
|
||
|
}
|
||
|
@if (CardHeaderContent is not null)
|
||
|
{
|
||
|
<div class="mud-card-header-content">@CardHeaderContent</div>
|
||
|
}
|
||
|
@if (CardHeaderActions is not null)
|
||
|
{
|
||
|
<div class="mud-card-header-actions">@CardHeaderActions</div>
|
||
|
}
|
||
|
@if (ChildContent is not null)
|
||
|
{
|
||
|
@ChildContent
|
||
|
}
|
||
|
</div>
|