react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 600 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAnchorFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 9.874v10.054c3.619-.454 6.487-3.336 6.938-6.972H17L20.704 7A10.04 10.04 0 0 1 22 11.95C22 17.5 17.523 22 12 22S2 17.5 2 11.95c0-1.8.471-3.489 1.296-4.95L7 12.956H4.062c.451 3.636 3.32 6.518 6.938 6.972V9.874A4.002 4.002 0 0 1 12 2a4 4 0 0 1 1 7.874M12 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4" />
</Svg>
);
export default SvgAnchorFill;