react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFolderShield2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M22 10H12v7.382c0 1.409.632 2.734 1.705 3.618H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414l2 2H21a1 1 0 0 1 1 1zm-8 2h8v5.382c0 .897-.446 1.734-1.187 2.23L18 21.499l-2.812-1.885A2.68 2.68 0 0 1 14 17.383z" />
</Svg>
);
export default SvgFolderShield2Fill;