reflex/reflex/components/chakra/layout/aspect_ratio.py
2024-03-05 21:36:39 +01:00

15 lines
360 B
Python

"""A AspectRatio component."""
from typing import Optional
from reflex.components.chakra import ChakraComponent
from reflex.vars import Var
class AspectRatio(ChakraComponent):
"""AspectRatio component is used to embed responsive videos and maps, etc."""
tag = "AspectRatio"
# The aspect ratio of the Box
ratio: Optional[Var[float]] = None