ui/richtext/RichTextBulletIcon.cs

A small RichText element class for the UI that inserts a bullet icon. It binds to a rich text tag matching "bullet-icon" or "Bullet-icons" and provides an image path and hides text content.

[RichTextPanel( @"\b[Bb]ullet-icons?\b" )]
public class RichTextBulletIcon : RichTextBase
{
	public override string ImagePath => "textures/ui/bullet-icon.png";
	public override bool HideText => true;
}