react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 450 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDossierFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M17 2v2h3a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V5a1 1 0 011-1h3V2h10zm-4 9h-2v2H9v2h1.999L11 17h2l-.001-2H15v-2h-2v-2zm2-7H9v2h6V4z" />
</Svg>
);
}
export default SvgDossierFill;