@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 541 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 5 7-3 6 3 6.303-2.701a.5.5 0 0 1 .697.46V19l-7 3-6-3-6.303 2.701a.5.5 0 0 1-.697-.46z"/>
</Svg>);
});
Icon.displayName = 'MapFill';
/**
* Remix Icon: Map Fill
* @see {@link https://remixicon.com/icon/map-fill Remix Icon Docs}
*/
export const MapFill = Icon;