A small Razor UI component that defines a RichText panel representing a newline. It applies the RichTextPanel attribute with the newline marker and provides an empty root element plus simple styling for width and flex behavior.
@attribute [RichTextPanel( @"\n" )]
<root>
</root>
<style>
RichTextNewline
{
width: 100%;
flex-shrink: 1;
}
</style>