react-native-ico-stylish 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/typings.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ico-stylish",
3
- "version": "4.1.4",
3
+ "version": "4.1.5",
4
4
  "description": "Stylish Icons for React Native",
5
5
  "main": "src/index.jsx",
6
6
  "types": "typings.d.ts",
package/typings.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  declare module 'react-native-ico-stylish' {
2
2
  import { ReactNode } from 'react';
3
+ import { SvgProps, AdditionalProps } from 'react-native-svg';
3
4
 
4
5
  type iconNames = 'bikini-one-piece-swimwear' |
5
6
  'bikini-shape-1' |
@@ -233,7 +234,7 @@ declare module 'react-native-ico-stylish' {
233
234
  badge?: number | string | badgeTypeObj;
234
235
  }
235
236
 
236
- const Icon: (props: IconProps) => ReactNode;
237
+ const Icon: (props: IconProps & SvgProps & AdditionalProps) => ReactNode;
237
238
 
238
239
  export { iconNames };
239
240
  export default Icon;