@farjs/ui
Version:
Terminal UI React.js components library
31 lines (25 loc) • 537 B
JavaScript
const SingleChars = Object.freeze({
// lines
horizontal: "\u2500",
vertical: "\u2502",
// corners
topLeft: "\u250c",
topRight: "\u2510",
bottomLeft: "\u2514",
bottomRight: "\u2518",
// connectors
top: "\u252c",
bottom: "\u2534",
left: "\u251c",
right: "\u2524",
// double connectors
topDouble: "\u2565",
bottomDouble: "\u2568",
leftDouble: "\u255e",
rightDouble: "\u2561",
// crosses
cross: "\u253c",
crossDoubleVert: "\u256b",
crossDoubleHoriz: "\u256a",
});
export default SingleChars;