
* Update component docstrings * Remove transitions libs * Add span component * Add lock files
22 lines
396 B
Python
22 lines
396 B
Python
"""A box that centers its contents."""
|
|
|
|
from pynecone.components.libs.chakra import ChakraComponent
|
|
|
|
|
|
class Center(ChakraComponent):
|
|
"""A box that centers its contents."""
|
|
|
|
tag = "Center"
|
|
|
|
|
|
class Square(ChakraComponent):
|
|
"""A centered square container."""
|
|
|
|
tag = "Square"
|
|
|
|
|
|
class Circle(ChakraComponent):
|
|
"""A square container with round border-radius."""
|
|
|
|
tag = "Circle"
|