packages/icons/src/components/Redo2.tsx
import * as React from 'react';
import type { SVGProps } from 'react';
const Redo2 = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="m15 14 5-5-5-5"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M20 9H9.5a5.5 5.5 0 0 0 0 11H13"
/>
</svg>
);
export default Redo2;