react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 360 B
JavaScript
import React from 'react';
export default function FileOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-file-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6m4 18H6V4h7v5h5v11z" />
</svg>
);
}