react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 528 B
JavaScript
import React from 'react';
export default function EmailEditOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-email-edit-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19.07 13.88L13 19.94V22h2.06l6.06-6.07m1.58-2.35l-1.28-1.28a.517.517 0 0 0-.38-.17c-.15.01-.29.06-.39.17l-1 1 2.05 2 1-1c.19-.2.19-.52 0-.72M11 18H4V8l8 5 8-5v2h2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2m9-12l-8 5-8-5h16z" />
</svg>
);
}