react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 456 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgVideoChatLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M14 10.25L17 8v6l-3-2.25V14H7V8h7v2.25zM5.763 17H20V5H4v13.385L5.763 17zm.692 2L2 22.5V4a1 1 0 011-1h18a1 1 0 011 1v14a1 1 0 01-1 1H6.455z" />
</Svg>
);
}
export default SvgVideoChatLine;