reflex/pynecone/components/layout/flex.py
2023-05-09 23:01:25 -07:00

32 lines
656 B
Python

"""A reflexive container component."""
from pynecone.components.libs.chakra import ChakraComponent
from pynecone.vars import Var
class Flex(ChakraComponent):
"""A reflexive container component."""
tag = "Flex"
# How to align items in the flex.
align: Var[str]
# Shorthand for flexBasis style prop
basis: Var[str]
# Shorthand for flexDirection style prop
direction: Var[str]
# Shorthand for flexGrow style prop
grow: Var[str]
# The way to justify the items.
justify: Var[str]
# Shorthand for flexWrap style prop
wrap: Var[str]
# Shorthand for flexShrink style prop
shrink: Var[str]