Neighbourhood.omg.lol/Components/ThemeCard.razor

12 lines
395 B
Text
Raw Normal View History

2024-07-11 05:57:53 +00:00
<article class="theme" style="@theme?.PreviewCssData?.BackgroundCss ; @theme?.PreviewCssData?.TextCss">
2024-07-12 05:08:12 +00:00
<h5 class="honey">@theme?.Name</h5>
2024-07-11 05:57:53 +00:00
<p class="small theme-author" style="@theme?.PreviewCssData?.LinkCss">
<i class="fa-solid fa-palette" style="@theme?.PreviewCssData?.IconCss"></i> by @theme?.Author
</p>
</article>
@code {
[Parameter]
public Theme? theme { get; set; }
}