1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/// A modifier, that when applied will convert the outer corners to round corners.
/// ```text
/// ╭───────┬───────╮
/// │ Hello │ there │
/// ╞═══════╪═══════╡
/// │ a ┆ b │
/// ├╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌┤
/// │ c ┆ d │
/// ╰───────┴───────╯
/// ```
pub const UTF8_ROUND_CORNERS: &str = " ╭╮╰╯";
/// A modifier, that when applied will convert the inner borders to solid lines.
/// ```text
/// ╭───────┬───────╮
/// │ Hello │ there │
/// ╞═══════╪═══════╡
/// │ a │ b │
/// ├───────┼───────┤
/// │ c │ d │
/// ╰───────┴───────╯
/// ```
pub const UTF8_SOLID_INNER_BORDERS: &str = " │─ ";