react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 578 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgHeartRate(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 11h-3.94a.78.78 0 00-.21 0h-.17a1.3 1.3 0 00-.15.1 1.67 1.67 0 00-.16.12 1 1 0 00-.09.13 1.32 1.32 0 00-.12.2l-1.6 4.41-4.17-11.3a1 1 0 00-1.88 0L6.2 11H3a1 1 0 000 2H7.3a.86.86 0 00.16-.1 1.67 1.67 0 00.16-.12l.09-.13a1 1 0 00.12-.2l1.62-4.53 4.16 11.42a1 1 0 00.94.66 1 1 0 00.94-.66l2.3-6.34H21a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgHeartRate;