(options: { content: string; title?: string })
| 1 | import boxen from 'boxen' |
| 2 | |
| 3 | export const createBox = (options: { content: string; title?: string }) => |
| 4 | boxen(options.content, { |
| 5 | padding: { left: 3, right: 3, top: 1, bottom: 1 }, |
| 6 | borderColor: 'magenta', |
| 7 | borderStyle: 'round', |
| 8 | title: options.title, |
| 9 | titleAlignment: 'center', |
| 10 | }) |