react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFileVideoLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M15 4v4h4v12H5V4zM3.999 2A.995.995 0 0 0 3 2.992v18.016a1 1 0 0 0 .993.992h16.014A1 1 0 0 0 21 20.992V7l-5-5zM15 11.667l-4.88-3.253a.4.4 0 0 0-.621.333v6.505a.4.4 0 0 0 .622.333L15 12.333a.4.4 0 0 0 0-.666" />
</Svg>
);
export default SvgFileVideoLine;