Open jankaifer opened 3 years ago
Hi, this module is cool. But types are a bit off.
Current types are missing icon prop (it says that Icon has same props as Text):
icon
declare module "react-native-fontawesome" { import React from "react"; import { TextProperties } from "react-native"; export { SolidIcons, RegularIcons, BrandIcons, parseIconFromClassName } from "react-native-fontawesome/FontAwesomeIcons"; const Icon: React.ComponentClass<TextProperties>; export default Icon; }
It might be an error on my end though. Just asking for confirmation.
Workaround:
import _FontAwesome from 'react-native-fontawesome'; const FontAwesome = (_FontAwesome as unknown) as React.ComponentClass<TextProperties & { icon: string; pro: boolean; }>;
Hi, this module is cool. But types are a bit off.
Current types are missing
icon
prop (it says that Icon has same props as Text):It might be an error on my end though. Just asking for confirmation.
Workaround: