icon is not working in react native paper text input

Code

                     <TextInput
                            mode="outlined"
                            label="Enter Password"
                            outlineColor="#000"
                            activeOutlineColor="#0073D9"
                            right={<TextInput.Icon name="eye" />}
                            style={{
                                backgroundColor: '#eee', marginRight: scale(20),
                                marginLeft: scale(20),
                            }}
                            value={Pass}
                            onChangeText={(text) => setPass(text)}
                        />

Output

enter image description here

How to add an icon in react native paper text input?