17 lines
537 B
Python
17 lines
537 B
Python
"""A line to divide parts of the layout."""
|
|
|
|
from pynecone.components.libs.chakra import ChakraComponent
|
|
from pynecone.vars 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]
|