diff --git a/bridges/python/src/sdk/aurora/icon.py b/bridges/python/src/sdk/aurora/icon.py new file mode 100644 index 00000000..9a055541 --- /dev/null +++ b/bridges/python/src/sdk/aurora/icon.py @@ -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)