@@ -59,20 +59,20 @@ export const SearchBar = ({ searchedQuery, search, flatListRef, mode, setSorting
59
59
const bottomSheetOptions = React . useMemo ( ( ) => {
60
60
if ( mode === constants . MODE_BOOKMARKS ) {
61
61
return [
62
- { label : i18n . t ( 'None ' ) , value : undefined } ,
63
- { label : i18n . t ( 'Movies' ) , value : 'movies' } ,
64
- { label : i18n . t ( 'Shows' ) , value : 'shows' } ,
62
+ { icon : 'all-inclusive' , label : i18n . t ( 'All ' ) , value : undefined } ,
63
+ { icon : 'movie' , label : i18n . t ( 'Movies' ) , value : 'movies' } ,
64
+ { icon : 'filmstrip-box-multiple' , label : i18n . t ( 'Shows' ) , value : 'shows' } ,
65
65
]
66
66
}
67
67
68
68
return [
69
- { label : i18n . t ( 'Default ' ) , value : 'trending' } ,
70
- { label : i18n . t ( 'Popularity' ) , value : 'popularity' } ,
71
- { label : i18n . t ( 'Name' ) , value : 'name' } ,
72
- { label : i18n . t ( 'Rating' ) , value : 'rating' } ,
73
- { label : i18n . t ( 'Released' ) , value : 'released' } ,
74
- { label : i18n . t ( 'Year' ) , value : 'year' } ,
75
- { label : i18n . t ( 'Added' ) , value : 'added' } ,
69
+ { icon : 'trending-up' , label : i18n . t ( 'Trending ' ) , value : 'trending' } ,
70
+ { icon : 'cards-heart' , label : i18n . t ( 'Popularity' ) , value : 'popularity' } ,
71
+ { icon : 'alphabetical' , label : i18n . t ( 'Name' ) , value : 'name' } ,
72
+ { icon : 'star' , label : i18n . t ( 'Rating' ) , value : 'rating' } ,
73
+ { icon : 'calendar' , label : i18n . t ( 'Released' ) , value : 'released' } ,
74
+ { icon : 'calendar-range' , label : i18n . t ( 'Year' ) , value : 'year' } ,
75
+ { icon : 'calendar-plus' , label : i18n . t ( 'Added' ) , value : 'added' } ,
76
76
]
77
77
} , [ mode ] )
78
78
@@ -147,7 +147,7 @@ export const SearchBar = ({ searchedQuery, search, flatListRef, mode, setSorting
147
147
{ bottomSheetOptions . map ( ( option ) => (
148
148
< OptionsItem
149
149
key = { option . label }
150
- icon = { 'eye-outline' }
150
+ icon = { option . icon }
151
151
label = { option . label }
152
152
onPress = { handleFilterOrSortPress ( option ) } />
153
153
) ) }
0 commit comments