iconoir/packages/iconoir-react/src/server/MapsTurnLeft.tsx

35 lines
923 B
TypeScript

import * as React from "react";
function SvgMapsTurnLeft(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4.365 19.787l7.303-6.492a.5.5 0 01.664 0l7.303 6.492c.38.338.072.962-.427.864l-7.113-1.382a.498.498 0 00-.19 0l-7.113 1.383c-.499.097-.808-.527-.427-.865zM5 6.5h3s0 0 0 0 4 0 4 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.5 9L5 6.5 8.5 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMapsTurnLeft);
export default ForwardRef;