packages/icons/src/components/Undo2.tsx
import * as React from 'react';
import type { SVGProps } from 'react';
const Undo2 = (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="M9 14 4 9l5-5"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M4 9h10.5a5.5 5.5 0 1 1 0 11H11"
/>
</svg>
);
export default Undo2;