@inject IAuthenticationService AuthenticationService
<MudCard Elevation="0" Square="true" Class="@Class" Style="@Style">
<MudCardHeader>
<CardHeaderAvatar>
<MudAvatar Image="@(AuthenticationService.User.Account.Avatar)" />
</CardHeaderAvatar>
<CardHeaderContent>
<MudText Typo="Typo.body2">@AuthenticationService.User.Account.Name</MudText>
<MudText Typo="Typo.caption">@AuthenticationService.User.Account.Sign</MudText>
</CardHeaderContent>
</MudCardHeader>
<MudDivider Class="mb-4"/>
</MudCard>
@code {
[Parameter] public string Class { get; set; }
[Parameter] public string Style { get; set; }
}