Convert pc.icon tag to title case (#553)
This commit is contained in:
parent
d72256d427
commit
12faa76279
@ -1,5 +1,6 @@
|
|||||||
"""An image component."""
|
"""An image component."""
|
||||||
|
|
||||||
|
from pynecone import utils
|
||||||
from pynecone.components.component import Component
|
from pynecone.components.component import Component
|
||||||
|
|
||||||
|
|
||||||
@ -36,5 +37,5 @@ class Icon(ChakraIconComponent):
|
|||||||
)
|
)
|
||||||
if "tag" not in props.keys():
|
if "tag" not in props.keys():
|
||||||
raise AttributeError("Missing 'tag' keyword-argument for Icon")
|
raise AttributeError("Missing 'tag' keyword-argument for Icon")
|
||||||
|
props["tag"] = utils.to_title_case(props["tag"]) + "Icon"
|
||||||
return super().create(*children, **props)
|
return super().create(*children, **props)
|
||||||
|
Loading…
Reference in New Issue
Block a user