@inherits MSGComponentBase
@if (this.IssuesData.Any())
{
    <MudPaper Class="pa-3 mr-3 mt-3 border-dashed border rounded-lg mud-alert-outlined-error">
        <MudText Typo="Typo.h6">
            @T("Issues")
        </MudText>
        <MudList T="string">
            @foreach (var issue in this.IssuesData)
            {
                <MudListItem Icon="@Icons.Material.Filled.Error" IconColor="Color.Error">
                    @issue
                </MudListItem>
            }
        </MudList>
    </MudPaper>
}