@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 662 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const GlobeLine = /* @__PURE__ */ memo(function GlobeLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M13 21h5v2H6v-2h5v-1.05a10 10 0 0 1-7.684-4.988l1.737-.992A8 8 0 1 0 15.97 3.053l.993-1.737A10 10 0 0 1 22 10c0 5.185-3.946 9.449-9 9.95zm-1-4a7 7 0 1 1 0-14 7 7 0 0 1 0 14m0-2a5 5 0 1 0 0-10 5 5 0 0 0 0 10"/>
</Svg>);
});
/**
* Remix Icon: Globe Line
* @see {@link https://remixicon.com/icon/globe-line Remix Icon Docs}
*/
export { GlobeLine };