forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
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-Medium': require('../../../assets/fonts/inter/Inter-Medium.otf'),
15 'Inter-MediumItalic': require('../../../assets/fonts/inter/Inter-MediumItalic.otf'),
16 'Inter-SemiBold': require('../../../assets/fonts/inter/Inter-SemiBold.otf'),
17 'Inter-SemiBoldItalic': require('../../../assets/fonts/inter/Inter-SemiBoldItalic.otf'),
18 'Inter-Bold': require('../../../assets/fonts/inter/Inter-Bold.otf'),
19 'Inter-BoldItalic': require('../../../assets/fonts/inter/Inter-BoldItalic.otf'),
20 })
21}