@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 708 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M16.5 3C19.538 3 22 5.5 22 9c0 7-7.5 11-10 12.5-1.978-1.186-7.084-3.937-9.131-8.5h4.697l.934-1.556 3 5L13.566 13H17v-2h-4.566l-.934 1.556-3-5L6.434 11H2.21A9.6 9.6 0 0 1 2 9c0-3.5 2.5-6 5.5-6C9.36 3 11 4 12 5c1-1 2.64-2 4.5-2"/>
</Svg>);
});
Icon.displayName = 'HeartPulseFill';
/**
* Remix Icon: Heart Pulse Fill
* @see {@link https://remixicon.com/icon/heart-pulse-fill Remix Icon Docs}
*/
export const HeartPulseFill = Icon;