react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 498 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPhoneFindLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M18 2a1 1 0 0 1 1 1v8h-2V4H7v16h4v2H6a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm-3 10a4 4 0 0 1 3.446 6.032l2.21 2.21-1.413 1.415-2.212-2.21A4 4 0 1 1 15 12m0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4" />
</Svg>
);
export default SvgPhoneFindLine;