react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 540 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAttachmentFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M20.997 2.992 21 21.008a1 1 0 0 1-.993.992H3.993A.993.993 0 0 1 3 21.008V2.992A1 1 0 0 1 3.993 2h16.01c.549 0 .994.444.994.992M9 13V9a1 1 0 0 1 2 0v4a1 1 0 1 0 2 0V9a3 3 0 1 0-6 0v4a5 5 0 0 0 10 0V8h-2v5a3 3 0 1 1-6 0" />
</Svg>
);
export default SvgAttachmentFill;