(theme: CombinedTheme)
| 43 | type CombinedTheme = typeof CombinedDefaultTheme; |
| 44 | |
| 45 | export const createConfiguredFontTheme = (theme: CombinedTheme) => ({ |
| 46 | ...theme, |
| 47 | fonts: configureFonts({ |
| 48 | config: { |
| 49 | fontFamily: 'Abel', |
| 50 | }, |
| 51 | }), |
| 52 | }); |
| 53 | |
| 54 | export const createConfiguredFontNavigationTheme = (theme: CombinedTheme) => ({ |
| 55 | ...theme, |
no test coverage detected
searching dependent graphs…