12345678910111213141516171819202122232425262728293031323334353637383940 |
- """Components for rendering heading.
- https://www.radix-ui.com/themes/docs/theme/typography
- """
- from __future__ import annotations
- from reflex import el
- from reflex.vars import Var
- from ..base import (
- CommonMarginProps,
- LiteralAccentColor,
- LiteralVariant,
- RadixThemesComponent,
- )
- from .base import (
- LiteralTextSize,
- LiteralTextWeight,
- )
- class Code(el.Code, CommonMarginProps, RadixThemesComponent):
- """A block level extended quotation."""
- tag = "Code"
- # The visual variant to apply: "solid" | "soft" | "outline" | "ghost"
- variant: Var[LiteralVariant]
- # Text size: "1" - "9"
- size: Var[LiteralTextSize]
- # Thickness of text: "light" | "regular" | "medium" | "bold"
- weight: Var[LiteralTextWeight]
- # Overrides the accent color inherited from the Theme.
- color: Var[LiteralAccentColor]
- # Whether to render the text with higher contrast color
- high_contrast: Var[bool]
|