ICS React Native App
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 478 B view raw
1import Ionicons from "@expo/vector-icons/Ionicons"; 2 3export type MaybeArray<T> = T | T[]; 4 5export const wrap = <T>(value: MaybeArray<T>): T[] => 6 Array.isArray(value) ? value : [value]; 7 8type IconName = keyof (typeof Ionicons)["glyphMap"]; 9 10const mapping: Record<string, IconName> = { 11 deposit: "bonfire-sharp", 12 invoice: "document", 13 payment: "compass", 14 withdrawal: "caret-down", 15}; 16 17export const mapTransactionTypeToIcon = (value: string): IconName => 18 mapping[value];