import React from 'react';
export default function ArrowTopLeftThinIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-arrow-top-left-thin ${props.className}`}
>
<path d="M12.07 5 9.24 7.83 19 17.59 17.58 19 7.82 9.25 5 12.07V5z" />
</svg>
);
}