
* Update component docstrings * Remove transitions libs * Add span component * Add lock files
16 lines
289 B
Python
16 lines
289 B
Python
"""An image component."""
|
|
|
|
from pynecone.components.component import Component
|
|
|
|
|
|
class ChakraIconComponent(Component):
|
|
"""A component that wraps a Chakra icon component."""
|
|
|
|
library = "@chakra-ui/icons"
|
|
|
|
|
|
class Icon(ChakraIconComponent):
|
|
"""An image icon."""
|
|
|
|
tag = "None"
|