({
context,
children,
}: __ThemeUIInternalBaseThemeProviderProps)
| 128 | * @internal |
| 129 | */ |
| 130 | export const __ThemeUIInternalBaseThemeProvider = ({ |
| 131 | context, |
| 132 | children, |
| 133 | }: __ThemeUIInternalBaseThemeProviderProps) => |
| 134 | jsx( |
| 135 | EmotionContext.Provider, |
| 136 | { value: context.theme }, |
| 137 | jsx(__ThemeUIContext.Provider, { |
| 138 | value: context, |
| 139 | children, |
| 140 | }) |
| 141 | ) |
| 142 | |
| 143 | export interface ThemeProviderProps { |
| 144 | theme: Theme | ((outerTheme: Theme) => Theme) |
nothing calls this directly
no test coverage detected
searching dependent graphs…