@@ -11,23 +11,23 @@ const HeaderPlayground = () => {
11
11
center : {
12
12
type : PropTypes . Boolean ,
13
13
value : false ,
14
- description : "Aligns checkbox to center (optional)"
14
+ description : "Aligns checkbox to center (optional)" ,
15
15
} ,
16
16
right : {
17
17
type : PropTypes . Boolean ,
18
18
value : false ,
19
- description : "Aligns checkbox to right (optional)"
19
+ description : "Aligns checkbox to right (optional)" ,
20
20
} ,
21
21
checked : {
22
22
type : PropTypes . Boolean ,
23
23
value : false ,
24
24
stateful : true ,
25
- description : "Flag for checking the icon (required)"
25
+ description : "Flag for checking the icon (required)" ,
26
26
} ,
27
27
checkedColor : {
28
28
type : PropTypes . String ,
29
29
value : "#0F0" ,
30
- description : "Default checked color (optional)"
30
+ description : "Default checked color (optional)" ,
31
31
} ,
32
32
checkedIcon : {
33
33
type : PropTypes . Object ,
@@ -37,7 +37,7 @@ const HeaderPlayground = () => {
37
37
checkedTitle : {
38
38
type : PropTypes . String ,
39
39
value : `Great!` ,
40
- description : "Specify a custom checked message (optional)"
40
+ description : "Specify a custom checked message (optional)" ,
41
41
} ,
42
42
Component : {
43
43
type : PropTypes . ReactNode ,
@@ -47,71 +47,71 @@ const HeaderPlayground = () => {
47
47
containerStyle : {
48
48
type : PropTypes . Object ,
49
49
value : `{width: "75%"}` ,
50
- description : "Style of main container (optional)"
50
+ description : "Style of main container (optional)" ,
51
51
} ,
52
52
fontFamily : {
53
53
type : PropTypes . String ,
54
54
value : null ,
55
- description : "Specify different font family"
55
+ description : "Specify different font family" ,
56
56
} ,
57
57
iconRight : {
58
58
type : PropTypes . Boolean ,
59
59
value : false ,
60
- description : "Moves icon to right of text (optional)"
60
+ description : "Moves icon to right of text (optional)" ,
61
61
} ,
62
62
iconType : {
63
63
type : PropTypes . String ,
64
64
value : null ,
65
- description : "type of icon set"
65
+ description : "type of icon set" ,
66
66
} ,
67
67
onIconPress : {
68
68
type : PropTypes . Function ,
69
69
value : `() => setChecked(!checked)` ,
70
70
propHook : {
71
71
what : "!checked" ,
72
- into : "checked"
72
+ into : "checked" ,
73
73
} ,
74
- description : "onPress function for checkbox (required)"
74
+ description : "onPress function for checkbox (required)" ,
75
75
} ,
76
76
onLongIconPress : {
77
77
type : PropTypes . Function ,
78
78
value : `() => console.log("onLongIconPress()")` ,
79
- description : "onLongPress function for checkbox (optional)"
79
+ description : "onLongPress function for checkbox (optional)" ,
80
80
} ,
81
81
onLongPress : {
82
82
type : PropTypes . Function ,
83
83
value : `() => console.log("onLongPress()")` ,
84
- description : "onLongPress function for checkbox (optional)"
84
+ description : "onLongPress function for checkbox (optional)" ,
85
85
} ,
86
86
onPress : {
87
87
type : PropTypes . Function ,
88
88
value : `() => console.log("onPress()")` ,
89
- description : "onPress function for container (optional)"
89
+ description : "onPress function for container (optional)" ,
90
90
} ,
91
91
size : {
92
92
type : PropTypes . Number ,
93
93
value : 30 ,
94
- description : "Size of the checkbox"
94
+ description : "Size of the checkbox" ,
95
95
} ,
96
96
textStyle : {
97
97
type : PropTypes . Object ,
98
98
value : `{}` ,
99
- description : "Style of text (optional)"
99
+ description : "Style of text (optional)" ,
100
100
} ,
101
101
title : {
102
102
type : PropTypes . Object ,
103
103
value : `"Check for Awesomeness"` ,
104
- description : "Title of checkbox"
104
+ description : "Title of checkbox" ,
105
105
} ,
106
106
titleProps : {
107
107
type : PropTypes . Object ,
108
108
value : `{}` ,
109
- description : "Additional props for the title Text component (optional)"
109
+ description : "Additional props for the title Text component (optional)" ,
110
110
} ,
111
111
uncheckedColor : {
112
112
type : PropTypes . String ,
113
113
value : `#F00` ,
114
- description : "Default unchecked color (optional)"
114
+ description : "Default unchecked color (optional)" ,
115
115
} ,
116
116
uncheckedIcon : {
117
117
type : PropTypes . Object ,
0 commit comments