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