@farjs/ui
Version:
Terminal UI React.js components library
31 lines (25 loc) • 537 B
JavaScript
const DoubleChars = Object.freeze({
// lines
horizontal: "\u2550",
vertical: "\u2551",
// corners
topLeft: "\u2554",
topRight: "\u2557",
bottomLeft: "\u255a",
bottomRight: "\u255d",
// connectors
top: "\u2566",
bottom: "\u2569",
left: "\u2560",
right: "\u2563",
// single connectors
topSingle: "\u2564",
bottomSingle: "\u2567",
leftSingle: "\u255f",
rightSingle: "\u2562",
// crosses
cross: "\u256c",
crossSingleVert: "\u256a",
crossSingleHoriz: "\u256b",
});
export default DoubleChars;