@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.55 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const EarthLongitudeLine = /* @__PURE__ */ memo(function EarthLongitudeLine(_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="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12m2 0a8 8 0 0 1 3.595-6.68C6.62 7.095 6 9.445 6 12c0 2.59.673 4.962 1.683 6.736A8 8 0 0 1 4 12m16 0c0 2.79-1.43 5.248-3.595 6.68C17.38 16.905 18 14.555 18 12s-.62-4.906-1.595-6.68A8 8 0 0 1 20 12m-9 7.611c-.48-.332-1.012-.9-1.518-1.76C8.62 16.388 8 14.317 8 12c0-2.328.587-4.4 1.429-5.86C9.94 5.253 10.49 4.675 11 4.348zm2 .04V4.348c.51.327 1.06.905 1.571 1.792C15.413 7.6 16 9.672 16 12s-.587 4.4-1.429 5.86c-.511.887-1.061 1.465-1.571 1.791"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Earth Longitude Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { EarthLongitudeLine };