@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.51 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">
<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.17 10.154c2.009 2.155 4.855 3.52 7.752 3.795.29 2.96 1.629 5.96 3.973 7.872q-.922.177-1.895.179C6.477 22 2 17.523 2 12q.001-.947.17-1.846m19.698.216q.131.796.132 1.63c0 3.983-2.329 7.422-5.699 9.03-2.483-1.32-4.026-4.157-4.37-7.06 3.324-.203 7.134-1.471 9.937-3.6m-5.863-7.536a10.04 10.04 0 0 1 5.276 5.437c-2.443 2.135-6.166 3.484-9.393 3.699q.032-.407.098-.806c.534-3.199 1.69-6.406 4.02-8.33M12 2q.924.002 1.802.162c-2.252 2.389-3.3 5.738-3.788 8.674q-.09.54-.127 1.098c-2.757-.324-5.407-1.825-7-4.058A10 10 0 0 1 12 2"/>
</G>
</Svg>);
});
Icon.displayName = 'Globe2Fill';
/**
* MingCute Icon: Globe 2 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Globe2Fill = Icon;