33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
<div class="mt-2">
|
|
<MudStack>
|
|
<div class="text-gray-400">
|
|
<p>@Period</p>
|
|
<div class="flex flex-row">
|
|
<img src="@ImageSrc" class="w-[3.5rem] my-2 h-[3.5rem] rounded-md" />
|
|
<div class="mx-3 my-auto">
|
|
<p class="text-white">@CompanyName</p>
|
|
<div class="flex flex-wrap my-2 -mx-1">
|
|
@foreach (var feild in Feilds)
|
|
{
|
|
<div class="bg-[#2E2E48] mx-1 px-3 py-1 rounded-md text-[0.7rem]">
|
|
<p>@feild</p>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<p class="text-justify -mt-2">@Detail</p>
|
|
</MudStack>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter] public string CompanyName { get; set; }
|
|
[Parameter] public string Detail { get; set; }
|
|
[Parameter] public string CompanyImage { get; set; }
|
|
[Parameter] public bool HasLeftBorder { get; set; }
|
|
[Parameter] public string Period { get; set; }
|
|
[Parameter] public string ImageSrc { get; set; }
|
|
[Parameter] public string[] Feilds { get; set; }
|
|
}
|