LANCommander/LANCommander.UI/Components/BootstrapIcon/BootstrapIcon.razor
2025-09-06 13:09:47 -05:00

14 lines
No EOL
490 B
Text

@namespace LANCommander.UI.Components
<span class="anticon" role="img">
<svg focusable="false" width="@Width" height="@Height" fill="@Color">
<use href="_content/LANCommander.UI/bootstrap-icons.svg#@Type"></use>
</svg>
</span>
@code {
[Parameter] public string Type { get; set; }
[Parameter] public string Color { get; set; } = "currentColor";
[Parameter] public string Width { get; set; } = "1em";
[Parameter] public string Height { get; set; } = "1em";
}