UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 578 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Heart3Fill = /* @__PURE__ */ memo(function Heart3Fill(_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.5C9.5 20 2 16 2 9c0-3.5 2.5-6 5.5-6C9.36 3 11 4 12 5c1-1 2.64-2 4.5-2"/> </Svg>); }); /** * Remix Icon: Heart 3 Fill * @see {@link https://remixicon.com/icon/heart-3-fill Remix Icon Docs} */ export { Heart3Fill };