UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 484 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFileTextFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M21 9v11.993A1 1 0 0120.007 22H3.993A.993.993 0 013 21.008V2.992C3 2.455 3.447 2 3.998 2H14v6a1 1 0 001 1h6zm0-2h-5V2.003L21 7zM8 7v2h3V7H8zm0 4v2h8v-2H8zm0 4v2h8v-2H8z" /> </Svg> ); } export default SvgFileTextFill;