Files
WatchIt/WatchIt.Website/Components/Subcomponents/Common/Image.razor

3 lines
287 B
Plaintext
Raw Normal View History

@inherits Component
<img class="@(Circle ? "rounded-circle" : "rounded-2") @(Shadow ? "shadow" : string.Empty) object-fit-cover @(Class)" src="@(Content?.ToString() ?? Placeholder)" alt="@(AlternativeText)" @attributes="@(_attributes)" style="aspect-ratio: @(AspectRatio.ToString());"/>