react-native-ico-stylish 4.1.4 → 5.1.2
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/README.md +7 -5
- package/package.json +2 -2
- package/typings.d.ts +8 -1
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ render() {
|
|
|
23
23
|
<Icon name="bikini" />
|
|
24
24
|
<Icon name="blush-makeup-circular-opened-case" height="40" width="40" />
|
|
25
25
|
<Icon name="bottle-black-and-rounded-shape" color="red" />
|
|
26
|
+
<Icon name="bottle-black-and-rounded-shape" colors={{ "#000000": "#FFFFFF" }} />
|
|
26
27
|
<Icon name="blush-makeup-circular-opened-case" badge="10" />
|
|
27
28
|
<Icon name="blush-makeup-circular-opened-case" badge={{value: 'A', fontSize: 25, radius: 22, position:'top_left', color:'orange', backgroundColor:'blue'}}/>
|
|
28
29
|
<Icon name="bikini" background="circle" />
|
|
@@ -69,13 +70,14 @@ Returns a SvgXml icon by name and group.
|
|
|
69
70
|
------|----------|---------------|-------------|---------
|
|
70
71
|
name | no | | name of icon | "bikini"
|
|
71
72
|
color | yes | | line color, css style | "#00ff00", "#0f0", "green"
|
|
73
|
+
colors | yes | | replace colors | {"#FFFFFF": "#000000"} // white to black
|
|
72
74
|
width | yes | 20 | width of the icon | 40
|
|
73
75
|
height | yes | 20 | height of the icon | 40
|
|
74
|
-
background |
|
|
75
|
-
background |
|
|
76
|
-
badge |
|
|
77
|
-
badge |
|
|
78
|
-
...rest |
|
|
76
|
+
background | yes | | background type | "circle"
|
|
77
|
+
background | yes | | background object | {type: "circle", color: 'yellow'}
|
|
78
|
+
badge | yes | | badge string | "10"
|
|
79
|
+
badge | yes | | badge object | {value: 'A', fontSize: 25, radius: 22, position:'top_left', color:'orange', backgroundColor:'blue'}
|
|
80
|
+
...rest | yes | | other props | style={{backgroundColor: "#00f"}}
|
|
79
81
|
|
|
80
82
|
## Icons Made by
|
|
81
83
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-ico-stylish",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"description": "Stylish Icons for React Native",
|
|
5
5
|
"main": "src/index.jsx",
|
|
6
6
|
"types": "typings.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"react-svg-main": "^
|
|
8
|
+
"react-svg-main": "^4.0.1"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
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' |
|
|
@@ -202,8 +203,12 @@ declare module 'react-native-ico-stylish' {
|
|
|
202
203
|
'zip' |
|
|
203
204
|
'zipper-tool';
|
|
204
205
|
|
|
206
|
+
type iconColors = ;
|
|
207
|
+
|
|
205
208
|
type backgroundType = 'circle' | 'rect' | 'button';
|
|
206
209
|
|
|
210
|
+
type colorsType = Record<iconColors, string>;
|
|
211
|
+
|
|
207
212
|
type positionType = 'top' | 'bottom' | 'right' | 'left' |
|
|
208
213
|
'top_right' | 'top_left' | 'bottom_right' | 'bottom_left';
|
|
209
214
|
|
|
@@ -219,6 +224,7 @@ declare module 'react-native-ico-stylish' {
|
|
|
219
224
|
fontSize?: string;
|
|
220
225
|
position?: positionType;
|
|
221
226
|
color?: string;
|
|
227
|
+
colors: colorsType;
|
|
222
228
|
backgroundColor?: string;
|
|
223
229
|
radius?: number;
|
|
224
230
|
};
|
|
@@ -228,12 +234,13 @@ declare module 'react-native-ico-stylish' {
|
|
|
228
234
|
width?: number;
|
|
229
235
|
height?: number;
|
|
230
236
|
color?: string;
|
|
237
|
+
colors: colorsType;
|
|
231
238
|
stroke?: number;
|
|
232
239
|
background?: backgroundType | backgroundTypeObj;
|
|
233
240
|
badge?: number | string | badgeTypeObj;
|
|
234
241
|
}
|
|
235
242
|
|
|
236
|
-
const Icon: (props: IconProps) => ReactNode;
|
|
243
|
+
const Icon: (props: IconProps & SvgProps & AdditionalProps) => ReactNode;
|
|
237
244
|
|
|
238
245
|
export { iconNames };
|
|
239
246
|
export default Icon;
|