about summary refs log tree commit diff
path: root/src/screens/Settings/AppIconSettings/types.ts
blob: 02c2791dc94da689703fbdf755904d795de4e73c (plain) (blame)
1
2
3
4
5
6
7
8
9
import {type ImageSourcePropType} from 'react-native'
import type * as DynamicAppIcon from '@mozzius/expo-dynamic-app-icon'

export type AppIconSet = {
  id: DynamicAppIcon.IconName
  name: string
  iosImage: () => ImageSourcePropType
  androidImage: () => ImageSourcePropType
}