ResuMe/Resume.Blazor/Components/ItemTemplate/ContactInfoItemTemplate.razor

24 lines
580 B
Plaintext

<div class="flex flex-row my-5">
<div class="bg-[#2E2E48] py-2 px-2.5 rounded-full">
<svg width="25" height="25" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="@SvgPath" fill="#E2E6EE" />
</svg>
</div>
<div class="mx-4">
<p class="text-gray-400">@Title</p>
<p class="text-white -mt-1">@Detail</p>
</div>
</div>
@code {
[Parameter]
public string Title { get; set; }
[Parameter]
public string Detail { get; set; }
[Parameter]
public string SvgPath { get; set; }
}