import { Platform, type PlatformOSType } from 'react-native'; import type { Fonts } from '../utils/types'; export default function configureFonts(config?: { [platform in PlatformOSType | 'default']?: Fonts; }): Fonts { const fonts = Platform.select({ ...config }) as Fonts; return fonts; }