@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 614 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Compass2Fill = /* @__PURE__ */ memo(function Compass2Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M18.328 4.258 10.586 12 12 13.414l7.742-7.742A9.96 9.96 0 0 1 22 12c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2c2.4 0 4.604.847 6.328 2.258"/>
</Svg>);
});
/**
* Remix Icon: Compass 2 Fill
* @see {@link https://remixicon.com/icon/compass-2-fill Remix Icon Docs}
*/
export { Compass2Fill };