iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 612 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCameraOff(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: "M7.5 7.75h-.75a2 2 0 00-2 2v7.5a2 2 0 002 2h10.086c.89 0 1.337-1.077.707-1.707L4.75 4.75m5 0h4.583a1 1 0 01.923.615l.738 1.77a1 1 0 00.923.615h.333a2 2 0 012 2v5.5M9.923 10.5a3.25 3.25 0 104.577 4.577" })));
}
export default SvgCameraOff;