react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 445 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgGift(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="M20 12v10H4V12M2 7h20v5H2zM12 22V7M12 7H7.5a2.5 2.5 0 010-5C11 2 12 7 12 7zM12 7h4.5a2.5 2.5 0 000-5C13 2 12 7 12 7z"/>
</Svg>);
}
export default SvgGift;