react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 399 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFile4Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M21 15h-7v7H3.998C3.447 22 3 21.545 3 21.008V2.992C3 2.444 3.445 2 3.993 2h16.014A1 1 0 0 1 21 3.007zm0 2-5 4.997V17z" />
</Svg>
);
export default SvgFile4Fill;