@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 691 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="M2 8.5C2 5.46243 4.46243 3 7.5 3C9.36016 3 11.0046 3.92345 12 5.33692C12.9954 3.92345 14.6398 3 16.5 3C19.5376 3 22 5.46243 22 8.5C22 16 11.9999 21.4852 11.9999 21.4852C11.9999 21.4852 2 16 2 8.5Z"/>
</Svg>);
};
Icon.displayName = 'PokerHeartsFill';
/**
* Remix Icon: Poker Hearts Fill
* @see {@link https://remixicon.com/icon/poker-hearts-fill Remix Icon Docs}
*/
export const PokerHeartsFill = memo(Icon);