react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 527 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgChatOffLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M2.808 1.393l19.799 19.8-1.415 1.414-3.608-3.608L6.455 19 2 22.5V4c0-.17.042-.329.116-.469l-.723-.723 1.415-1.415zm1.191 4.02L4 18.385 5.763 17h9.821L4 5.412zM21 3a1 1 0 011 1v13.785l-2-2V5L9.213 4.999 7.214 3H21z" />
</Svg>
);
}
export default SvgChatOffLine;