11 lines
397 B
Text
11 lines
397 B
Text
<article class="theme" style="@theme?.PreviewCssData?.BackgroundCss ; @theme?.PreviewCssData?.TextCss">
|
|
<h5 class="address">@theme?.Name</h5>
|
|
<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; }
|
|
}
|