Open soullivaneuh opened 3 years ago
Regarding the following example:
import React, { FC } from 'react'; import { View } from 'react-native'; import { FontAwesome5, MaterialIcons } from '@expo/vector-icons'; const Example: FC = () => { return ( <View> <FontAwesome5 name="child" size={40} /> <MaterialIcons name="10k" size={40} /> </View> ); };
I don't have any type checking for FontAwesome5 component but I have it for MaterialIcons (props name and glyph maps).
FontAwesome5
MaterialIcons
Currently needed for wrapper application such as https://github.com/expo/vector-icons/issues/153#issuecomment-752769305 or simply to make the code more reliable.
Could you do something about this please ? 🤔
Regarding the following example:
I don't have any type checking for
FontAwesome5
component but I have it forMaterialIcons
(props name and glyph maps).Currently needed for wrapper application such as https://github.com/expo/vector-icons/issues/153#issuecomment-752769305 or simply to make the code more reliable.