react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 730 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgRadarLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m12.507 3.623-1.024 1.772c-2.91-.879-5.513-.45-6.41 1.105-1.178 2.04.79 5.652 4.677 7.897 3.888 2.245 8.001 2.142 9.179.103.897-1.555-.033-4.024-2.25-6.105l1.024-1.772c3.082 2.709 4.462 6.27 2.957 8.877-1.86 3.222-7.188 3.355-11.91.63C4.03 13.402 1.48 8.721 3.34 5.5c1.505-2.607 5.28-3.192 9.167-1.877m3.377-1.85 1.732 1-5 8.66-1.732-1zM6.732 20H17v2H5.018a1 1 0 0 1-1.015-.922 1 1 0 0 1 .131-.578l2.25-3.897 1.732 1z" />
</Svg>
);
export default SvgRadarLine;