From 1a89eec108573c622ce520d96a4a8c82bcbc1878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Tue, 12 Dec 2023 19:38:33 +0100 Subject: [PATCH] feat(bridge/python): add `Icon` component --- bridges/python/src/sdk/aurora/icon.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bridges/python/src/sdk/aurora/icon.py 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)