react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 347 B
JavaScript
import React from 'react';
export default function SqueegeeIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-squeegee ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 2v3H2V2h20M2 8h5l2 2h1v10a2 2 0 0 0 2 2 2 2 0 0 0 2-2V10h1l2-2h5V6H2v2z" />
</svg>
);
}