@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.26 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="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m1.482 14.94a18 18 0 0 1-2.964 0q.14.596.31 1.102c.251.755.53 1.293.79 1.622.127.162.23.248.3.29l.051.028.03.008.032-.008.051-.027a1.2 1.2 0 0 0 .3-.29c.26-.33.539-.868.79-1.623q.17-.506.31-1.102m-8.675-1.435a8.03 8.03 0 0 0 4.441 4.01 11 11 0 0 1-.318-.84 16 16 0 0 1-.52-2.033 18 18 0 0 1-3.603-1.137m14.387 0c-1.145.5-2.351.883-3.605 1.137a16 16 0 0 1-.52 2.034q-.144.437-.318.838a8.03 8.03 0 0 0 4.443-4.01Zm-5.218-4.634a15.1 15.1 0 0 1-3.952 0 26 26 0 0 0 .141 4.025 16.2 16.2 0 0 0 3.67 0A25 25 0 0 0 14 12q0-.576-.024-1.13ZM4.568 9.032a8 8 0 0 0-.52 3.856 15.9 15.9 0 0 0 4.067 1.637 28 28 0 0 1-.074-4.053 15 15 0 0 1-3.473-1.44m14.864 0a15 15 0 0 1-3.473 1.44 28 28 0 0 1-.074 4.053 15.9 15.9 0 0 0 4.066-1.637 8 8 0 0 0-.52-3.855Zm-7.416-5.02-.011-.002-.02.003-.038.015a1.2 1.2 0 0 0-.33.307c-.26.33-.538.868-.79 1.622-.27.808-.488 1.8-.633 2.919a13.1 13.1 0 0 0 3.612 0c-.145-1.12-.364-2.111-.633-2.919-.252-.754-.53-1.293-.79-1.622a1.2 1.2 0 0 0-.3-.29l-.067-.032Zm-2.768.474a8 8 0 0 0-3.71 2.797c.843.484 1.746.876 2.695 1.163.16-1.164.397-2.223.697-3.122q.145-.438.318-.838m5.504 0q.172.4.318.838c.3.9.537 1.958.697 3.122a13 13 0 0 0 2.695-1.163 8 8 0 0 0-3.71-2.797"/>
</G>
</Svg>);
});
Icon.displayName = 'Earth2Line';
/**
* MingCute Icon: Earth 2 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Earth2Line = Icon;