mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-26 15:57:58 +01:00
11 lines
204 B
C#
11 lines
204 B
C#
namespace Spectre.Console.Composition
|
|
{
|
|
internal sealed class NoBorder : Border
|
|
{
|
|
protected override string GetBoxPart(BorderPart part)
|
|
{
|
|
return " ";
|
|
}
|
|
}
|
|
}
|