import React from 'react';
export default function SqueegeeIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-squeegee ${props.className}`}>
<path d="M22 2v3H2V2h20M2 8h5l2 2h1v10a2 2 0 0 0 2 2 2 2 0 0 0 2-2V10h1l2-2h5V6H2v2z" />
</svg>
);
}