Files
Lovemap/assets/ArrowRightIcon.tsx
2024-10-11 19:08:52 +02:00

23 lines
407 B
TypeScript

import { SVGProps } from 'react';
const ArrowRightIcon = (props?: SVGProps<SVGSVGElement>) => {
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='36'
d='M184 112l144 144-144 144'
/>
</svg>
);
};
export default ArrowRightIcon;