remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 708 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCompasses2Fill = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M16.33 13.497a6.99 6.99 0 0 0 2.67-5.5h2a8.99 8.99 0 0 1-3.661 7.246l2.527 4.378a2 2 0 0 1-.732 2.732l-3.527-6.108a9 9 0 0 1-3.607.752 9 9 0 0 1-3.607-.752l-3.527 6.108a2 2 0 0 1-.732-2.732l5.064-8.77A4.002 4.002 0 0 1 11 4.123V1.997h2v2.126a4.002 4.002 0 0 1 1.803 6.728zM14.6 14.498l-1.528-2.646a4 4 0 0 1-2.142 0l-1.528 2.646c.804.322 1.68.499 2.599.499a7 7 0 0 0 2.599-.499M12 8.997a1 1 0 1 0 0-2 1 1 0 0 0 0 2" />
</Svg>
);
export default SvgCompasses2Fill;