UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 453 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgChatPollLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M21 3a1 1 0 011 1v14a1 1 0 01-1 1H6.455L2 22.5V4a1 1 0 011-1h18zm-1 2H4v13.385L5.763 17H20V5zm-7 2v8h-2V7h2zm4 2v6h-2V9h2zm-8 2v4H7v-4h2z" /> </Svg> ); } export default SvgChatPollLine;