react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 529 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgVideoOffFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m17 18.414 4.192 4.193 1.415-1.415-19.8-19.799-1.414 1.415L2.586 4H2a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zM16 4H8.214l14.494 14.494A.5.5 0 0 0 23 18.04V5.96a.5.5 0 0 0-.787-.41L17 9.2V5a1 1 0 0 0-1-1" />
</Svg>
);
export default SvgVideoOffFill;