UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 616 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_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>); }); Icon.displayName = 'Compass2Fill'; /** * Remix Icon: Compass 2 Fill * @see {@link https://remixicon.com/icon/compass-2-fill Remix Icon Docs} */ export const Compass2Fill = Icon;