@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 676 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="M16.95 11.95a7 7 0 0 0 1.858-6.582l2.495-1.07a.5.5 0 0 1 .697.46V19l-7 3-6-3-6.303 2.701a.5.5 0 0 1-.697-.46V7l3.129-1.341a7 7 0 0 0 1.921 6.29L12 16.9zm-1.414-1.414L12 14.07l-3.536-3.535a5 5 0 1 1 7.072 0"/>
</Svg>);
});
Icon.displayName = 'RoadMapFill';
/**
* Remix Icon: Road Map Fill
* @see {@link https://remixicon.com/icon/road-map-fill Remix Icon Docs}
*/
export const RoadMapFill = Icon;