UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 478 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFilePdfLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M12 16H8V8h4a4 4 0 110 8zm-2-6v4h2a2 2 0 100-4h-2zm5-6H5v16h14V8h-4V4zM3 2.992C3 2.444 3.447 2 3.999 2H16l5 5v13.993A1 1 0 0120.007 22H3.993A1 1 0 013 21.008V2.992z" /> </Svg> ); } export default SvgFilePdfLine;