react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 498 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgHeartSign(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M20.16 5A6.29 6.29 0 0012 4.41a6.27 6.27 0 00-8.16 9.48l6 6.05a3 3 0 004.24 0l6-6.05A6.27 6.27 0 0020.16 5zm-1.41 7.46l-6 6a1 1 0 01-1.42 0l-6-6a4.29 4.29 0 010-6 4.27 4.27 0 016 0 1 1 0 001.42 0 4.27 4.27 0 016 6z" fill="currentColor"/>
</Svg>);
}
export default SvgHeartSign;