@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.21 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" 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="M7.783 4.016c1.444.262 2.928 1 4.217 2.132 1.29-1.132 2.773-1.87 4.217-2.132 1.627-.296 3.306.004 4.482 1.18 1.153 1.154 1.465 2.791 1.197 4.387-.24 1.431-.948 2.906-2.047 4.195A5 5 0 0 1 12 19a5 5 0 0 1-7.85-5.222c-1.096-1.289-1.806-2.764-2.045-4.195-.268-1.596.044-3.233 1.197-4.387C4.477 4.02 6.156 3.72 7.783 4.016M4.715 6.61c.581-.581 1.522-.843 2.71-.627 1.02.185 2.144.716 3.167 1.59l-.06.055c-.363.346-.645.8-.86 1.283C9.24 9.882 9 11.15 9 12.5c0 1.349.241 2.618.672 3.588.215.483.497.937.86 1.283q.066.063.138.122A3 3 0 0 1 6.208 13.9 1 1 0 0 0 6 12.842c-1.089-1.136-1.73-2.435-1.924-3.589-.194-1.157.07-2.072.64-2.642m8.615 10.882a3 3 0 0 0 4.462-3.592A1 1 0 0 1 18 12.84c1.089-1.135 1.73-2.434 1.924-3.588.194-1.157-.069-2.072-.64-2.642-.58-.581-1.521-.843-2.71-.627-1.018.185-2.143.716-3.166 1.59l.06.055c.363.346.645.8.86 1.283.43.97.672 2.239.672 3.588s-.241 2.618-.672 3.588c-.215.483-.497.937-.86 1.283q-.066.063-.138.122M11 12.5c0-1.136.207-2.117.5-2.776.147-.33.296-.537.41-.646.08-.076.1-.076.179 0 .115.11.264.315.411.646.293.66.5 1.64.5 2.776s-.207 2.117-.5 2.776c-.147.33-.296.536-.411.646-.08.075-.099.075-.178 0-.115-.11-.264-.316-.412-.646-.292-.66-.5-1.64-.5-2.776"/>
</G>
</Svg>);
});
Icon.displayName = 'Butterfly2Line';
/**
* MingCute Icon: Butterfly 2 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Butterfly2Line = Icon;