uiBoxEnd renders a box footer: ╰─────────
(color string)
| 27 | |
| 28 | // uiBoxEnd renders a box footer: ╰───────── |
| 29 | func uiBoxEnd(color string) string { |
| 30 | return fmt.Sprintf("%s╰%s%s", color, strings.Repeat("─", uiTermWidth()-2), ColorReset) |
| 31 | } |
| 32 | |
| 33 | // uiPrefix renders a box sidebar: │ |
| 34 | func uiPrefix(color string) string { |
no test coverage detected