react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 456 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFileList3Fill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M19 22H5a3 3 0 01-3-3V3a1 1 0 011-1h14a1 1 0 011 1v12h4v4a3 3 0 01-3 3zm-1-5v2a1 1 0 002 0v-2h-2zM6 7v2h8V7H6zm0 4v2h8v-2H6zm0 4v2h5v-2H6z" />
</Svg>
);
}
export default SvgFileList3Fill;