react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 491 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgArchiveDrawerFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3 13h18v8.003c0 .55-.445.997-.993.997H3.993A.995.995 0 0 1 3 21.003zM3 2.998C3 2.447 3.445 2 3.993 2h16.014c.548 0 .993.446.993.998V11H3zM9 5v2h6V5zm0 11v2h6v-2z" />
</Svg>
);
export default SvgArchiveDrawerFill;