import { createIconSetFromIcoMoon } from '@expo/vector-icons' import iconJson from 'assets/icomoon/selection.json' import { StyleProp, TextStyle } from 'react-native' import { useTheme } from '@/hooks' import { IconNames } from '@/types' import { getColorValue } from '@/utils' export type IconProps = { color?: ColorNames name: IconNames size: number style?: StyleProp } const IconFont = createIconSetFromIcoMoon(iconJson, 'IcoMoon', 'icomoon.ttf') export const Icon = ({ color, name, size, style }: IconProps) => { const { colors } = useTheme() // Using provided color is prevention if user will pass color that is not included in ColorNames return ( ) }