| import { env } from '../utils/env.js' |
|
|
| |
| export const BLACK_CIRCLE = env.platform === 'darwin' ? 'βΊ' : 'β' |
| export const BULLET_OPERATOR = 'β' |
| export const TEARDROP_ASTERISK = 'β»' |
| export const UP_ARROW = '\u2191' |
| export const DOWN_ARROW = '\u2193' |
| export const LIGHTNING_BOLT = 'β―' |
| export const EFFORT_LOW = 'β' |
| export const EFFORT_MEDIUM = 'β' |
| export const EFFORT_HIGH = 'β' |
| export const EFFORT_MAX = 'β' |
|
|
| |
| export const PLAY_ICON = '\u25b6' |
| export const PAUSE_ICON = '\u23f8' |
|
|
| |
| export const REFRESH_ARROW = '\u21bb' |
| export const CHANNEL_ARROW = '\u2190' |
| export const INJECTED_ARROW = '\u2192' |
| export const FORK_GLYPH = '\u2442' |
|
|
| |
| export const DIAMOND_OPEN = '\u25c7' |
| export const DIAMOND_FILLED = '\u25c6' |
| export const REFERENCE_MARK = '\u203b' |
|
|
| |
| export const FLAG_ICON = '\u2691' |
|
|
| |
| export const BLOCKQUOTE_BAR = '\u258e' |
| export const HEAVY_HORIZONTAL = '\u2501' |
|
|
| |
| export const BRIDGE_SPINNER_FRAMES = [ |
| '\u00b7|\u00b7', |
| '\u00b7/\u00b7', |
| '\u00b7\u2014\u00b7', |
| '\u00b7\\\u00b7', |
| ] |
| export const BRIDGE_READY_INDICATOR = '\u00b7\u2714\ufe0e\u00b7' |
| export const BRIDGE_FAILED_INDICATOR = '\u00d7' |
|
|