@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.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,0 L24,24 L0,24 L0,0 L24,0 Z M12.5935,23.2578 L12.5819,23.2595 L12.5109,23.295 L12.4919,23.2987 L12.4767,23.295 L12.4057,23.2595 C12.3958,23.2564 12.387,23.259 12.3821,23.2649 L12.378,23.2758 L12.3609,23.7031 L12.3659,23.7235 L12.3769,23.7357 L12.4805,23.8097 L12.4953,23.8136 L12.5071,23.8097 L12.6107,23.7357 L12.6233,23.7197 L12.6267,23.7031 L12.6096,23.2758 C12.6076,23.2657 12.601,23.2593 12.5935,23.2578 Z M12.8584,23.1453 L12.8445,23.1473 L12.6598,23.2397 L12.6499,23.2499 L12.6472,23.2611 L12.6651,23.6906 L12.6699,23.7034 L12.6784,23.7105 L12.8793,23.8032 C12.8914,23.8069 12.9022,23.803 12.9078,23.7952 L12.9118,23.7812 L12.8777,23.1665 C12.8753,23.1546 12.8674,23.147 12.8584,23.1453 Z M12.143,23.1473 C12.1332,23.1424 12.1222,23.1453 12.1156,23.1526 L12.1099,23.1665 L12.0758,23.7812 C12.0751,23.7927 12.0828,23.8019 12.0926,23.8046 L12.1083,23.8032 L12.3092,23.7105 L12.3186,23.7024 L12.3225,23.6906 L12.3404,23.2611 L12.3372,23.2485 L12.3278,23.2397 L12.143,23.1473 Z"/>
<Path fill={color} d="M12,2 C16.634351,2 20.5324008,5.15249766 21.6666279,9.43000901 L21.7383,9.71735 L21.7383,9.71735 C21.9095,10.4505 22,11.2147 22,12 C22,17.5228 17.5228,22 12,22 C6.47715,22 2,17.5228 2,12 C2,6.47715 6.47715,2 12,2 Z M4.00389,11.7482 L4.00097375,11.8738375 L4.00097375,11.8738375 L4,12 C4,16.3349358 7.44783584,19.8645437 11.7508206,19.9961932 L12,20 L12.1765,19.9981 C10.8865,18.2408 10.1292,16.0822 9.9197,13.9486 C7.8122,13.7489 5.74376,12.9742 4.00389,11.7482 Z M19.9898,11.5915 C17.5031,12.9763 14.5748,13.8089 11.9335,13.9708 C12.1826,16.0736 13.0561,18.1382 14.457,19.6156 C17.6732,18.5788 20,15.5611 20,12 C20,11.863 19.9966,11.7268 19.9898,11.5915 Z M14.5326,4.40916 C13.1528,6.29593 12.3882,8.7534 11.9864,11.1644 C11.9425,11.428 11.9099,11.6969 11.8889,11.9697 C14.426,11.8003 17.2943,10.9272 19.6019,9.50085 C18.8144,7.10393 16.9248,5.20692 14.5326,4.40916 Z M12,4 C8.44803,4 5.43673,6.31486 4.3924,9.51825 C5.92779,10.84 7.88666,11.6979 9.88626,11.9339 C9.91107,11.5639 9.95337,11.197 10.0136,10.8356 C10.3902,8.57578 11.0899,6.10851 12.3922,4.00945 C12.2623,4.00317 12.1315,4 12,4 Z"/>
</G>
</Svg>);
};
Icon.displayName = 'Globe2Line';
/**
* MingCute Icon: Globe 2 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Globe2Line = memo(Icon);