A Blazor-style Razor UI component for Sandbox that renders a tooltip with icon, title, and description. It defines three string parameters and outputs simple HTML structure with classes tt, icon, title, and description.
@using Sandbox;
@using Sandbox.UI;
@inherits Panel
@namespace Sandbox
<root class="tt">
<div class="icon">@Icon</div>
<div class="title">@Title</div>
<div class="description">@Description</div>
</root>
@code
{
[Parameter] public string Title { get; set; }
[Parameter] public string Icon { get; set; }
[Parameter] public string Description { get; set; }
}