react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 545 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFileShield2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21 10H11v7.382c0 1.563.777 3.023 2.074 3.892l1.083.726H3.993A.993.993 0 0 1 3 21.008V2.992C3 2.455 3.447 2 3.998 2h11.999L21 7zm-8 2h8v5.382c0 .897-.446 1.734-1.187 2.23L17 21.499l-2.812-1.885A2.68 2.68 0 0 1 13 17.383z" />
</Svg>
);
export default SvgFileShield2Fill;