mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-19 22:08:34 -04:00
21 lines
356 B
Plaintext
21 lines
356 B
Plaintext
@using System;
|
|
@using Sandbox.UI;
|
|
@using Sandbox;
|
|
@using Menu;
|
|
@using Sandbox.Menu;
|
|
|
|
<root>
|
|
<div class="inner">
|
|
<i>@Icon</i>
|
|
<span>@Text</span>
|
|
</div>
|
|
</root>
|
|
|
|
@code
|
|
{
|
|
[Parameter] public string Icon { get; set; }
|
|
[Parameter] public string Text { get; set; }
|
|
|
|
protected override int BuildHash() => HashCode.Combine(Text);
|
|
}
|