react-jam-icons
Version:
Jam icons as React Components
13 lines (10 loc) • 333 B
JavaScript
import React from "react";
const ArrowTopLeft = props => (
<svg viewBox="0 0 63 63" {...props}>
<path
d="M62.1 57.9L10.2 6H45c1.7 0 3-1.3 3-3s-1.3-3-3-3H3C1.3 0 0 1.3 0 3v42c0 1.7 1.3 3 3 3s3-1.3 3-3V10.2l51.9 51.9c1.2 1.2 3.1 1.2 4.2 0s1.2-3.1 0-4.2z"
fill="#333"
/>
</svg>
);
export default ArrowTopLeft;