UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 431 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgChat1Line(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M10 3h4a8 8 0 110 16v3.5c-5-2-12-5-12-11.5a8 8 0 018-8zm2 14h2a6 6 0 100-12h-4a6 6 0 00-6 6c0 3.61 2.462 5.966 8 8.48V17z" /> </Svg> ); } export default SvgChat1Line;