@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
6 lines • 428 B
JavaScript
import Svg, { Path } from "react-native-svg";
const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
<Path fill={color} 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'/>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=poll-fill.js.map