react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 471 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFolderZipLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M10.414 3l2 2H21a1 1 0 011 1v14a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h7.414zM18 18h-4v-3h2v-2h-2v-2h2V9h-2V7h-2.414l-2-2H4v14h16V7h-4v2h2v2h-2v2h2v5z" />
</Svg>
);
}
export default SvgFolderZipLine;