v / vlib / gx / text.v
11 lines · 8 sloc · 300 bytes · 3ffc951cf555dc4818309a507ccb9d0da4de748f
Raw
1@[deprecated: 'module gx is deprecated, use `import gg` instead']
2@[deprecated_after: '2026-01-24']
3module gx
4
5import gg
6
7// TODO: remove these, and use the enum everywhere
8pub const align_left = gg.HorizontalAlign.left
9pub const align_right = gg.HorizontalAlign.right
10
11pub type TextCfg = gg.TextCfg
12