UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.5 kB
import { memo } from 'react'; import { Svg, G, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}> <G fill="none"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="m9.93 10.376 2.15 5.018a1 1 0 0 0 1.679.257l.073-.096L15.535 13h5.907c-1.915 4.738-8.165 8-9.442 8-1.25 0-7.27-3.127-9.316-7.706L2.558 13H8a1 1 0 0 0 .832-.445l.062-.108zM12 4.339c2.072-1.686 4.534-1.68 6.494-.538 2.095 1.221 3.569 3.7 3.504 6.592l-.014.305-.027.302H15a1 1 0 0 0-.757.346l-.075.1-.976 1.463-2.273-5.303a1 1 0 0 0-1.749-.164l-.064.11L7.382 11h-5.34a6.847 6.847 0 0 1-.04-.607c-.065-2.892 1.409-5.37 3.504-6.592C7.466 2.66 9.928 2.653 12 4.34Z"/> </G> </Svg>); }; Icon.displayName = 'Heartbeat2Fill'; /** * MingCute Icon: Heartbeat 2 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Heartbeat2Fill = memo(Icon);