A text part that joins the given string list horizontally, separating items using the given separator.
import {Draw} from 'effect-tree'const abcText = Draw.joinText(['A', 'B', 'C'], '.')// ‘A.B.C’ Copy
import {Draw} from 'effect-tree'const abcText = Draw.joinText(['A', 'B', 'C'], '.')// ‘A.B.C’
Optional
A text part that joins the given string list horizontally, separating items using the given separator.
Example