| 1 |
import React from 'react'; |
| 2 |
|
| 3 |
function ArrowRight() { |
| 4 |
return ( |
| 5 |
<svg |
| 6 |
xmlns='http://www.w3.org/2000/svg' |
| 7 |
width='24' |
| 8 |
height='24' |
| 9 |
fill='none' |
| 10 |
viewBox='0 0 25 24'> |
| 11 |
<mask |
| 12 |
id='mask0_1187_1613' |
| 13 |
style={{ maskType: 'alpha' }} |
| 14 |
width='25' |
| 15 |
height='24' |
| 16 |
x='0' |
| 17 |
y='0' |
| 18 |
maskUnits='userSpaceOnUse'> |
| 19 |
<path fill='#D9D9D9' d='M0.191 0H24.191V24H0.191z'></path> |
| 20 |
</mask> |
| 21 |
<g mask='url(#mask0_1187_1613)'> |
| 22 |
<path |
| 23 |
fill='#fff' |
| 24 |
d='M15.191 19l-1.425-1.4 4.6-4.6H2.191v-2h16.175l-4.575-4.6 1.4-1.4 7 7-7 7z'></path> |
| 25 |
</g> |
| 26 |
</svg> |
| 27 |
); |
| 28 |
} |
| 29 |
|
| 30 |
export default ArrowRight; |
| 31 |
|