A text part that is width wide composed entirely of the given string repeated or sliced.
width
import {Draw} from 'effect-tree'const repeated = Draw.repeatText.rest(3, 'A')// ‘AAA’ Copy
import {Draw} from 'effect-tree'const repeated = Draw.repeatText.rest(3, 'A')// ‘AAA’
A text part that is
widthwide composed entirely of the given string repeated or sliced.Example