UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 803 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgVideoCameraOff(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { fill: "currentColor", fillRule: "evenodd", d: "M4.463 6.057a.75.75 0 01.817.163l10.5 10.5 2 2a.75.75 0 11-1.06 1.06L14.94 18H6.75A2.75 2.75 0 014 15.25v-8.5a.75.75 0 01.463-.693zM13.439 16.5L5.5 8.56v6.69c0 .69.56 1.25 1.25 1.25h6.69zm-.189-9h-3.5a.75.75 0 010-1.5h3.5A2.75 2.75 0 0116 8.718l2.882-1.622A.75.75 0 0120 7.75v8.5a.75.75 0 01-1.118.654l-4-2.25A.75.75 0 0114.5 14v-3.985V8.75c0-.69-.56-1.25-1.25-1.25zM16 10.439v3.122l2.5 1.407V9.032L16 10.44z", clipRule: "evenodd" }))); } export default SvgVideoCameraOff;