1
0
Fork 0
freesewing/sites/shared/components/icons/swipeleft.js
2022-10-06 00:09:58 +02:00

18 lines
364 B
JavaScript

const SwipeLeft = ({ className = 'h-6 w-6' }) => (
<svg
xmlns="http://www.w3.org/2000/svg"
className={className}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M10 19l-7-7m0 0l7-7m-7 7h18"
/>
</svg>
)
export default SwipeLeft