Extra overlay function to add to the overlay component. Returns: The extra overlay function.
()
| 218 | |
| 219 | |
| 220 | def extra_overlay_function() -> Component | None: |
| 221 | """Extra overlay function to add to the overlay component. |
| 222 | |
| 223 | Returns: |
| 224 | The extra overlay function. |
| 225 | """ |
| 226 | extra_config = get_config().extra_overlay_function |
| 227 | if extra_config: |
| 228 | return _component_from_import_path(extra_config, "extra_overlay_function") |
| 229 | return None |
| 230 | |
| 231 | |
| 232 | def default_overlay_component() -> Component: |
no test coverage detected