Missmatch with RightArrow

This commit is contained in:
Bel Curcio
2021-06-05 15:35:31 -03:00
parent bc6e2adf86
commit caf1ac04ac
6 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,28 @@
const ArrowRight = ({ ...props }) => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M5 12H19"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 5L19 12L12 19"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
}
export default ArrowRight