-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.js
58 lines (55 loc) · 1.3 KB
/
search.js
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
import { StyleSheet } from "react-native";
import { COLORS, FONT, SIZES } from "../constants";
const styles = StyleSheet.create({
container: {
width: "100%",
},
searchTitle: {
fontFamily: FONT.bold,
fontSize: SIZES.xLarge,
color: COLORS.primary,
},
noOfSearchedJobs: {
marginTop: 2,
fontFamily: FONT.medium,
fontSize: SIZES.small,
color: COLORS.primary,
},
loaderContainer: {
marginTop: SIZES.medium
},
footerContainer: {
marginTop: SIZES.small,
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
gap: 10
},
paginationButton: {
width: 30,
height: 30,
borderRadius: 5,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: COLORS.tertiary
},
paginationImage: {
width: '60%',
height: '60%',
tintColor: COLORS.white
},
paginationTextBox: {
width: 30,
height: 30,
borderRadius: 2,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: COLORS.white
},
paginationText: {
fontFamily: FONT.bold,
fontSize: SIZES.medium,
color: COLORS.primary
}
});
export default styles;