12 lines
224 B
Plaintext
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; }
|
|
} |