๐Ÿ“„ figures.js
/home/palash/git/site/node_modules/prompts/lib/util/figures.js
Language: js โ€ข Lines: 33
'use strict';	

 const main = {
  arrowUp: 'โ†‘',
  arrowDown: 'โ†“',
  arrowLeft: 'โ†',
  arrowRight: 'โ†’',
  radioOn: 'โ—‰',
  radioOff: 'โ—ฏ',
  tick: 'โœ”',	
  cross: 'โœ–',	
  ellipsis: 'โ€ฆ',	
  pointerSmall: 'โ€บ',	
  line: 'โ”€',	
  pointer: 'โฏ'	
};	
const win = {
  arrowUp: main.arrowUp,
  arrowDown: main.arrowDown,
  arrowLeft: main.arrowLeft,
  arrowRight: main.arrowRight,
  radioOn: '(*)',
  radioOff: '( )',	
  tick: 'โˆš',	
  cross: 'ร—',	
  ellipsis: '...',	
  pointerSmall: 'ยป',	
  line: 'โ”€',	
  pointer: '>'	
};	
const figures = process.platform === 'win32' ? win : main;	

 module.exports = figures;