UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.62 kB
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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M20.999 6.854c.033-1.48-.721-2.774-1.833-3.422-.954-.556-2.135-.607-3.166.037-1.03-.644-2.212-.593-3.166-.037-1.112.648-1.866 1.942-1.833 3.422.043 1.909 1.521 3.464 3.684 4.749.402.238.831.508 1.315.508s.913-.27 1.315-.508c2.163-1.285 3.641-2.84 3.684-4.749m-12.61 5.474-1.99 1.243A2 2 0 0 0 5 13.001H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h1a2 2 0 0 0 1.732-1h.796a1 1 0 0 1 .447.105l2.35 1.175a5 5 0 0 0 3.217.43l3.21-.641a3 3 0 0 0 1.21-.542l3.071-2.303A2.42 2.42 0 0 0 22 16.292v-.056c0-1.77-1.863-2.922-3.447-2.13-.69.345-1.327.875-1.968 1.303.37-1.113-.219-2.348-1.39-2.64l-3.716-.93a4 4 0 0 0-3.09.489"/> </G> </Svg>); }); Icon.displayName = 'HandHeartFill'; /** * MingCute Icon: Hand Heart Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const HandHeartFill = Icon;