A column part that joins the given string list vertically.
At the key rest you will find a version that accepts the strings as a list of arguments.
rest
import {Draw} from 'effect-tree'const abcTower = Draw.stackText.rest('A', 'B', 'C')// ‘A// B// C’ Copy
import {Draw} from 'effect-tree'const abcTower = Draw.stackText.rest('A', 'B', 'C')// ‘A// B// C’
A column part that joins the given string list vertically.
At the key
restyou will find a version that accepts the strings as a list of arguments.