ui/richtext/bases/RichTextSpacer.cs

A tiny rich text component class for the UI. It declares a RichTextPanel with the text "___" and a RichTextSpacer type that inherits RichTextBase and sets HideText to always be true.

[RichTextPanel( @"___" )]
public class RichTextSpacer : RichTextBase
{
	public override bool HideText => true;
}