UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.96 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="M12 4.339c2.072-1.686 4.534-1.68 6.494-.538 2.095 1.221 3.569 3.7 3.504 6.592-.079 3.52-2.752 6.634-7.323 9.424l-.356.214c-.331.198-.662.398-1.007.573-.405.206-.85.396-1.312.396s-.907-.19-1.313-.396q-.344-.177-.674-.375l-.332-.198c-4.788-2.844-7.598-6.029-7.679-9.638-.065-2.892 1.409-5.37 3.504-6.592C7.466 2.66 9.928 2.653 12 4.34Zm-2.07 6.037-1.036 2.071A1 1 0 0 1 8 13H4.776c.925 1.646 2.713 3.348 5.55 5.085l.376.227c.294.175.586.354.891.509.13.066.265.134.407.173.142-.04.276-.107.407-.173.203-.103.4-.218.597-.334l.294-.175c3.056-1.816 4.961-3.594 5.926-5.312h-3.689l-1.703 2.555a1 1 0 0 1-1.751-.16l-2.15-5.02Zm7.557-4.846c-1.394-.812-3.136-.784-4.644.742a1.19 1.19 0 0 1-1.686 0C9.65 4.746 7.907 4.718 6.513 5.53c-1.444.841-2.56 2.628-2.511 4.818q.004.217.028.434l.03.218h3.322l1.724-3.447a1 1 0 0 1 1.755-.061l.058.114 2.273 5.304.976-1.465a1 1 0 0 1 .708-.437L15 11h4.94a5 5 0 0 0 .058-.652c.05-2.19-1.067-3.977-2.511-4.818"/> </G> </Svg>); }); Icon.displayName = 'Heartbeat2Line'; /** * MingCute Icon: Heartbeat 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Heartbeat2Line = Icon;