@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.6 kB
JavaScript
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" fillRule="evenodd">
<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.986 4.255c-.25.835-.463 1.79-.626 2.84a36.493 36.493 0 0 1 5.28 0 21.29 21.29 0 0 0-.626-2.84A8.016 8.016 0 0 0 12 4c-.697 0-1.371.089-2.014.255m6.352 1.022c.138.642.257 1.321.354 2.03.71.098 1.39.217 2.031.355a8.048 8.048 0 0 0-2.385-2.385m3.407 4.709c-.835-.25-1.79-.463-2.84-.626a36.504 36.504 0 0 1 0 5.28 21.292 21.292 0 0 0 2.84-.626A8.015 8.015 0 0 0 20 12c0-.697-.089-1.371-.255-2.014m-1.022 6.352a27.07 27.07 0 0 1-2.03.354 27.07 27.07 0 0 1-.355 2.031 8.048 8.048 0 0 0 2.385-2.385m-4.709 3.407c.25-.835.463-1.79.626-2.84a36.502 36.502 0 0 1-5.28 0c.163 1.05.375 2.005.626 2.84A8.015 8.015 0 0 0 12 20c.697 0 1.371-.089 2.014-.255m-6.352-1.022a27.044 27.044 0 0 1-.354-2.03 27.07 27.07 0 0 1-2.031-.355 8.048 8.048 0 0 0 2.385 2.385m-3.407-4.709c.835.25 1.79.463 2.84.626a36.49 36.49 0 0 1 0-5.28 21.302 21.302 0 0 0-2.84.626A8.015 8.015 0 0 0 4 12c0 .697.089 1.371.255 2.014m1.022-6.352a27.045 27.045 0 0 1 2.03-.354c.098-.71.217-1.39.355-2.031a8.048 8.048 0 0 0-2.385 2.385M9.119 9.12A34.21 34.21 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.207 34.207 0 0 0 12 9c-.998 0-1.963.042-2.88.12m-.236-6.623A9.992 9.992 0 0 1 12 2c1.087 0 2.135.174 3.117.496 3.016.988 5.399 3.37 6.387 6.387.322.982.496 2.03.496 3.117a9.994 9.994 0 0 1-.495 3.117 10.023 10.023 0 0 1-6.388 6.387A9.994 9.994 0 0 1 12 22a9.994 9.994 0 0 1-3.117-.495 10.023 10.023 0 0 1-6.387-6.388A9.992 9.992 0 0 1 2 12c0-1.087.174-2.135.496-3.117a10.023 10.023 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 = memo(Icon);