-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.d.ts
62 lines (59 loc) · 1.34 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import {ViewStyle, TextStyle} from 'react-native';
export interface CountryCodeProps {
/**
* Selected Country Dial Code
*/
selected: string,
/**
* Function to set the country
*/
setSelected: React.Dispatch<React.SetStateAction<undefined>>,
/**
* Function to set the country
*/
setCountryDetails?: React.Dispatch<React.SetStateAction<undefined>>,
/**
* State variable for storing the phone number
*/
phone?: string,
/**
* Function to set the phone number state variable
*/
setPhone?: React.Dispatch<React.SetStateAction<undefined>>,
/**
* Style the Country Code Container
*/
countryCodeContainerStyles?: ViewStyle,
/**
* Style the text inside Country Code
*/
countryCodeTextStyles?: TextStyle,
/**
* Phone Text Input Styles
*/
phoneStyles?: ViewStyle,
/**
* URL for the search Icon
*/
searchIcon?: string,
/**
* URL for the close Icon
*/
closeIcon?: string,
/**
* Search Input Container Styles
*/
searchStyles?: ViewStyle,
/**
* Search Input Text Styles
*/
searchTextStyles?: TextStyle,
/**
* Search Dropdown Container Styles
*/
dropdownStyles?: ViewStyle,
/**
* Search Dropdown Text Styles
*/
dropdownTextStyles?: TextStyle
}