21 lines
475 B
TypeScript
21 lines
475 B
TypeScript
export function MoveLeftIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
{...props}
|
|
>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M12.03 7.917a20.76 20.76 0 00-3.885 3.678A.64.64 0 008 12m4.03 4.083a20.758 20.758 0 01-3.885-3.678A.64.64 0 018 12m0 0h12M4 5v14"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|