react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 480 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFileTextFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21 9v11.993A1 1 0 0 1 20.007 22H3.993A.993.993 0 0 1 3 21.008V2.992C3 2.455 3.447 2 3.998 2H14v6a1 1 0 0 0 1 1zm0-2h-5V2.003zM8 7v2h3V7zm0 4v2h8v-2zm0 4v2h8v-2z" />
</Svg>
);
export default SvgFileTextFill;