mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-18 14:21:32 +03:00
feat(bridge/python): add Icon
component
This commit is contained in:
parent
dfb9b81c8b
commit
1a89eec108
11
bridges/python/src/sdk/aurora/icon.py
Normal file
11
bridges/python/src/sdk/aurora/icon.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
from typing import TypedDict
|
||||||
|
from ..widget_component import WidgetComponent
|
||||||
|
|
||||||
|
|
||||||
|
class IconProps(TypedDict, total=False):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class Icon(WidgetComponent[IconProps]):
|
||||||
|
def __init__(self, props: IconProps):
|
||||||
|
super().__init__(props)
|
Loading…
Reference in New Issue
Block a user