react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 483 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgHeartAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M20.16 4.61A6.27 6.27 0 0012 4a6.27 6.27 0 00-8.16 9.48l7.45 7.45a1 1 0 001.42 0l7.45-7.45a6.27 6.27 0 000-8.87zm-1.41 7.46L12 18.81l-6.75-6.74a4.28 4.28 0 013-7.3 4.25 4.25 0 013 1.25 1 1 0 001.42 0 4.27 4.27 0 016 6.05z" fill="currentColor"/>
</Svg>);
}
export default SvgHeartAlt;