react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 478 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFileImageFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m21 7-5-5H3.993A.993.993 0 0 0 3 2.992v18.016a1 1 0 0 0 .993.992h16.014a.993.993 0 0 0 .993-.992zM11 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0m6.5 7.5H8l5.5-7z" />
</Svg>
);
export default SvgFileImageFill;