@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
8 lines • 463 B
JavaScript
import Svg, { G, Path } from "react-native-svg";
const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
<G fill={color ?? "#6852D6"}>
<Path d='M2 5a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1M2 12a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1M2 19a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1'/>
</G>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=poll-Icon.js.map