react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 463 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgHeart(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.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"/>
</Svg>);
}
export default SvgHeart;