mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {useFonts} from 'expo-font'
2
3/*
4 * IMPORTANT: This is unused. Expo statically extracts these fonts.
5 *
6 * All used fonts MUST be configured here. Unused fonts can be commented out.
7 *
8 * This is used for both web fonts and native fonts.
9 */
10export function DO_NOT_USE() {
11 return useFonts({
12 'Inter-Regular': require('../../../assets/fonts/inter/Inter-Regular.otf'),
13 'Inter-Italic': require('../../../assets/fonts/inter/Inter-Italic.otf'),
14 'Inter-Bold': require('../../../assets/fonts/inter/Inter-SemiBold.otf'),
15 'Inter-BoldItalic': require('../../../assets/fonts/inter/Inter-SemiBoldItalic.otf'),
16 'Inter-Black': require('../../../assets/fonts/inter/Inter-ExtraBold.otf'),
17 'Inter-BlackItalic': require('../../../assets/fonts/inter/Inter-ExtraBoldItalic.otf'),
18 })
19}