summaryrefslogtreecommitdiffstats
path: root/pkg/jp/primitives/runes.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/jp/primitives/runes.go')
-rw-r--r--pkg/jp/primitives/runes.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/jp/primitives/runes.go b/pkg/jp/primitives/runes.go
new file mode 100644
index 0000000..03c0845
--- /dev/null
+++ b/pkg/jp/primitives/runes.go
@@ -0,0 +1,18 @@
+package primitives
+
+// Block elements
+const (
+ FullBlock1 = "░"
+ FullBlock2 = "▒"
+ FullBlock3 = "▓"
+ FullBlock4 = "█"
+)
+
+// Box drawing characters
+var (
+ HorizontalLine = "─"
+ VerticalLine = "│"
+ CornerBottomLeft = "└"
+ PointSymbolDefault = "•"
+ Cross = "╳"
+)