UI/Pressable/PressableTooltip.razor

A Blazor-style Razor UI component for s&box that renders a tooltip with icon, title, and description. It defines three string parameters bound to the template and inherits from Panel.

@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; }
}