react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 448 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPaperclip(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.48"/>
</Svg>);
}
export default SvgPaperclip;