react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 519 B
JavaScript
import React from 'react';
export default function FileUndoOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-file-undo-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14 2H6a2 2 0 0 0-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V8l-6-6m4 18H6V4h7v5h5v11m-1-2.39l-1.16.39a3.908 3.908 0 0 0-3.71-2.69c-.96 0-1.82.35-2.5.92L11.4 18H7v-4.4l1.76 1.76c.9-.79 2.07-1.27 3.37-1.27 2.27 0 4.2 1.48 4.87 3.52z" />
</svg>
);
}