@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.53 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M21 14v4a3 3 0 0 1-2.824 2.995L18 21h-5v-7zm-10 0v7H6a3 3 0 0 1-2.995-2.824L3 18v-4zM8.667 2c1.34 0 2.538.608 3.333 1.564a4.33 4.33 0 0 1 3.084-1.557l.25-.007h.066A2.6 2.6 0 0 1 18 4.6c0 .416-.075.814-.211 1.183l-.09.217H18a3 3 0 0 1 2.995 2.824L21 9v3h-8V6h-2v6H3V9a3 3 0 0 1 2.824-2.995L6 6h.3c-.192-.427-.3-.9-.3-1.4a2.6 2.6 0 0 1 2.436-2.595L8.6 2zm0 2H8.6a.6.6 0 0 0-.6.6A1.4 1.4 0 0 0 9.4 6h1.576a2.334 2.334 0 0 0-2.31-2M15.4 4h-.067c-1.12 0-2.055.788-2.28 1.84l-.03.16H14.6A1.4 1.4 0 0 0 16 4.6a.6.6 0 0 0-.503-.592z"/>
</G>
</Svg>);
});
Icon.displayName = 'Gift2Fill';
/**
* MingCute Icon: Gift 2 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Gift2Fill = Icon;