12345678910111213141516 |
- """A line to divide parts of the layout."""
- from pynecone.components.libs.chakra import ChakraComponent
- from pynecone.var import Var
- class Divider(ChakraComponent):
- """Dividers are used to visually separate content in a list or group."""
- tag = "Divider"
- # Pass the orientation prop and set it to either horizontal or vertical. If the vertical orientation is used, make sure that the parent element is assigned a height.
- orientation: Var[str]
- # Variant of the divider ("solid" | "dashed")
- variant: Var[str]
|