@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.62 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="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12m2 0a7.993 7.993 0 0 1 3.595-6.68C6.62 7.095 6 9.445 6 12c0 2.59.673 4.962 1.683 6.736A7.994 7.994 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.68A7.993 7.993 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 12c0 2.328-.587 4.4-1.429 5.86-.511.887-1.061 1.465-1.571 1.791"/>
</G>
</Svg>);
};
Icon.displayName = 'EarthLongitudeLine';
/**
* MingCute Icon: Earth Longitude Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const EarthLongitudeLine = memo(Icon);