reflex/pynecone/components/datadisplay/divider.py
2022-11-18 12:44:06 -08:00

17 lines
536 B
Python

"""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]