uiBox renders a box header: ╭── icon TITLE
(icon, title, color string)
| 22 | |
| 23 | // uiBox renders a box header: ╭── icon TITLE |
| 24 | func uiBox(icon, title, color string) string { |
| 25 | return fmt.Sprintf("%s%s╭── %s %s%s", color, ColorBold, icon, title, ColorReset) |
| 26 | } |
| 27 | |
| 28 | // uiBoxEnd renders a box footer: ╰───────── |
| 29 | func uiBoxEnd(color string) string { |
no outgoing calls
no test coverage detected