oqtane.framework/Oqtane.Client/Themes/Controls/FontIcon.razor
2021-02-04 08:54:59 -05:00

12 lines
224 B
Plaintext

@namespace Oqtane.Themes.Controls
@inherits ThemeControlBase
@if (!string.IsNullOrWhiteSpace(Value))
{
<span class="@Value" aria-hidden="true"></span>
}
@code {
[Parameter()]
public string Value { get; set; }
}