Skip to content

Commit 7198160

Browse files
committed
add arrow right to search page and selectedTransactionsActions
1 parent 8687c5c commit 7198160

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/hooks/useSelectedTransactionsActions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ function useSelectedTransactionsActions({
230230
text: translate('common.export'),
231231
backButtonText: translate('common.export'),
232232
icon: Expensicons.Export,
233+
rightIcon: Expensicons.ArrowRight,
233234
subMenuItems: getExportOptions(),
234235
});
235236

src/pages/Search/SearchPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,9 @@ function SearchPage({route}: SearchPageProps) {
222222
return exportOptions;
223223
};
224224

225-
const exportButtonOption: DropdownOption<SearchHeaderOptionValue> = {
225+
const exportButtonOption: DropdownOption<SearchHeaderOptionValue> & Pick<PopoverMenuItem, 'rightIcon'> = {
226226
icon: Expensicons.Export,
227+
rightIcon: Expensicons.ArrowRight,
227228
text: translate('common.export'),
228229
backButtonText: translate('common.export'),
229230
value: CONST.SEARCH.BULK_ACTION_TYPES.EXPORT,

0 commit comments

Comments
 (0)