import React from 'react';
export default function ArrowTopRightThinIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-arrow-top-right-thin ${props.className}`}
>
<path d="m11.93 5 2.83 2.83L5 17.59 6.42 19l9.76-9.75L19 12.07V5h-7.07z" />
</svg>
);
}