import React from 'react';
export default function ArrowExpandLeftIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-arrow-expand-left ${props.className}`}>
<path d="M20 22h2V2h-2v9H5.83l5.5-5.5-1.41-1.42L2 12l7.92 7.92 1.41-1.42-5.5-5.5H20v9z" />
</svg>
);
}