UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

17 lines (16 loc) 2.03 kB
import { memo } from 'react'; import Svg, { G, Path } from 'react-native-svg'; const LoveLine = /* @__PURE__ */ memo(function LoveLine(_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="M14.125 19.972c-.222.164-.463.3-.728.37-.746.2-1.561-.098-2.273-.298-4.773-1.343-7.97-3.446-8.887-6.584-.732-2.506-.028-5.016 1.52-6.576 1.434-1.445 3.56-2.031 5.741-1.092 1.42-1.904 3.555-2.46 5.519-1.925 2.12.577 3.984 2.399 4.603 4.935q.182.746.183 1.519.384.197.72.48c1.157.979 1.775 2.642 1.43 4.371-.44 2.206-2.485 3.755-5.41 4.861-.501.19-1.049.425-1.596.329-.304-.054-.576-.21-.822-.39m-9.968-7.073c-.535-1.833.003-3.581 1.02-4.606.976-.984 2.423-1.35 4.023-.414.559.327 1.28.133 1.6-.428.918-1.611 2.354-2.018 3.691-1.654 1.394.38 2.734 1.624 3.186 3.479q.083.334.11.685a3.7 3.7 0 0 0-1.06.301c-1.074-1.047-2.496-1.253-3.75-.791-1.422.523-2.572 1.875-2.84 3.618-.273 1.785.57 3.525 2.139 5.198-.198-.05-.403-.11-.61-.168-4.631-1.303-6.9-3.135-7.509-5.22m7.958.493c.16-1.05.839-1.781 1.553-2.045.66-.242 1.393-.115 1.95.69a1.104 1.104 0 0 0 1.545.273c.8-.567 1.532-.435 2.068.018.582.492.968 1.412.76 2.453-.225 1.13-1.368 2.328-4.155 3.381-.177.067-.353.139-.535.192-.153-.113-.294-.24-.438-.363-2.258-1.943-2.923-3.46-2.748-4.6Z"/> </G> </Svg>); }); /** * MingCute Icon: Love Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export { LoveLine };