@@ -151,6 +151,9 @@ export default function ReadMeExampleSingle() {
151151 // uppercase={false} // optional, default is true
152152 // label="Select date" // optional
153153 // animationType="slide" // optional, default is 'slide' on ios/android and 'none' on web
154+ // closeIcon="close" // optional, default is "close"
155+ // editIcon="pencil" // optional, default is "pencil"
156+ // calendarIcon="calendar" // optional, default is "calendar"
154157 />
155158 </>
156159 );
@@ -209,6 +212,9 @@ export default function ReadMeExampleRange() {
209212 // startLabel="From" // optional
210213 // endLabel="To" // optional
211214 // animationType="slide" // optional, default is slide on ios/android and none on web
215+ // closeIcon="close" // optional, default is "close"
216+ // editIcon="pencil" // optional, default is "pencil"
217+ // calendarIcon="calendar" // optional, default is "calendar"
212218 />
213219 </>
214220 );
@@ -263,6 +269,7 @@ export default function ReadMeExampleMultiple() {
263269 // startLabel="From" // optional
264270 // endLabel="To" // optional
265271 // animationType="slide" // optional, default is slide on ios/android and none on web
272+ // closeIcon="close" // optional, default is "close"
266273 />
267274 </>
268275 );
@@ -283,6 +290,7 @@ export default function ReadMeExampleDatePickerInput() {
283290 onChange = { (d ) => setInputDate (d )}
284291 inputMode = " start"
285292 // mode="outlined" (see react-native-paper docs)
293+ // calendarIcon="calendar" // optional, default is "calendar"
286294 // other react native TextInput props
287295 />
288296 </>
@@ -326,6 +334,8 @@ export default function TimePickerPage() {
326334 confirmLabel = " Ok" // optional, default: 'Ok'
327335 animationType = " fade" // optional, default is 'none'
328336 locale = " en" // optional, default is automically detected by your system
337+ // keyboardIcon="keyboard-outline" // optional, default is "keyboard-outline"
338+ // clockIcon="clock-outline" // optional, default is "clock-outline"
329339 />
330340 <Button onPress = { ()=> setVisible (true )} >
331341 Pick time
0 commit comments