basant307/AI_Governance_Project
048
1# cli-boxes2 3> Boxes for use in the terminal4 5The list of boxes is just a [JSON file](boxes.json) and can be used anywhere.6 7## Install8 9```sh10npm install cli-boxes11```12 13## Usage14 15```js16import cliBoxes from 'cli-boxes';17 18console.log(cliBoxes.single);19/*20{21 topLeft: '┌',22 top: '─',23 topRight: '┐',24 right: '│',25 bottomRight: '┘',26 bottom: '─',27 bottomLeft: '└',28 left: '│'29}30*/31```32 33## API34 35### cliBoxes36 37#### `single`38 39```40┌────┐41│ │42└────┘43```44 45#### `double`46 47```48╔════╗49║ ║50╚════╝51```52 53#### `round`54 55```56╭────╮57│ │58╰────╯59```60 61#### `bold`62 63```64┏━━━━┓65┃ ┃66┗━━━━┛67```68 69#### `singleDouble`70 71```72╓────╖73║ ║74╙────╜75```76 77#### `doubleSingle`78 79```80╒════╕81│ │82╘════╛83```84 85#### `classic`86 87```88+----+89| |90+----+91```92 93#### `arrow`94 95```96↘↓↓↓↓↙97→ ←98↗↑↑↑↑↖99```100 101## Related102 103- [boxen](https://github.com/sindresorhus/boxen) - Create boxes in the terminal104 