| 16 | |
| 17 | export type Theme = typeof defaultTheme |
| 18 | interface ProviderProps { |
| 19 | theme: Theme |
| 20 | children?: React.ReactNode |
| 21 | } |
| 22 | |
| 23 | const ThemeContext = React.createContext(defaultTheme) |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected