base.py 409 B

12345678910111213
  1. """Components for rendering text.
  2. https://www.radix-ui.com/themes/docs/theme/typography
  3. """
  4. from __future__ import annotations
  5. from typing import Literal
  6. LiteralTextWeight = Literal["light", "regular", "medium", "bold"]
  7. LiteralTextAlign = Literal["left", "center", "right"]
  8. LiteralTextSize = Literal["1", "2", "3", "4", "5", "6", "7", "8", "9"]
  9. LiteralTextTrim = Literal["normal", "start", "end", "both"]