react-jam-icons
Version:
Jam icons as React Components
13 lines (10 loc) • 386 B
JavaScript
import React from "react";
const ArrowRight = props => (
<svg viewBox="0 0 63 62" {...props}>
<path
d="M61.5 28.7L33.9 1.1c-1.2-1.2-3.1-1.2-4.2 0-1.2 1.2-1.2 3.1 0 4.2L52.3 28H3c-1.7 0-3 1.3-3 3s1.3 3 3 3h49L29.7 56.3c-1.2 1.2-1.2 3.1 0 4.2 1.2 1.2 3.1 1.2 4.2 0l27.6-27.6c.6-.5.9-1.3.9-2.1s-.3-1.5-.9-2.1z"
fill="#333"
/>
</svg>
);
export default ArrowRight;