@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 684 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M17.6569 15.6569L12 21.3137L6.34315 15.6569C3.21895 12.5327 3.21895 7.46734 6.34315 4.34315C9.46734 1.21895 14.5327 1.21895 17.6569 4.34315C20.781 7.46734 20.781 12.5327 17.6569 15.6569ZM5 22H19V24H5V22Z"/>
</Svg>);
};
Icon.displayName = 'MapPin5Fill';
/**
* Remix Icon: Map Pin 5 Fill
* @see {@link https://remixicon.com/icon/map-pin-5-fill Remix Icon Docs}
*/
export const MapPin5Fill = memo(Icon);