Files
Lovemap/assets/ArrowRightIcon.jsx
T
2024-09-05 19:23:11 +02:00

21 lines
346 B
React

const ArrowRightIcon = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
{...props}
>
<path
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='48'
d='M184 112l144 144-144 144'
/>
</svg>
);
};
export default ArrowRightIcon;