from gdshelpers.geometry.chip import Cell
from gdshelpers.parts.text import Text

text = Text([0, 0], 10, 'The quick brown fox\njumps over the lazy dog\n1234567890',
            alignment='center-top')

cell = Cell('FONTS')
cell.add_to_layer(1, text)
cell.show()