30 lines
703 B
JavaScript
30 lines
703 B
JavaScript
function RedoA() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M14.0579 15.2584H7.39128C5.09128 15.2584 3.22461 13.3917 3.22461 11.0917C3.22461 8.79172 5.09128 6.92505 7.39128 6.92505H16.5579"
|
|
stroke="#5559CE"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M14.6426 9.00837L16.7759 6.87503L14.6426 4.7417"
|
|
stroke="#5559CE"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default RedoA;
|