react-jam-icons
Version:
Jam icons as React Components
13 lines (10 loc) • 382 B
JavaScript
import React from "react";
const ArrowTopSm = props => (
<svg viewBox="0 0 32 63" {...props}>
<path
d="M30.9 13.9L18.1 1.2C17.5.6 16.8.3 16 .3s-1.5.3-2.1.9L1.1 13.9C0 15.1 0 17 1.2 18.2c1.2 1.2 3.1 1.2 4.2 0l7.8-7.8v49.3c0 1.7 1.3 3 3 3s3-1.3 3-3v-49l7.4 7.4c1.2 1.2 3.1 1.2 4.2 0 1.2-1.1 1.2-3 .1-4.2z"
fill="#333"
/>
</svg>
);
export default ArrowTopSm;