mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-26 15:57:58 +01:00
15 lines
303 B
C#
15 lines
303 B
C#
namespace Spectre.Console.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Represents an invisible border.
|
|
/// </summary>
|
|
public sealed class NoBorder : Border
|
|
{
|
|
/// <inheritdoc/>
|
|
protected override string GetBoxPart(BorderPart part)
|
|
{
|
|
return " ";
|
|
}
|
|
}
|
|
}
|