use super::LineSet;
pub const NORMAL: LineSet = LineSet {
horizontal: '─',
vertical: '│',
cross: '┼',
vertical_left: '┤',
vertical_right: '├',
horizontal_down: '┬',
horizontal_up: '┴',
};
pub const DOUBLE: LineSet = LineSet {
horizontal: '═',
vertical: '║',
cross: '╬',
vertical_left: '╣',
vertical_right: '╠',
horizontal_down: '╦',
horizontal_up: '╩',
};
pub const THICK: LineSet = LineSet {
horizontal: '━',
vertical: '┃',
cross: '╋',
vertical_left: '┫',
vertical_right: '┣',
horizontal_down: '┳',
horizontal_up: '┻',
};