@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.72 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const HemisphereLine = /* @__PURE__ */ memo(function HemisphereLine(_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="M4.318 12.31c-.202-.156-.278-.262-.305-.31.027-.048.103-.154.305-.31.338-.26.887-.545 1.644-.807C7.468 10.363 9.605 10 12 10s4.532.363 6.038.883c.757.262 1.306.546 1.644.807.185.143.265.244.298.297-.036.05-.116.145-.294.28-.342.262-.896.55-1.654.818-1.508.531-3.643.915-6.032.915-2.395 0-4.532-.363-6.038-.883-.757-.262-1.306-.546-1.644-.807M12 8c-2.575 0-4.938.387-6.69.992-.871.301-1.64.673-2.214 1.115C2.553 10.527 2 11.16 2 12c0 5.523 4.477 10 10 10s10-4.477 10-10c0-.84-.553-1.473-1.096-1.893-.573-.442-1.343-.814-2.214-1.115C16.938 8.387 14.575 8 12 8m7.558 6.63q-.408.182-.862.341C16.946 15.588 14.582 16 12 16c-2.575 0-4.938-.387-6.69-.992a11 11 0 0 1-.852-.332 8.003 8.003 0 0 0 15.1-.047"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Hemisphere Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { HemisphereLine };