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.
Connected.Components/Components/Card/CardHeader.razor

23 lines
567 B

@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>