react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 461 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFilePaper2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M20 2a3 3 0 0 1 3 3v2h-2v12a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3v-2h16v2a1 1 0 0 0 .883.993L18 20a1 1 0 0 0 .993-.883L19 19v-4H3V5a3 3 0 0 1 3-3z" />
</Svg>
);
export default SvgFilePaper2Fill;