Get the props for the component. Returns: The set of component props.
(cls)
| 1196 | |
| 1197 | @classmethod |
| 1198 | def get_props(cls) -> Set[str]: |
| 1199 | """Get the props for the component. |
| 1200 | |
| 1201 | Returns: |
| 1202 | The set of component props. |
| 1203 | """ |
| 1204 | return set() |
| 1205 | |
| 1206 | def get_custom_components( |
| 1207 | self, seen: set[str] | None = None |