iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 741 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPhoneCallIncoming(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.893 4.75H6.068c-.728 0-1.318.59-1.318 1.318 0 7.28 5.902 13.182 13.182 13.182.728 0 1.318-.59 1.318-1.318v-2.825l-3.107-2.071-1.611 1.61c-.28.28-.698.368-1.05.186a11.093 11.093 0 01-2.518-1.796 8.726 8.726 0 01-1.836-2.542c-.16-.34-.067-.733.199-1l1.637-1.637L8.893 4.75zM19.25 4.75l-4.5 4.5M14.75 5.75v3.5h3.5" })));
}
export default SvgPhoneCallIncoming;