react-native-ico-rpg-game 4.1.4 → 4.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/typings.d.ts +2 -1
package/package.json
CHANGED
package/typings.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare module 'react-native-ico-rpg-game' {
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
+
import { SvgProps, AdditionalProps } from 'react-native-svg';
|
|
3
4
|
|
|
4
5
|
type iconNames = 'acid' |
|
|
5
6
|
'acorn' |
|
|
@@ -528,7 +529,7 @@ declare module 'react-native-ico-rpg-game' {
|
|
|
528
529
|
badge?: number | string | badgeTypeObj;
|
|
529
530
|
}
|
|
530
531
|
|
|
531
|
-
const Icon: (props: IconProps) => ReactNode;
|
|
532
|
+
const Icon: (props: IconProps & SvgProps & AdditionalProps) => ReactNode;
|
|
532
533
|
|
|
533
534
|
export { iconNames };
|
|
534
535
|
export default Icon;
|