@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 625 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="M11 19.9451C6.50005 19.4476 3 15.6326 3 11C3 6.02944 7.02944 2 12 2C16.9706 2 21 6.02944 21 11C21 15.6326 17.5 19.4476 13 19.9451V24H11V19.9451Z"/>
</Svg>);
};
Icon.displayName = 'MapPin3Fill';
/**
* Remix Icon: Map Pin 3 Fill
* @see {@link https://remixicon.com/icon/map-pin-3-fill Remix Icon Docs}
*/
export const MapPin3Fill = memo(Icon);