@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 594 B
JavaScript
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="m2.9 2.3 18.805 6.268a.5.5 0 0 1 .028.939L13 13l-4.425 8.85a.5.5 0 0 1-.928-.086L2.261 2.912a.5.5 0 0 1 .638-.612"/>
</Svg>);
});
Icon.displayName = 'NavigationFill';
/**
* Remix Icon: Navigation Fill
* @see {@link https://remixicon.com/icon/navigation-fill Remix Icon Docs}
*/
export const NavigationFill = Icon;