@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 601 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M16.5 3C19.5376 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.35997 3 11 4 12 5C13 4 14.64 3 16.5 3Z"/>
</Svg>);
};
Icon.displayName = 'Heart3Fill';
/**
* Remix Icon: Heart 3 Fill
* @see {@link https://remixicon.com/icon/heart-3-fill Remix Icon Docs}
*/
export const Heart3Fill = memo(Icon);