react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 473 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgTear(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12.56 2.17a1 1 0 00-1.12 0c-.3.2-7.19 5-7.19 12.08a7.75 7.75 0 0015.5 0c0-7.2-6.9-11.89-7.19-12.08zM12 20a5.76 5.76 0 01-5.75-5.75c0-5 4.21-8.77 5.75-10 1.55 1.21 5.75 5 5.75 10A5.76 5.76 0 0112 20z" fill="currentColor"/>
</Svg>);
}
export default SvgTear;