23 lines
399 B
React
23 lines
399 B
React
import React from "react";
|
|
|
|
const PrevIcon = () => (
|
|
<svg
|
|
width="8"
|
|
height="12"
|
|
viewBox="0 0 8 12"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className="mx-auto prev-icon"
|
|
>
|
|
<path
|
|
d="M6.5 11L1.5 6L6.5 1"
|
|
stroke="#667085"
|
|
strokeWidth="1.66667"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default PrevIcon;
|