react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 346 B
JavaScript
import React from 'react';
export default function FileIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-file ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 9V3.5L18.5 9M6 2c-1.11 0-2 .89-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6H6z" />
</svg>
);
}