
* Update component docstrings * Remove transitions libs * Add span component * Add lock files
14 lines
281 B
Python
14 lines
281 B
Python
"""A heading component."""
|
|
|
|
from pynecone.components.libs.chakra import ChakraComponent
|
|
from pynecone.var import Var
|
|
|
|
|
|
class Heading(ChakraComponent):
|
|
"""A page heading."""
|
|
|
|
tag = "Heading"
|
|
|
|
# "4xl" | "3xl" | "2xl" | "xl" | "lg" | "md" | "sm" | "xs"
|
|
size: Var[str]
|