@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 692 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="M12.001 4.52853C14.35 2.42 17.98 2.49 20.2426 4.75736C22.5053 7.02472 22.583 10.637 20.4786 12.993L11.9999 21.485L3.52138 12.993C1.41705 10.637 1.49571 7.01901 3.75736 4.75736C6.02157 2.49315 9.64519 2.41687 12.001 4.52853Z"/>
</Svg>);
};
Icon.displayName = 'HeartFill';
/**
* Remix Icon: Heart Fill
* @see {@link https://remixicon.com/icon/heart-fill Remix Icon Docs}
*/
export const HeartFill = memo(Icon);