Skip to content

Commit a731648

Browse files
Merge pull request #489 from netwrix/update-search-result-paging-icons
Cleaner button arrow icons for search result paging
2 parents 93440a4 + ec4920b commit a731648

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/theme/SearchPage/index.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,10 @@ function SearchPageContent() {
886886
transition: 'all 0.2s ease',
887887
}}
888888
>
889-
← Previous
889+
<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg" style={{marginRight: '6px', display: 'inline'}}>
890+
<polyline points="7,1 1,6 7,11" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
891+
</svg>
892+
Previous
890893
</button>
891894

892895
<div style={{
@@ -983,7 +986,10 @@ function SearchPageContent() {
983986
transition: 'all 0.2s ease',
984987
}}
985988
>
986-
Next →
989+
Next
990+
<svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg" style={{marginLeft: '6px', display: 'inline'}}>
991+
<polyline points="1,1 7,6 1,11" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
992+
</svg>
987993
</button>
988994
</div>
989995
)}

0 commit comments

Comments
 (0)