(theme: Theme, {strict}: {strict: boolean})
| 242 | } |
| 243 | |
| 244 | export function getModifiedFallbackStyle(theme: Theme, {strict}: {strict: boolean}): string { |
| 245 | const factory = fallbackFactory || defaultFallbackFactory; |
| 246 | return factory(theme, {strict}); |
| 247 | } |
| 248 | |
| 249 | type FallbackFactory = (theme: Theme, options: {strict: boolean}) => string; |
| 250 |
no outgoing calls
no test coverage detected