@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.01 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">
<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.7 2.08c.552.397.926.6 1.273.714.342.113.722.162 1.317.158a1 1 0 0 1 1.007.959c.03.718.092 1.161.208 1.518.11.337.286.652.629 1.073a1 1 0 0 1-.216 1.461l-.114.066q-.482.246-.953.515a8 8 0 1 1-11.701 0 22 22 0 0 0-.956-.516 1 1 0 0 1-.328-1.526c.343-.421.52-.736.63-1.073.115-.357.177-.8.207-1.518a1 1 0 0 1 1.007-.96c.595.005.975-.044 1.317-.157.347-.115.721-.317 1.272-.714a1 1 0 0 1 1.48.364c.188.375.392.743.602 1.108.18.314.39.664.619 1.02a25 25 0 0 0 1.213-2.11c.134-.267.372-.47.664-.542a1 1 0 0 1 .824.16ZM12 8a6 6 0 1 0 0 12 6 6 0 0 0 0-12m.057 2.838a1 1 0 0 1 1.276-.61 4 4 0 0 1 2.44 2.439 1 1 0 0 1-1.841.774l-.046-.108a2 2 0 0 0-1.067-1.158l-.152-.061a1 1 0 0 1-.61-1.276M9.514 4.315a4.9 4.9 0 0 1-1.88.596c-.047.402-.12.776-.237 1.136a4.5 4.5 0 0 1-.31.73l.462.265.249.149a8 8 0 0 1 2.827-1.073 23 23 0 0 1-.694-1.086l-.29-.492zm4.972 0-.128.225-.29.492c-.206.343-.44.714-.693 1.086a8 8 0 0 1 2.827 1.073l.487-.287.223-.127a4.6 4.6 0 0 1-.31-.73 6 6 0 0 1-.236-1.136 5 5 0 0 1-1.02-.218 5 5 0 0 1-.86-.378"/>
</G>
</Svg>);
});
Icon.displayName = 'Candy2Line';
/**
* MingCute Icon: Candy 2 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Candy2Line = Icon;