@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.35 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="M9.986 4.255c-.25.835-.463 1.79-.626 2.84a36.5 36.5 0 0 1 5.28 0 21 21 0 0 0-.626-2.84A8 8 0 0 0 12 4c-.697 0-1.371.089-2.014.255m6.352 1.022q.208.965.354 2.03c.71.098 1.39.217 2.031.355a8.05 8.05 0 0 0-2.385-2.385m3.407 4.709c-.835-.25-1.79-.463-2.84-.626a36.5 36.5 0 0 1 0 5.28 21 21 0 0 0 2.84-.626A8 8 0 0 0 20 12c0-.697-.089-1.371-.255-2.014m-1.022 6.352a27 27 0 0 1-2.03.354 27 27 0 0 1-.355 2.031 8.05 8.05 0 0 0 2.385-2.385m-4.709 3.407c.25-.835.463-1.79.626-2.84a36.5 36.5 0 0 1-5.28 0c.163 1.05.375 2.005.626 2.84A8 8 0 0 0 12 20c.697 0 1.371-.089 2.014-.255m-6.352-1.022a27 27 0 0 1-.354-2.03 27 27 0 0 1-2.031-.355 8.05 8.05 0 0 0 2.385 2.385m-3.407-4.709c.835.25 1.79.463 2.84.626a36.5 36.5 0 0 1 0-5.28 21 21 0 0 0-2.84.626A8 8 0 0 0 4 12c0 .697.089 1.371.255 2.014m1.022-6.352a27 27 0 0 1 2.03-.354c.098-.71.217-1.39.355-2.031a8.05 8.05 0 0 0-2.385 2.385M9.119 9.12A34 34 0 0 0 9 12c0 .998.042 1.963.12 2.88.917.078 1.882.12 2.88.12s1.963-.042 2.88-.12c.078-.917.12-1.882.12-2.88s-.042-1.963-.12-2.88A34 34 0 0 0 12 9c-.998 0-1.963.042-2.88.12m-.236-6.623A10 10 0 0 1 12 2a9.99 9.99 0 0 1 9.504 6.883c.322.982.496 2.03.496 3.117a10 10 0 0 1-.495 3.117 10.02 10.02 0 0 1-6.388 6.387A10 10 0 0 1 12 22a10 10 0 0 1-3.117-.495 10.02 10.02 0 0 1-6.387-6.388A10 10 0 0 1 2 12c0-1.087.174-2.135.496-3.117a10.02 10.02 0 0 1 6.387-6.387"/>
</G>
</Svg>);
});
Icon.displayName = 'Earth3Line';
/**
* MingCute Icon: Earth 3 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Earth3Line = Icon;