( themeOverrides: $DeepPartial<InternalTheme> | undefined )
| 29 | } |
| 30 | |
| 31 | export const useInternalTheme = ( |
| 32 | themeOverrides: $DeepPartial<InternalTheme> | undefined |
| 33 | ) => useAppTheme<InternalTheme>(themeOverrides); |
| 34 | |
| 35 | export const withInternalTheme = <Props extends { theme: InternalTheme }, C>( |
| 36 | WrappedComponent: ComponentType<Props & { theme: InternalTheme }> & C |
no outgoing calls
no test coverage detected
searching dependent graphs…